From 593f26de57a4d36ab1b6076a5c79c6807ee47d93 Mon Sep 17 00:00:00 2001 From: Cellan Hall Date: Sun, 25 Aug 2024 17:56:17 +0100 Subject: [PATCH] Add `define_database` --- examples/define_database.surql | 11 + grammar.js | 10 + src/grammar.json | 54 + src/node-types.json | 39 + src/parser.c | 96389 +++++++++++++++--------------- test/corpus/define_database.txt | 80 + 6 files changed, 48452 insertions(+), 48131 deletions(-) create mode 100644 examples/define_database.surql create mode 100644 test/corpus/define_database.txt diff --git a/examples/define_database.surql b/examples/define_database.surql new file mode 100644 index 0000000..a04d494 --- /dev/null +++ b/examples/define_database.surql @@ -0,0 +1,11 @@ +-- Define database +DEFINE DATABASE app_vitalsense; + +-- Create a DATABASE if it does not already exist +DEFINE DATABASE IF NOT EXISTS app_vitalsense; + +-- Create a DATABASE and overwrite if it already exists +DEFINE DATABASE OVERWRITE app_vitalsense; + +-- Create a DATABASE and overwrite if it already exists with a comment +DEFINE DATABASE OVERWRITE app_vitalsense COMMENT "This is a comment"; diff --git a/grammar.js b/grammar.js index ab4e8c7..41abb0f 100644 --- a/grammar.js +++ b/grammar.js @@ -200,6 +200,7 @@ module.exports = grammar({ $.cancel_statement, $.commit_statement, $.define_analyzer_statement, + $.define_database, $.define_event_statement, $.define_field_statement, $.define_function_statement, @@ -242,6 +243,15 @@ module.exports = grammar({ ), ), + define_database: $ => + seq( + $.keyword_define, + $.keyword_database, + optional(choice($.if_not_exists_clause, $.keyword_overwrite)), + $.identifier, + optional($.comment_clause), + ), + define_event_statement: $ => seq( $.keyword_define, diff --git a/src/grammar.json b/src/grammar.json index cf5c3a6..174dc01 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1324,6 +1324,10 @@ "type": "SYMBOL", "name": "define_analyzer_statement" }, + { + "type": "SYMBOL", + "name": "define_database" + }, { "type": "SYMBOL", "name": "define_event_statement" @@ -1515,6 +1519,56 @@ } ] }, + "define_database": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "keyword_define" + }, + { + "type": "SYMBOL", + "name": "keyword_database" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "if_not_exists_clause" + }, + { + "type": "SYMBOL", + "name": "keyword_overwrite" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "comment_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, "define_event_statement": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index c77a7ed..fcdf973 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -479,6 +479,41 @@ ] } }, + { + "type": "define_database", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "comment_clause", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if_not_exists_clause", + "named": true + }, + { + "type": "keyword_database", + "named": true + }, + { + "type": "keyword_define", + "named": true + }, + { + "type": "keyword_overwrite", + "named": true + } + ] + } + }, { "type": "define_event_statement", "named": true, @@ -2780,6 +2815,10 @@ "type": "define_analyzer_statement", "named": true }, + { + "type": "define_database", + "named": true + }, { "type": "define_event_statement", "named": true diff --git a/src/parser.c b/src/parser.c index 90cf3d9..daedafc 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1879 +#define STATE_COUNT 1885 #define LARGE_STATE_COUNT 517 -#define SYMBOL_COUNT 386 +#define SYMBOL_COUNT 387 #define ALIAS_COUNT 0 #define TOKEN_COUNT 238 #define EXTERNAL_TOKEN_COUNT 0 @@ -269,146 +269,147 @@ enum ts_symbol_identifiers { sym_cancel_statement = 243, sym_commit_statement = 244, sym_define_analyzer_statement = 245, - sym_define_event_statement = 246, - sym_define_field_statement = 247, - sym_define_function_statement = 248, - sym_define_function = 249, - sym_define_index_statement = 250, - sym_define_namespace_statement = 251, - sym_define_param_statement = 252, - sym_define_param = 253, - sym_define_scope_statement = 254, - sym_define_table_statement = 255, - sym_define_token_statement = 256, - sym_define_user_statement = 257, - sym_remove_statement = 258, - sym_create_statement = 259, - sym_update_statement = 260, - sym_relate_statement = 261, - sym_delete_statement = 262, - sym_insert_statement = 263, - sym_select_statement = 264, - sym_live_select_statement = 265, - sym_select_clause = 266, - sym_from_clause = 267, - sym_omit_clause = 268, - sym_with_clause = 269, - sym_where_clause = 270, - sym_split_clause = 271, - sym_group_clause = 272, - sym_order_clause = 273, - sym_order_criteria = 274, - sym_limit_clause = 275, - sym_fetch_clause = 276, - sym_timeout_clause = 277, - sym_parallel_clause = 278, - sym_explain_clause = 279, - sym_filter = 280, - sym_tokenizers_clause = 281, - sym_filters_clause = 282, - sym_function_clause = 283, - sym_on_table_clause = 284, - sym_when_then_clause = 285, - sym_type_clause = 286, - sym_default_clause = 287, - sym_readonly_clause = 288, - sym_value_clause = 289, - sym_assert_clause = 290, - sym_permissions_for_clause = 291, - sym_permissions_basic_clause = 292, - sym_comment_clause = 293, - sym_param_list = 294, - sym_block = 295, - sym_fields_columns_clause = 296, - sym_unique_clause = 297, - sym_search_analyzer_clause = 298, - sym_bm25_clause = 299, - sym_doc_ids_cache_clause = 300, - sym_doc_ids_order_clause = 301, - sym_doc_lengths_cache_clause = 302, - sym_doc_lengths_order_clause = 303, - sym_postings_cache_clause = 304, - sym_postings_order_clause = 305, - sym_terms_cache_clause = 306, - sym_terms_order_clause = 307, - sym_session_clause = 308, - sym_signin_clause = 309, - sym_signup_clause = 310, - sym_table_type_clause = 311, - sym_table_view_clause = 312, - sym_changefeed_clause = 313, - sym_token_type_clause = 314, - sym_if_not_exists_clause = 315, - sym_if_exists_clause = 316, - sym_create_target = 317, - sym_content_clause = 318, - sym_set_clause = 319, - sym_unset_clause = 320, - sym_return_clause = 321, - sym_relate_subject = 322, - sym_merge_clause = 323, - sym_patch_clause = 324, - sym_field_assignment = 325, - sym_value = 326, - sym_function_call = 327, - sym_base_value = 328, - sym_binary_expression = 329, - sym_path = 330, - sym_path_element = 331, - sym_graph_path = 332, - sym_predicate = 333, - sym_inclusive_predicate = 334, - sym_graph_predicate = 335, - sym_subscript = 336, - sym_version = 337, - sym_argument_list = 338, - sym_argument_list_count = 339, - sym_type = 340, - sym_type_name = 341, - sym_parameterized_type = 342, - sym_analyzer_tokenizers = 343, - sym_analyzer_filters = 344, - sym_number = 345, - sym_identifier = 346, - sym_array = 347, - sym_object = 348, - sym_object_content = 349, - sym_object_property = 350, - sym_object_key = 351, - sym_record_id = 352, - sym_record_id_value = 353, - sym_record_id_range = 354, - sym_sub_query = 355, - sym_duration = 356, - sym_point = 357, - sym_operator = 358, - sym_binary_operator = 359, - sym_assignment_operator = 360, - aux_sym_expressions_repeat1 = 361, - aux_sym_define_analyzer_statement_repeat1 = 362, - aux_sym_define_field_statement_repeat1 = 363, - aux_sym_define_function_statement_repeat1 = 364, - aux_sym_define_index_statement_repeat1 = 365, - aux_sym_define_scope_statement_repeat1 = 366, - aux_sym_define_table_statement_repeat1 = 367, - aux_sym_define_user_statement_repeat1 = 368, - aux_sym_update_statement_repeat1 = 369, - aux_sym_insert_statement_repeat1 = 370, - aux_sym_insert_statement_repeat2 = 371, - aux_sym_insert_statement_repeat3 = 372, - aux_sym_select_clause_repeat1 = 373, - aux_sym_order_clause_repeat1 = 374, - aux_sym_tokenizers_clause_repeat1 = 375, - aux_sym_filters_clause_repeat1 = 376, - aux_sym_when_then_clause_repeat1 = 377, - aux_sym_permissions_for_clause_repeat1 = 378, - aux_sym_permissions_for_clause_repeat2 = 379, - aux_sym_param_list_repeat1 = 380, - aux_sym_search_analyzer_clause_repeat1 = 381, - aux_sym_path_repeat1 = 382, - aux_sym_graph_path_repeat1 = 383, - aux_sym_object_content_repeat1 = 384, - aux_sym_duration_repeat1 = 385, + sym_define_database = 246, + sym_define_event_statement = 247, + sym_define_field_statement = 248, + sym_define_function_statement = 249, + sym_define_function = 250, + sym_define_index_statement = 251, + sym_define_namespace_statement = 252, + sym_define_param_statement = 253, + sym_define_param = 254, + sym_define_scope_statement = 255, + sym_define_table_statement = 256, + sym_define_token_statement = 257, + sym_define_user_statement = 258, + sym_remove_statement = 259, + sym_create_statement = 260, + sym_update_statement = 261, + sym_relate_statement = 262, + sym_delete_statement = 263, + sym_insert_statement = 264, + sym_select_statement = 265, + sym_live_select_statement = 266, + sym_select_clause = 267, + sym_from_clause = 268, + sym_omit_clause = 269, + sym_with_clause = 270, + sym_where_clause = 271, + sym_split_clause = 272, + sym_group_clause = 273, + sym_order_clause = 274, + sym_order_criteria = 275, + sym_limit_clause = 276, + sym_fetch_clause = 277, + sym_timeout_clause = 278, + sym_parallel_clause = 279, + sym_explain_clause = 280, + sym_filter = 281, + sym_tokenizers_clause = 282, + sym_filters_clause = 283, + sym_function_clause = 284, + sym_on_table_clause = 285, + sym_when_then_clause = 286, + sym_type_clause = 287, + sym_default_clause = 288, + sym_readonly_clause = 289, + sym_value_clause = 290, + sym_assert_clause = 291, + sym_permissions_for_clause = 292, + sym_permissions_basic_clause = 293, + sym_comment_clause = 294, + sym_param_list = 295, + sym_block = 296, + sym_fields_columns_clause = 297, + sym_unique_clause = 298, + sym_search_analyzer_clause = 299, + sym_bm25_clause = 300, + sym_doc_ids_cache_clause = 301, + sym_doc_ids_order_clause = 302, + sym_doc_lengths_cache_clause = 303, + sym_doc_lengths_order_clause = 304, + sym_postings_cache_clause = 305, + sym_postings_order_clause = 306, + sym_terms_cache_clause = 307, + sym_terms_order_clause = 308, + sym_session_clause = 309, + sym_signin_clause = 310, + sym_signup_clause = 311, + sym_table_type_clause = 312, + sym_table_view_clause = 313, + sym_changefeed_clause = 314, + sym_token_type_clause = 315, + sym_if_not_exists_clause = 316, + sym_if_exists_clause = 317, + sym_create_target = 318, + sym_content_clause = 319, + sym_set_clause = 320, + sym_unset_clause = 321, + sym_return_clause = 322, + sym_relate_subject = 323, + sym_merge_clause = 324, + sym_patch_clause = 325, + sym_field_assignment = 326, + sym_value = 327, + sym_function_call = 328, + sym_base_value = 329, + sym_binary_expression = 330, + sym_path = 331, + sym_path_element = 332, + sym_graph_path = 333, + sym_predicate = 334, + sym_inclusive_predicate = 335, + sym_graph_predicate = 336, + sym_subscript = 337, + sym_version = 338, + sym_argument_list = 339, + sym_argument_list_count = 340, + sym_type = 341, + sym_type_name = 342, + sym_parameterized_type = 343, + sym_analyzer_tokenizers = 344, + sym_analyzer_filters = 345, + sym_number = 346, + sym_identifier = 347, + sym_array = 348, + sym_object = 349, + sym_object_content = 350, + sym_object_property = 351, + sym_object_key = 352, + sym_record_id = 353, + sym_record_id_value = 354, + sym_record_id_range = 355, + sym_sub_query = 356, + sym_duration = 357, + sym_point = 358, + sym_operator = 359, + sym_binary_operator = 360, + sym_assignment_operator = 361, + aux_sym_expressions_repeat1 = 362, + aux_sym_define_analyzer_statement_repeat1 = 363, + aux_sym_define_field_statement_repeat1 = 364, + aux_sym_define_function_statement_repeat1 = 365, + aux_sym_define_index_statement_repeat1 = 366, + aux_sym_define_scope_statement_repeat1 = 367, + aux_sym_define_table_statement_repeat1 = 368, + aux_sym_define_user_statement_repeat1 = 369, + aux_sym_update_statement_repeat1 = 370, + aux_sym_insert_statement_repeat1 = 371, + aux_sym_insert_statement_repeat2 = 372, + aux_sym_insert_statement_repeat3 = 373, + aux_sym_select_clause_repeat1 = 374, + aux_sym_order_clause_repeat1 = 375, + aux_sym_tokenizers_clause_repeat1 = 376, + aux_sym_filters_clause_repeat1 = 377, + aux_sym_when_then_clause_repeat1 = 378, + aux_sym_permissions_for_clause_repeat1 = 379, + aux_sym_permissions_for_clause_repeat2 = 380, + aux_sym_param_list_repeat1 = 381, + aux_sym_search_analyzer_clause_repeat1 = 382, + aux_sym_path_repeat1 = 383, + aux_sym_graph_path_repeat1 = 384, + aux_sym_object_content_repeat1 = 385, + aux_sym_duration_repeat1 = 386, }; static const char * const ts_symbol_names[] = { @@ -658,6 +659,7 @@ static const char * const ts_symbol_names[] = { [sym_cancel_statement] = "cancel_statement", [sym_commit_statement] = "commit_statement", [sym_define_analyzer_statement] = "define_analyzer_statement", + [sym_define_database] = "define_database", [sym_define_event_statement] = "define_event_statement", [sym_define_field_statement] = "define_field_statement", [sym_define_function_statement] = "define_function_statement", @@ -1047,6 +1049,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_cancel_statement] = sym_cancel_statement, [sym_commit_statement] = sym_commit_statement, [sym_define_analyzer_statement] = sym_define_analyzer_statement, + [sym_define_database] = sym_define_database, [sym_define_event_statement] = sym_define_event_statement, [sym_define_field_statement] = sym_define_field_statement, [sym_define_function_statement] = sym_define_function_statement, @@ -2174,6 +2177,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_define_database] = { + .visible = true, + .named = true, + }, [sym_define_event_statement] = { .visible = true, .named = true, @@ -2763,600 +2770,600 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [15] = 15, [16] = 16, [17] = 17, - [18] = 18, + [18] = 16, [19] = 19, [20] = 20, - [21] = 21, + [21] = 2, [22] = 22, [23] = 23, [24] = 24, - [25] = 12, + [25] = 25, [26] = 26, - [27] = 2, + [27] = 27, [28] = 28, - [29] = 29, + [29] = 13, [30] = 30, [31] = 31, - [32] = 15, + [32] = 32, [33] = 33, [34] = 34, - [35] = 9, - [36] = 36, + [35] = 35, + [36] = 12, [37] = 37, [38] = 38, [39] = 39, - [40] = 14, - [41] = 18, - [42] = 10, - [43] = 11, - [44] = 13, - [45] = 16, - [46] = 33, - [47] = 20, - [48] = 22, - [49] = 37, - [50] = 39, + [40] = 11, + [41] = 9, + [42] = 22, + [43] = 10, + [44] = 14, + [45] = 15, + [46] = 17, + [47] = 24, + [48] = 38, + [49] = 25, + [50] = 35, [51] = 8, [52] = 7, - [53] = 31, - [54] = 24, - [55] = 36, - [56] = 23, - [57] = 17, - [58] = 38, - [59] = 26, - [60] = 28, - [61] = 30, - [62] = 29, - [63] = 21, - [64] = 19, - [65] = 34, - [66] = 3, + [53] = 27, + [54] = 26, + [55] = 30, + [56] = 34, + [57] = 19, + [58] = 23, + [59] = 39, + [60] = 37, + [61] = 31, + [62] = 20, + [63] = 33, + [64] = 28, + [65] = 32, + [66] = 66, [67] = 67, [68] = 68, - [69] = 19, + [69] = 3, [70] = 6, - [71] = 4, - [72] = 5, + [71] = 32, + [72] = 72, [73] = 73, - [74] = 29, + [74] = 5, [75] = 75, - [76] = 76, - [77] = 21, - [78] = 78, - [79] = 73, - [80] = 75, - [81] = 4, - [82] = 6, + [76] = 26, + [77] = 4, + [78] = 20, + [79] = 6, + [80] = 66, + [81] = 72, + [82] = 32, [83] = 67, - [84] = 19, - [85] = 29, - [86] = 76, - [87] = 21, - [88] = 68, - [89] = 5, + [84] = 20, + [85] = 4, + [86] = 26, + [87] = 75, + [88] = 5, + [89] = 68, [90] = 3, - [91] = 8, - [92] = 7, - [93] = 78, + [91] = 7, + [92] = 8, + [93] = 7, [94] = 16, - [95] = 11, - [96] = 15, - [97] = 7, - [98] = 10, - [99] = 14, + [95] = 14, + [96] = 10, + [97] = 8, + [98] = 11, + [99] = 73, [100] = 13, - [101] = 8, - [102] = 12, - [103] = 17, - [104] = 21, - [105] = 31, - [106] = 34, - [107] = 39, - [108] = 2, - [109] = 22, - [110] = 19, - [111] = 28, - [112] = 30, - [113] = 37, - [114] = 20, - [115] = 18, - [116] = 26, - [117] = 23, - [118] = 9, + [101] = 9, + [102] = 15, + [103] = 26, + [104] = 38, + [105] = 27, + [106] = 39, + [107] = 30, + [108] = 33, + [109] = 32, + [110] = 12, + [111] = 2, + [112] = 25, + [113] = 23, + [114] = 19, + [115] = 37, + [116] = 17, + [117] = 28, + [118] = 34, [119] = 24, - [120] = 29, - [121] = 33, - [122] = 36, - [123] = 38, - [124] = 2, - [125] = 2, - [126] = 126, + [120] = 31, + [121] = 35, + [122] = 2, + [123] = 22, + [124] = 20, + [125] = 125, + [126] = 2, [127] = 127, [128] = 127, - [129] = 126, + [129] = 125, [130] = 130, [131] = 131, - [132] = 132, - [133] = 132, - [134] = 134, - [135] = 131, - [136] = 130, + [132] = 131, + [133] = 133, + [134] = 133, + [135] = 133, + [136] = 131, [137] = 137, - [138] = 130, - [139] = 131, - [140] = 132, - [141] = 131, - [142] = 6, - [143] = 130, - [144] = 131, - [145] = 132, - [146] = 132, - [147] = 130, - [148] = 132, - [149] = 5, - [150] = 131, - [151] = 130, - [152] = 131, - [153] = 132, - [154] = 130, - [155] = 131, - [156] = 132, - [157] = 130, - [158] = 5, - [159] = 4, - [160] = 3, - [161] = 134, - [162] = 4, - [163] = 137, - [164] = 5, - [165] = 6, - [166] = 3, + [138] = 138, + [139] = 130, + [140] = 130, + [141] = 130, + [142] = 133, + [143] = 4, + [144] = 6, + [145] = 3, + [146] = 5, + [147] = 137, + [148] = 5, + [149] = 130, + [150] = 6, + [151] = 3, + [152] = 133, + [153] = 130, + [154] = 3, + [155] = 133, + [156] = 131, + [157] = 131, + [158] = 130, + [159] = 6, + [160] = 131, + [161] = 130, + [162] = 131, + [163] = 4, + [164] = 131, + [165] = 5, + [166] = 133, [167] = 4, - [168] = 6, - [169] = 3, - [170] = 130, - [171] = 67, - [172] = 132, - [173] = 130, - [174] = 131, - [175] = 131, - [176] = 132, - [177] = 78, - [178] = 130, - [179] = 131, - [180] = 132, - [181] = 132, - [182] = 73, - [183] = 130, - [184] = 131, - [185] = 132, - [186] = 76, - [187] = 68, - [188] = 19, - [189] = 21, - [190] = 29, + [168] = 133, + [169] = 138, + [170] = 32, + [171] = 3, + [172] = 75, + [173] = 26, + [174] = 67, + [175] = 133, + [176] = 133, + [177] = 130, + [178] = 6, + [179] = 179, + [180] = 72, + [181] = 4, + [182] = 131, + [183] = 133, + [184] = 20, + [185] = 130, + [186] = 66, + [187] = 133, + [188] = 131, + [189] = 5, + [190] = 73, [191] = 130, - [192] = 75, - [193] = 131, - [194] = 4, - [195] = 5, - [196] = 6, - [197] = 3, - [198] = 132, + [192] = 133, + [193] = 130, + [194] = 131, + [195] = 130, + [196] = 131, + [197] = 68, + [198] = 131, [199] = 130, - [200] = 200, - [201] = 132, - [202] = 131, - [203] = 130, - [204] = 130, - [205] = 132, - [206] = 131, - [207] = 131, - [208] = 130, - [209] = 132, - [210] = 131, + [200] = 130, + [201] = 131, + [202] = 130, + [203] = 133, + [204] = 204, + [205] = 131, + [206] = 206, + [207] = 133, + [208] = 206, + [209] = 131, + [210] = 130, [211] = 131, - [212] = 130, - [213] = 132, - [214] = 214, - [215] = 8, - [216] = 216, - [217] = 130, - [218] = 214, - [219] = 7, - [220] = 132, + [212] = 133, + [213] = 204, + [214] = 131, + [215] = 130, + [216] = 133, + [217] = 133, + [218] = 218, + [219] = 219, + [220] = 220, [221] = 131, - [222] = 216, - [223] = 130, - [224] = 132, - [225] = 131, - [226] = 15, - [227] = 227, - [228] = 12, - [229] = 229, - [230] = 13, - [231] = 15, - [232] = 16, - [233] = 229, - [234] = 234, - [235] = 14, - [236] = 10, - [237] = 10, - [238] = 229, - [239] = 229, - [240] = 240, - [241] = 234, - [242] = 242, - [243] = 14, - [244] = 16, - [245] = 11, - [246] = 246, - [247] = 240, - [248] = 248, - [249] = 13, - [250] = 248, - [251] = 229, - [252] = 12, - [253] = 229, - [254] = 11, - [255] = 246, - [256] = 227, - [257] = 7, - [258] = 242, - [259] = 234, - [260] = 8, - [261] = 261, - [262] = 242, - [263] = 242, - [264] = 242, - [265] = 242, - [266] = 29, - [267] = 30, - [268] = 9, - [269] = 38, - [270] = 18, - [271] = 234, - [272] = 30, - [273] = 273, - [274] = 274, - [275] = 33, - [276] = 17, - [277] = 24, - [278] = 23, - [279] = 22, - [280] = 31, - [281] = 34, - [282] = 39, - [283] = 28, - [284] = 37, - [285] = 20, - [286] = 19, - [287] = 21, - [288] = 29, - [289] = 289, - [290] = 234, - [291] = 273, - [292] = 132, - [293] = 2, - [294] = 14, - [295] = 289, + [222] = 8, + [223] = 223, + [224] = 224, + [225] = 223, + [226] = 224, + [227] = 223, + [228] = 223, + [229] = 224, + [230] = 224, + [231] = 133, + [232] = 133, + [233] = 7, + [234] = 220, + [235] = 130, + [236] = 131, + [237] = 223, + [238] = 238, + [239] = 219, + [240] = 224, + [241] = 241, + [242] = 224, + [243] = 223, + [244] = 241, + [245] = 218, + [246] = 130, + [247] = 13, + [248] = 10, + [249] = 249, + [250] = 250, + [251] = 9, + [252] = 250, + [253] = 249, + [254] = 254, + [255] = 15, + [256] = 16, + [257] = 15, + [258] = 8, + [259] = 13, + [260] = 11, + [261] = 7, + [262] = 262, + [263] = 14, + [264] = 14, + [265] = 11, + [266] = 9, + [267] = 16, + [268] = 254, + [269] = 254, + [270] = 262, + [271] = 10, + [272] = 15, + [273] = 28, + [274] = 38, + [275] = 254, + [276] = 25, + [277] = 2, + [278] = 278, + [279] = 33, + [280] = 17, + [281] = 26, + [282] = 37, + [283] = 9, + [284] = 32, + [285] = 39, + [286] = 20, + [287] = 254, + [288] = 288, + [289] = 35, + [290] = 28, + [291] = 14, + [292] = 30, + [293] = 34, + [294] = 24, + [295] = 254, [296] = 19, - [297] = 131, - [298] = 21, - [299] = 234, - [300] = 16, - [301] = 18, - [302] = 234, - [303] = 130, - [304] = 26, - [305] = 15, - [306] = 36, - [307] = 13, - [308] = 274, - [309] = 36, - [310] = 9, - [311] = 26, - [312] = 12, - [313] = 11, - [314] = 38, - [315] = 234, - [316] = 33, - [317] = 17, + [297] = 22, + [298] = 31, + [299] = 27, + [300] = 11, + [301] = 10, + [302] = 12, + [303] = 23, + [304] = 12, + [305] = 254, + [306] = 13, + [307] = 131, + [308] = 26, + [309] = 130, + [310] = 27, + [311] = 32, + [312] = 24, + [313] = 133, + [314] = 34, + [315] = 19, + [316] = 30, + [317] = 31, [318] = 20, - [319] = 37, - [320] = 28, - [321] = 39, - [322] = 24, - [323] = 10, - [324] = 23, - [325] = 325, - [326] = 326, - [327] = 34, - [328] = 31, - [329] = 22, - [330] = 23, - [331] = 234, - [332] = 18, - [333] = 29, - [334] = 20, - [335] = 26, - [336] = 234, - [337] = 36, - [338] = 21, - [339] = 130, - [340] = 19, - [341] = 9, - [342] = 22, - [343] = 234, - [344] = 38, - [345] = 325, - [346] = 37, - [347] = 28, - [348] = 33, - [349] = 17, - [350] = 234, - [351] = 24, - [352] = 30, - [353] = 326, - [354] = 39, - [355] = 234, - [356] = 132, - [357] = 131, - [358] = 132, - [359] = 34, - [360] = 130, - [361] = 31, - [362] = 131, - [363] = 132, - [364] = 131, - [365] = 132, - [366] = 130, - [367] = 234, - [368] = 130, - [369] = 234, + [319] = 35, + [320] = 22, + [321] = 23, + [322] = 25, + [323] = 38, + [324] = 33, + [325] = 17, + [326] = 37, + [327] = 16, + [328] = 39, + [329] = 254, + [330] = 33, + [331] = 254, + [332] = 254, + [333] = 39, + [334] = 37, + [335] = 17, + [336] = 130, + [337] = 28, + [338] = 278, + [339] = 23, + [340] = 254, + [341] = 131, + [342] = 38, + [343] = 12, + [344] = 25, + [345] = 133, + [346] = 24, + [347] = 130, + [348] = 19, + [349] = 22, + [350] = 27, + [351] = 254, + [352] = 133, + [353] = 20, + [354] = 31, + [355] = 32, + [356] = 34, + [357] = 288, + [358] = 131, + [359] = 26, + [360] = 35, + [361] = 254, + [362] = 30, + [363] = 130, + [364] = 254, + [365] = 131, + [366] = 133, + [367] = 133, + [368] = 131, + [369] = 254, [370] = 131, - [371] = 132, - [372] = 234, - [373] = 131, - [374] = 234, - [375] = 130, - [376] = 234, + [371] = 130, + [372] = 254, + [373] = 130, + [374] = 254, + [375] = 254, + [376] = 133, [377] = 377, - [378] = 132, - [379] = 132, - [380] = 130, - [381] = 234, + [378] = 378, + [379] = 130, + [380] = 254, + [381] = 381, [382] = 382, - [383] = 131, + [383] = 377, [384] = 131, - [385] = 382, - [386] = 130, - [387] = 387, - [388] = 234, - [389] = 382, - [390] = 387, - [391] = 391, - [392] = 392, - [393] = 391, - [394] = 387, - [395] = 131, - [396] = 132, - [397] = 131, - [398] = 130, - [399] = 377, - [400] = 132, - [401] = 130, - [402] = 382, - [403] = 403, - [404] = 130, - [405] = 387, - [406] = 132, - [407] = 387, - [408] = 132, + [385] = 133, + [386] = 377, + [387] = 133, + [388] = 382, + [389] = 131, + [390] = 254, + [391] = 130, + [392] = 382, + [393] = 382, + [394] = 131, + [395] = 130, + [396] = 133, + [397] = 377, + [398] = 377, + [399] = 130, + [400] = 377, + [401] = 381, + [402] = 130, + [403] = 133, + [404] = 133, + [405] = 405, + [406] = 133, + [407] = 131, + [408] = 131, [409] = 382, - [410] = 131, - [411] = 387, + [410] = 130, + [411] = 378, [412] = 382, - [413] = 382, - [414] = 131, - [415] = 382, - [416] = 130, - [417] = 21, - [418] = 67, - [419] = 419, - [420] = 392, - [421] = 130, - [422] = 234, - [423] = 131, - [424] = 78, - [425] = 132, - [426] = 382, - [427] = 19, - [428] = 21, - [429] = 29, - [430] = 130, - [431] = 382, - [432] = 387, - [433] = 382, - [434] = 78, - [435] = 131, - [436] = 67, - [437] = 131, - [438] = 382, - [439] = 132, - [440] = 419, - [441] = 68, - [442] = 382, - [443] = 73, - [444] = 29, - [445] = 73, - [446] = 68, - [447] = 419, - [448] = 76, - [449] = 132, - [450] = 76, - [451] = 130, - [452] = 19, - [453] = 403, - [454] = 387, - [455] = 75, - [456] = 75, + [413] = 131, + [414] = 414, + [415] = 377, + [416] = 377, + [417] = 417, + [418] = 26, + [419] = 66, + [420] = 382, + [421] = 405, + [422] = 382, + [423] = 73, + [424] = 133, + [425] = 130, + [426] = 130, + [427] = 377, + [428] = 133, + [429] = 377, + [430] = 20, + [431] = 133, + [432] = 414, + [433] = 72, + [434] = 417, + [435] = 377, + [436] = 130, + [437] = 66, + [438] = 131, + [439] = 131, + [440] = 68, + [441] = 32, + [442] = 73, + [443] = 417, + [444] = 20, + [445] = 67, + [446] = 26, + [447] = 72, + [448] = 75, + [449] = 68, + [450] = 32, + [451] = 67, + [452] = 75, + [453] = 377, + [454] = 377, + [455] = 131, + [456] = 254, [457] = 131, - [458] = 19, - [459] = 459, - [460] = 131, - [461] = 461, + [458] = 66, + [459] = 130, + [460] = 417, + [461] = 68, [462] = 462, - [463] = 382, - [464] = 419, - [465] = 382, - [466] = 419, - [467] = 132, - [468] = 130, - [469] = 234, - [470] = 21, - [471] = 76, - [472] = 382, - [473] = 130, - [474] = 382, - [475] = 382, - [476] = 75, - [477] = 234, - [478] = 419, - [479] = 78, - [480] = 419, - [481] = 132, - [482] = 67, - [483] = 29, - [484] = 73, - [485] = 68, - [486] = 382, + [463] = 417, + [464] = 32, + [465] = 131, + [466] = 466, + [467] = 133, + [468] = 377, + [469] = 130, + [470] = 377, + [471] = 26, + [472] = 377, + [473] = 133, + [474] = 417, + [475] = 73, + [476] = 254, + [477] = 377, + [478] = 72, + [479] = 20, + [480] = 75, + [481] = 481, + [482] = 377, + [483] = 67, + [484] = 417, + [485] = 254, + [486] = 417, [487] = 462, - [488] = 419, - [489] = 130, - [490] = 132, - [491] = 131, - [492] = 234, - [493] = 459, - [494] = 234, - [495] = 382, - [496] = 234, - [497] = 461, - [498] = 234, - [499] = 234, - [500] = 234, - [501] = 234, - [502] = 382, - [503] = 234, - [504] = 234, - [505] = 387, - [506] = 506, - [507] = 234, - [508] = 234, - [509] = 506, - [510] = 382, - [511] = 234, - [512] = 512, - [513] = 234, - [514] = 382, - [515] = 387, - [516] = 506, + [488] = 377, + [489] = 131, + [490] = 130, + [491] = 133, + [492] = 377, + [493] = 254, + [494] = 254, + [495] = 466, + [496] = 481, + [497] = 254, + [498] = 254, + [499] = 254, + [500] = 254, + [501] = 382, + [502] = 502, + [503] = 254, + [504] = 377, + [505] = 254, + [506] = 254, + [507] = 507, + [508] = 377, + [509] = 382, + [510] = 254, + [511] = 502, + [512] = 254, + [513] = 502, + [514] = 254, + [515] = 377, + [516] = 254, [517] = 382, - [518] = 419, - [519] = 234, - [520] = 382, - [521] = 512, - [522] = 387, - [523] = 506, - [524] = 382, + [518] = 377, + [519] = 507, + [520] = 254, + [521] = 377, + [522] = 502, + [523] = 417, + [524] = 377, [525] = 525, - [526] = 382, - [527] = 387, - [528] = 528, - [529] = 525, - [530] = 525, - [531] = 419, - [532] = 419, - [533] = 525, - [534] = 234, - [535] = 525, + [526] = 526, + [527] = 382, + [528] = 525, + [529] = 417, + [530] = 254, + [531] = 531, + [532] = 525, + [533] = 377, + [534] = 525, + [535] = 377, [536] = 525, - [537] = 537, - [538] = 382, - [539] = 382, - [540] = 506, - [541] = 382, + [537] = 525, + [538] = 417, + [539] = 502, + [540] = 377, + [541] = 377, [542] = 542, - [543] = 382, - [544] = 382, - [545] = 419, - [546] = 419, - [547] = 542, - [548] = 548, - [549] = 506, + [543] = 417, + [544] = 417, + [545] = 377, + [546] = 377, + [547] = 417, + [548] = 382, + [549] = 549, [550] = 550, - [551] = 551, - [552] = 550, - [553] = 553, + [551] = 550, + [552] = 552, + [553] = 377, [554] = 554, - [555] = 382, - [556] = 550, - [557] = 557, - [558] = 550, - [559] = 559, - [560] = 550, - [561] = 557, - [562] = 382, - [563] = 550, + [555] = 377, + [556] = 552, + [557] = 552, + [558] = 558, + [559] = 554, + [560] = 502, + [561] = 552, + [562] = 550, + [563] = 552, [564] = 564, - [565] = 550, - [566] = 557, - [567] = 564, - [568] = 382, - [569] = 569, - [570] = 382, - [571] = 564, - [572] = 550, - [573] = 557, - [574] = 419, - [575] = 550, - [576] = 564, - [577] = 557, - [578] = 550, - [579] = 564, - [580] = 387, - [581] = 550, - [582] = 553, - [583] = 559, - [584] = 564, - [585] = 551, - [586] = 550, - [587] = 557, - [588] = 588, - [589] = 588, - [590] = 382, - [591] = 569, + [565] = 554, + [566] = 377, + [567] = 554, + [568] = 552, + [569] = 542, + [570] = 377, + [571] = 550, + [572] = 554, + [573] = 552, + [574] = 550, + [575] = 575, + [576] = 552, + [577] = 577, + [578] = 578, + [579] = 552, + [580] = 554, + [581] = 558, + [582] = 552, + [583] = 583, + [584] = 550, + [585] = 552, + [586] = 578, + [587] = 552, + [588] = 583, + [589] = 417, + [590] = 377, + [591] = 591, [592] = 592, - [593] = 548, - [594] = 594, - [595] = 419, - [596] = 596, + [593] = 593, + [594] = 577, + [595] = 564, + [596] = 575, [597] = 597, - [598] = 419, - [599] = 599, + [598] = 598, + [599] = 597, [600] = 597, - [601] = 601, - [602] = 599, - [603] = 599, - [604] = 599, - [605] = 597, - [606] = 599, - [607] = 382, - [608] = 597, + [601] = 417, + [602] = 602, + [603] = 598, + [604] = 597, + [605] = 598, + [606] = 598, + [607] = 598, + [608] = 377, [609] = 597, - [610] = 597, - [611] = 599, + [610] = 598, + [611] = 597, [612] = 612, [613] = 613, [614] = 614, @@ -3365,177 +3372,177 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [617] = 617, [618] = 617, [619] = 619, - [620] = 620, + [620] = 619, [621] = 619, [622] = 622, - [623] = 620, + [623] = 622, [624] = 619, - [625] = 619, - [626] = 620, + [625] = 625, + [626] = 622, [627] = 619, - [628] = 620, - [629] = 620, - [630] = 619, - [631] = 631, - [632] = 622, - [633] = 620, + [628] = 622, + [629] = 625, + [630] = 622, + [631] = 622, + [632] = 619, + [633] = 633, [634] = 634, [635] = 635, - [636] = 636, + [636] = 634, [637] = 635, - [638] = 636, - [639] = 636, - [640] = 635, - [641] = 641, - [642] = 636, + [638] = 635, + [639] = 635, + [640] = 634, + [641] = 634, + [642] = 642, [643] = 643, - [644] = 636, - [645] = 635, - [646] = 636, - [647] = 635, - [648] = 636, - [649] = 636, - [650] = 636, + [644] = 635, + [645] = 645, + [646] = 634, + [647] = 634, + [648] = 634, + [649] = 634, + [650] = 645, [651] = 634, - [652] = 635, - [653] = 636, - [654] = 636, - [655] = 636, - [656] = 641, + [652] = 634, + [653] = 635, + [654] = 642, + [655] = 634, + [656] = 634, [657] = 657, [658] = 658, [659] = 659, [660] = 660, - [661] = 659, + [661] = 660, [662] = 662, - [663] = 663, - [664] = 659, - [665] = 665, - [666] = 666, - [667] = 663, - [668] = 662, - [669] = 658, - [670] = 658, + [663] = 660, + [664] = 664, + [665] = 657, + [666] = 664, + [667] = 667, + [668] = 668, + [669] = 664, + [670] = 670, [671] = 671, - [672] = 659, - [673] = 659, - [674] = 659, - [675] = 659, - [676] = 659, - [677] = 662, - [678] = 659, - [679] = 659, + [672] = 657, + [673] = 673, + [674] = 657, + [675] = 662, + [676] = 676, + [677] = 657, + [678] = 668, + [679] = 660, [680] = 660, - [681] = 659, - [682] = 658, - [683] = 659, - [684] = 662, - [685] = 659, - [686] = 671, - [687] = 687, - [688] = 688, - [689] = 659, - [690] = 666, - [691] = 660, - [692] = 660, + [681] = 667, + [682] = 667, + [683] = 657, + [684] = 664, + [685] = 657, + [686] = 686, + [687] = 660, + [688] = 657, + [689] = 689, + [690] = 660, + [691] = 657, + [692] = 692, [693] = 693, - [694] = 659, - [695] = 695, - [696] = 659, - [697] = 660, - [698] = 659, - [699] = 662, - [700] = 693, - [701] = 659, - [702] = 695, - [703] = 659, - [704] = 704, - [705] = 705, - [706] = 705, - [707] = 660, - [708] = 693, - [709] = 709, - [710] = 658, - [711] = 658, - [712] = 659, - [713] = 687, - [714] = 659, - [715] = 659, - [716] = 658, - [717] = 659, - [718] = 659, - [719] = 657, - [720] = 693, - [721] = 658, - [722] = 659, - [723] = 659, - [724] = 659, - [725] = 659, - [726] = 660, - [727] = 660, - [728] = 660, - [729] = 709, - [730] = 659, + [694] = 668, + [695] = 657, + [696] = 664, + [697] = 670, + [698] = 660, + [699] = 667, + [700] = 657, + [701] = 671, + [702] = 667, + [703] = 657, + [704] = 673, + [705] = 667, + [706] = 657, + [707] = 667, + [708] = 660, + [709] = 668, + [710] = 657, + [711] = 660, + [712] = 657, + [713] = 664, + [714] = 660, + [715] = 657, + [716] = 657, + [717] = 657, + [718] = 692, + [719] = 719, + [720] = 719, + [721] = 676, + [722] = 667, + [723] = 657, + [724] = 668, + [725] = 667, + [726] = 657, + [727] = 657, + [728] = 657, + [729] = 657, + [730] = 657, [731] = 659, - [732] = 658, - [733] = 704, + [732] = 657, + [733] = 660, [734] = 734, - [735] = 659, - [736] = 658, - [737] = 659, - [738] = 738, - [739] = 658, - [740] = 740, + [735] = 660, + [736] = 657, + [737] = 657, + [738] = 657, + [739] = 657, + [740] = 660, [741] = 741, - [742] = 659, - [743] = 662, - [744] = 659, - [745] = 693, - [746] = 746, - [747] = 688, - [748] = 693, - [749] = 659, - [750] = 658, - [751] = 659, - [752] = 658, + [742] = 660, + [743] = 657, + [744] = 660, + [745] = 745, + [746] = 667, + [747] = 667, + [748] = 667, + [749] = 749, + [750] = 657, + [751] = 657, + [752] = 657, [753] = 658, - [754] = 658, - [755] = 658, - [756] = 659, - [757] = 659, - [758] = 660, - [759] = 759, - [760] = 660, - [761] = 660, - [762] = 759, - [763] = 660, + [754] = 693, + [755] = 657, + [756] = 657, + [757] = 757, + [758] = 657, + [759] = 667, + [760] = 657, + [761] = 745, + [762] = 668, + [763] = 657, [764] = 764, [765] = 765, [766] = 766, [767] = 767, [768] = 768, [769] = 768, - [770] = 770, - [771] = 767, + [770] = 767, + [771] = 771, [772] = 772, [773] = 773, [774] = 774, - [775] = 773, - [776] = 776, + [775] = 775, + [776] = 774, [777] = 777, [778] = 778, [779] = 779, [780] = 780, - [781] = 781, - [782] = 774, + [781] = 772, + [782] = 782, [783] = 783, [784] = 784, [785] = 785, [786] = 786, - [787] = 786, - [788] = 784, - [789] = 785, - [790] = 790, + [787] = 787, + [788] = 786, + [789] = 784, + [790] = 785, [791] = 791, [792] = 792, [793] = 793, @@ -3546,207 +3553,207 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [798] = 798, [799] = 799, [800] = 800, - [801] = 798, - [802] = 794, - [803] = 132, - [804] = 797, - [805] = 800, - [806] = 792, - [807] = 130, + [801] = 794, + [802] = 797, + [803] = 798, + [804] = 795, + [805] = 805, + [806] = 133, + [807] = 792, [808] = 799, - [809] = 791, - [810] = 810, + [809] = 809, + [810] = 796, [811] = 131, - [812] = 796, - [813] = 813, - [814] = 793, + [812] = 130, + [813] = 793, + [814] = 800, [815] = 815, [816] = 816, [817] = 817, - [818] = 132, + [818] = 818, [819] = 819, - [820] = 820, - [821] = 821, - [822] = 130, - [823] = 823, - [824] = 131, + [820] = 131, + [821] = 130, + [822] = 822, + [823] = 133, + [824] = 824, [825] = 825, [826] = 826, [827] = 827, [828] = 828, [829] = 829, [830] = 830, - [831] = 831, - [832] = 832, - [833] = 819, - [834] = 817, + [831] = 830, + [832] = 825, + [833] = 826, + [834] = 834, [835] = 835, - [836] = 830, - [837] = 816, - [838] = 795, - [839] = 827, - [840] = 821, - [841] = 826, - [842] = 828, - [843] = 829, + [836] = 836, + [837] = 819, + [838] = 818, + [839] = 829, + [840] = 840, + [841] = 817, + [842] = 842, + [843] = 843, [844] = 844, [845] = 845, - [846] = 846, - [847] = 847, + [846] = 815, + [847] = 791, [848] = 848, [849] = 849, - [850] = 850, + [850] = 816, [851] = 851, - [852] = 820, - [853] = 853, - [854] = 823, - [855] = 825, + [852] = 822, + [853] = 828, + [854] = 854, + [855] = 824, [856] = 856, [857] = 857, [858] = 858, - [859] = 859, + [859] = 2, [860] = 860, [861] = 861, - [862] = 2, + [862] = 862, [863] = 863, - [864] = 856, + [864] = 858, [865] = 865, [866] = 866, [867] = 867, [868] = 868, [869] = 869, - [870] = 870, + [870] = 868, [871] = 871, - [872] = 872, + [872] = 860, [873] = 873, [874] = 874, - [875] = 860, - [876] = 876, + [875] = 863, + [876] = 865, [877] = 877, [878] = 878, [879] = 879, - [880] = 856, + [880] = 880, [881] = 881, - [882] = 856, + [882] = 882, [883] = 883, - [884] = 861, + [884] = 869, [885] = 885, - [886] = 865, + [886] = 867, [887] = 887, - [888] = 888, - [889] = 856, - [890] = 890, - [891] = 868, + [888] = 858, + [889] = 889, + [890] = 889, + [891] = 891, [892] = 858, [893] = 893, - [894] = 894, + [894] = 858, [895] = 895, - [896] = 896, - [897] = 866, + [896] = 866, + [897] = 897, [898] = 898, [899] = 899, - [900] = 856, - [901] = 901, - [902] = 859, - [903] = 893, - [904] = 857, - [905] = 905, + [900] = 900, + [901] = 858, + [902] = 902, + [903] = 857, + [904] = 904, + [905] = 791, [906] = 906, [907] = 907, - [908] = 906, + [908] = 908, [909] = 909, [910] = 910, - [911] = 911, - [912] = 856, + [911] = 904, + [912] = 912, [913] = 913, [914] = 914, [915] = 915, [916] = 916, [917] = 917, [918] = 918, - [919] = 909, - [920] = 920, + [919] = 919, + [920] = 915, [921] = 921, [922] = 922, - [923] = 921, + [923] = 923, [924] = 924, [925] = 925, - [926] = 917, + [926] = 926, [927] = 927, - [928] = 928, - [929] = 929, + [928] = 858, + [929] = 927, [930] = 930, [931] = 931, [932] = 932, - [933] = 928, - [934] = 856, - [935] = 907, + [933] = 933, + [934] = 916, + [935] = 935, [936] = 936, - [937] = 937, + [937] = 930, [938] = 938, [939] = 939, - [940] = 918, - [941] = 795, - [942] = 942, - [943] = 915, - [944] = 944, - [945] = 945, - [946] = 930, - [947] = 895, - [948] = 948, + [940] = 926, + [941] = 941, + [942] = 931, + [943] = 943, + [944] = 939, + [945] = 858, + [946] = 909, + [947] = 907, + [948] = 917, [949] = 949, - [950] = 907, - [951] = 872, + [950] = 950, + [951] = 900, [952] = 952, - [953] = 953, - [954] = 790, + [953] = 910, + [954] = 954, [955] = 955, - [956] = 921, + [956] = 956, [957] = 957, [958] = 958, - [959] = 959, - [960] = 960, - [961] = 894, - [962] = 927, - [963] = 963, - [964] = 234, - [965] = 965, - [966] = 907, + [959] = 880, + [960] = 931, + [961] = 961, + [962] = 962, + [963] = 873, + [964] = 881, + [965] = 962, + [966] = 254, [967] = 967, [968] = 968, - [969] = 969, + [969] = 930, [970] = 970, [971] = 971, - [972] = 942, - [973] = 960, + [972] = 972, + [973] = 973, [974] = 974, [975] = 975, [976] = 976, - [977] = 874, - [978] = 955, - [979] = 873, - [980] = 921, + [977] = 954, + [978] = 931, + [979] = 943, + [980] = 949, [981] = 981, - [982] = 929, + [982] = 930, [983] = 983, - [984] = 968, - [985] = 985, - [986] = 932, + [984] = 921, + [985] = 787, + [986] = 986, [987] = 987, - [988] = 988, + [988] = 254, [989] = 989, - [990] = 990, - [991] = 234, + [990] = 987, + [991] = 991, [992] = 992, - [993] = 987, + [993] = 993, [994] = 994, [995] = 995, [996] = 996, - [997] = 988, - [998] = 992, - [999] = 999, + [997] = 997, + [998] = 998, + [999] = 993, [1000] = 1000, - [1001] = 989, + [1001] = 1001, [1002] = 1002, [1003] = 1003, [1004] = 1004, @@ -3764,188 +3771,188 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1016] = 1016, [1017] = 1017, [1018] = 1018, - [1019] = 1019, + [1019] = 989, [1020] = 1020, - [1021] = 1021, + [1021] = 991, [1022] = 1022, - [1023] = 856, + [1023] = 1022, [1024] = 1024, - [1025] = 1025, - [1026] = 1025, + [1025] = 1022, + [1026] = 1022, [1027] = 1027, - [1028] = 1025, + [1028] = 1022, [1029] = 1029, - [1030] = 1025, - [1031] = 1031, + [1030] = 1030, + [1031] = 1022, [1032] = 1032, [1033] = 1033, - [1034] = 1025, - [1035] = 1025, - [1036] = 1025, - [1037] = 1025, + [1034] = 1022, + [1035] = 130, + [1036] = 1022, + [1037] = 1037, [1038] = 1038, - [1039] = 1025, - [1040] = 1040, + [1039] = 1039, + [1040] = 1022, [1041] = 1041, - [1042] = 1025, - [1043] = 1025, + [1042] = 1022, + [1043] = 1022, [1044] = 1044, - [1045] = 1045, + [1045] = 133, [1046] = 1046, - [1047] = 1025, - [1048] = 1025, - [1049] = 1025, - [1050] = 1025, - [1051] = 1025, - [1052] = 1025, - [1053] = 1025, - [1054] = 1025, - [1055] = 1025, + [1047] = 1047, + [1048] = 1022, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1022, + [1053] = 1009, + [1054] = 1022, + [1055] = 1022, [1056] = 1056, - [1057] = 1025, - [1058] = 1025, - [1059] = 1025, - [1060] = 1025, - [1061] = 1025, - [1062] = 1025, - [1063] = 1025, + [1057] = 131, + [1058] = 1022, + [1059] = 1020, + [1060] = 1010, + [1061] = 1061, + [1062] = 1062, + [1063] = 1022, [1064] = 1064, - [1065] = 1006, - [1066] = 1025, - [1067] = 1025, - [1068] = 1025, - [1069] = 1025, - [1070] = 1025, - [1071] = 1025, - [1072] = 1004, - [1073] = 1073, - [1074] = 1025, - [1075] = 1075, - [1076] = 1025, - [1077] = 1021, - [1078] = 1020, - [1079] = 1025, - [1080] = 1080, - [1081] = 132, - [1082] = 1082, - [1083] = 131, - [1084] = 1084, - [1085] = 1025, - [1086] = 1086, - [1087] = 1015, - [1088] = 130, + [1065] = 1022, + [1066] = 1022, + [1067] = 1067, + [1068] = 1068, + [1069] = 1022, + [1070] = 1022, + [1071] = 1022, + [1072] = 1072, + [1073] = 1022, + [1074] = 1022, + [1075] = 1022, + [1076] = 1076, + [1077] = 858, + [1078] = 1022, + [1079] = 1022, + [1080] = 1022, + [1081] = 1081, + [1082] = 1022, + [1083] = 1022, + [1084] = 1008, + [1085] = 1022, + [1086] = 1022, + [1087] = 1022, + [1088] = 1022, [1089] = 1089, - [1090] = 1090, + [1090] = 1022, [1091] = 1091, - [1092] = 1092, + [1092] = 1022, [1093] = 1093, - [1094] = 1025, - [1095] = 1025, - [1096] = 1025, + [1094] = 1022, + [1095] = 1022, + [1096] = 1096, [1097] = 1097, - [1098] = 1025, - [1099] = 1099, + [1098] = 1022, + [1099] = 1002, [1100] = 1100, - [1101] = 1101, - [1102] = 1102, - [1103] = 1103, - [1104] = 1092, - [1105] = 1105, - [1106] = 1086, - [1107] = 1107, - [1108] = 1090, + [1101] = 1022, + [1102] = 1022, + [1103] = 1038, + [1104] = 1104, + [1105] = 858, + [1106] = 1106, + [1107] = 1047, + [1108] = 1108, [1109] = 1109, [1110] = 1110, - [1111] = 1111, + [1111] = 1062, [1112] = 1112, [1113] = 1113, - [1114] = 1114, + [1114] = 1064, [1115] = 1115, [1116] = 1116, - [1117] = 1044, - [1118] = 1091, - [1119] = 1119, + [1117] = 1067, + [1118] = 1118, + [1119] = 1037, [1120] = 1120, [1121] = 1121, - [1122] = 1122, - [1123] = 1041, - [1124] = 1092, - [1125] = 1093, - [1126] = 1045, - [1127] = 1127, + [1122] = 1030, + [1123] = 1123, + [1124] = 1024, + [1125] = 1125, + [1126] = 1126, + [1127] = 1029, [1128] = 1128, - [1129] = 1046, + [1129] = 1129, [1130] = 1130, - [1131] = 1131, + [1131] = 1093, [1132] = 1132, [1133] = 1133, - [1134] = 1134, + [1134] = 1033, [1135] = 1135, - [1136] = 1136, - [1137] = 1024, - [1138] = 1032, + [1136] = 1068, + [1137] = 1072, + [1138] = 1138, [1139] = 1139, - [1140] = 1031, - [1141] = 1141, - [1142] = 1029, + [1140] = 1140, + [1141] = 1081, + [1142] = 1142, [1143] = 1143, [1144] = 1144, [1145] = 1145, - [1146] = 1146, + [1146] = 1039, [1147] = 1147, [1148] = 1148, [1149] = 1149, - [1150] = 1091, + [1150] = 1150, [1151] = 1151, - [1152] = 1086, - [1153] = 1093, + [1152] = 1152, + [1153] = 1041, [1154] = 1154, [1155] = 1155, - [1156] = 1156, - [1157] = 1090, + [1156] = 1062, + [1157] = 1157, [1158] = 1158, - [1159] = 1027, - [1160] = 1160, - [1161] = 1161, - [1162] = 1038, - [1163] = 856, - [1164] = 1040, - [1165] = 1165, - [1166] = 1092, - [1167] = 1093, - [1168] = 1168, - [1169] = 856, + [1159] = 1159, + [1160] = 1072, + [1161] = 1068, + [1162] = 1067, + [1163] = 1163, + [1164] = 1164, + [1165] = 1064, + [1166] = 1166, + [1167] = 1167, + [1168] = 1157, + [1169] = 1169, [1170] = 1170, - [1171] = 1171, + [1171] = 1164, [1172] = 1172, - [1173] = 1090, + [1173] = 1173, [1174] = 1174, - [1175] = 1175, - [1176] = 1091, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1086, + [1175] = 1110, + [1176] = 1176, + [1177] = 858, + [1178] = 1072, + [1179] = 1164, + [1180] = 1180, [1181] = 1181, - [1182] = 1120, + [1182] = 1068, [1183] = 1183, [1184] = 1184, [1185] = 1185, - [1186] = 1119, - [1187] = 1143, + [1186] = 1186, + [1187] = 1067, [1188] = 1128, - [1189] = 1115, - [1190] = 1128, + [1189] = 1130, + [1190] = 1190, [1191] = 1191, [1192] = 1192, - [1193] = 1193, + [1193] = 1062, [1194] = 1194, [1195] = 1195, - [1196] = 1196, + [1196] = 1064, [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1200, + [1200] = 1198, [1201] = 1201, [1202] = 1202, [1203] = 1203, @@ -3959,48 +3966,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1211] = 1211, [1212] = 1212, [1213] = 1213, - [1214] = 1214, - [1215] = 1199, - [1216] = 1216, - [1217] = 1212, - [1218] = 1199, + [1214] = 1205, + [1215] = 1215, + [1216] = 1205, + [1217] = 1217, + [1218] = 1218, [1219] = 1219, - [1220] = 1214, + [1220] = 1198, [1221] = 1221, - [1222] = 1212, + [1222] = 1222, [1223] = 1223, - [1224] = 1183, + [1224] = 1224, [1225] = 1225, - [1226] = 1226, - [1227] = 1227, - [1228] = 1214, + [1226] = 1198, + [1227] = 1202, + [1228] = 1228, [1229] = 1229, [1230] = 1230, [1231] = 1231, [1232] = 1232, - [1233] = 1214, + [1233] = 1233, [1234] = 1234, - [1235] = 1235, + [1235] = 1205, [1236] = 1236, [1237] = 1237, - [1238] = 1238, + [1238] = 1205, [1239] = 1239, - [1240] = 1240, + [1240] = 1202, [1241] = 1241, - [1242] = 856, + [1242] = 1242, [1243] = 1243, - [1244] = 1244, + [1244] = 858, [1245] = 1245, [1246] = 1246, - [1247] = 1214, - [1248] = 1214, - [1249] = 1199, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1252, - [1253] = 1212, + [1252] = 1170, + [1253] = 1205, [1254] = 1254, - [1255] = 1255, + [1255] = 1202, [1256] = 1256, [1257] = 1257, [1258] = 1258, @@ -4011,8 +4018,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1263] = 1263, [1264] = 1264, [1265] = 1265, - [1266] = 1091, - [1267] = 1267, + [1266] = 1266, + [1267] = 1067, [1268] = 1268, [1269] = 1269, [1270] = 1270, @@ -4030,300 +4037,300 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1282] = 1282, [1283] = 1283, [1284] = 1284, - [1285] = 1283, + [1285] = 1285, [1286] = 1286, [1287] = 1287, [1288] = 1288, - [1289] = 1289, + [1289] = 858, [1290] = 1290, [1291] = 1291, - [1292] = 1292, + [1292] = 1282, [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, - [1297] = 856, + [1294] = 1269, + [1295] = 1270, + [1296] = 1271, + [1297] = 1297, [1298] = 1298, - [1299] = 1287, - [1300] = 1264, - [1301] = 1301, + [1299] = 1273, + [1300] = 1300, + [1301] = 1274, [1302] = 1302, - [1303] = 1279, + [1303] = 1303, [1304] = 1304, - [1305] = 1263, + [1305] = 1305, [1306] = 1306, - [1307] = 1262, + [1307] = 1307, [1308] = 1308, - [1309] = 1309, - [1310] = 1261, + [1309] = 1281, + [1310] = 1275, [1311] = 1311, - [1312] = 1312, - [1313] = 1283, + [1312] = 1268, + [1313] = 1313, [1314] = 1314, [1315] = 1315, - [1316] = 1284, - [1317] = 1260, - [1318] = 1287, - [1319] = 1319, - [1320] = 1320, + [1316] = 1303, + [1317] = 1317, + [1318] = 1318, + [1319] = 1282, + [1320] = 1293, [1321] = 1321, - [1322] = 1322, + [1322] = 1293, [1323] = 1323, - [1324] = 1259, + [1324] = 1324, [1325] = 1258, - [1326] = 1326, - [1327] = 1327, + [1326] = 1307, + [1327] = 1261, [1328] = 1328, [1329] = 1329, - [1330] = 1257, + [1330] = 1330, [1331] = 1331, [1332] = 1332, [1333] = 1333, [1334] = 1334, - [1335] = 1284, + [1335] = 1335, [1336] = 1336, - [1337] = 1283, - [1338] = 1256, + [1337] = 1337, + [1338] = 1338, [1339] = 1339, - [1340] = 1340, - [1341] = 1309, - [1342] = 1283, - [1343] = 1306, + [1340] = 1303, + [1341] = 1341, + [1342] = 1331, + [1343] = 1329, [1344] = 1344, [1345] = 1345, [1346] = 1346, [1347] = 1347, [1348] = 1348, [1349] = 1349, - [1350] = 1350, - [1351] = 1255, + [1350] = 1257, + [1351] = 1349, [1352] = 1352, - [1353] = 1333, + [1353] = 1353, [1354] = 1354, - [1355] = 1306, - [1356] = 1356, - [1357] = 1357, - [1358] = 1358, - [1359] = 1359, + [1355] = 1355, + [1356] = 1329, + [1357] = 1341, + [1358] = 1314, + [1359] = 1331, [1360] = 1360, - [1361] = 1361, + [1361] = 1303, [1362] = 1362, [1363] = 1363, [1364] = 1364, - [1365] = 1287, - [1366] = 1366, + [1365] = 1293, + [1366] = 1300, [1367] = 1367, [1368] = 1368, - [1369] = 1333, - [1370] = 1346, - [1371] = 1306, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, [1372] = 1372, [1373] = 1373, - [1374] = 1279, + [1374] = 1067, [1375] = 1375, [1376] = 1376, [1377] = 1377, - [1378] = 1282, + [1378] = 1378, [1379] = 1379, [1380] = 1380, [1381] = 1381, [1382] = 1382, [1383] = 1383, - [1384] = 1287, + [1384] = 1303, [1385] = 1385, - [1386] = 1386, - [1387] = 1387, + [1386] = 1329, + [1387] = 1341, [1388] = 1388, - [1389] = 1389, - [1390] = 1279, - [1391] = 1286, - [1392] = 1306, - [1393] = 1306, + [1389] = 1300, + [1390] = 1282, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, [1394] = 1394, [1395] = 1395, - [1396] = 1396, + [1396] = 1300, [1397] = 1397, - [1398] = 1398, - [1399] = 1279, - [1400] = 1091, + [1398] = 1282, + [1399] = 1303, + [1400] = 1400, [1401] = 1401, - [1402] = 1382, - [1403] = 1403, - [1404] = 1287, + [1402] = 1402, + [1403] = 1282, + [1404] = 1404, [1405] = 1405, - [1406] = 1346, + [1406] = 1406, [1407] = 1407, - [1408] = 1284, + [1408] = 1408, [1409] = 1409, - [1410] = 1346, + [1410] = 1300, [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1306, + [1412] = 1341, + [1413] = 1329, + [1414] = 1414, [1415] = 1415, - [1416] = 1281, + [1416] = 1329, [1417] = 1417, - [1418] = 1283, - [1419] = 1287, - [1420] = 1279, - [1421] = 1421, + [1418] = 1418, + [1419] = 1303, + [1420] = 1300, + [1421] = 1283, [1422] = 1422, [1423] = 1423, [1424] = 1424, - [1425] = 1425, + [1425] = 1282, [1426] = 1426, [1427] = 1427, [1428] = 1428, - [1429] = 1407, + [1429] = 1429, [1430] = 1430, [1431] = 1431, [1432] = 1432, - [1433] = 1422, + [1433] = 1427, [1434] = 1434, - [1435] = 1435, - [1436] = 1422, + [1435] = 1429, + [1436] = 1436, [1437] = 1437, [1438] = 1438, - [1439] = 1431, + [1439] = 1439, [1440] = 1440, [1441] = 1441, - [1442] = 1422, + [1442] = 1442, [1443] = 1443, - [1444] = 1444, - [1445] = 1441, + [1444] = 1437, + [1445] = 1438, [1446] = 1446, - [1447] = 1431, - [1448] = 1430, - [1449] = 1428, + [1447] = 1432, + [1448] = 1438, + [1449] = 1432, [1450] = 1450, [1451] = 1451, - [1452] = 1441, - [1453] = 1453, - [1454] = 1454, - [1455] = 1455, + [1452] = 1452, + [1453] = 1436, + [1454] = 1434, + [1455] = 1431, [1456] = 1456, [1457] = 1457, - [1458] = 1458, - [1459] = 234, + [1458] = 254, + [1459] = 1459, [1460] = 1460, [1461] = 1461, - [1462] = 1428, + [1462] = 1437, [1463] = 1463, [1464] = 1464, [1465] = 1465, [1466] = 1466, - [1467] = 1467, + [1467] = 1436, [1468] = 1468, - [1469] = 1441, - [1470] = 1422, + [1469] = 1469, + [1470] = 1470, [1471] = 1471, [1472] = 1472, [1473] = 1473, - [1474] = 1430, - [1475] = 1431, - [1476] = 1430, - [1477] = 1428, + [1474] = 1474, + [1475] = 1432, + [1476] = 1438, + [1477] = 1477, [1478] = 1478, [1479] = 1479, [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, + [1481] = 1436, + [1482] = 1434, + [1483] = 1431, [1484] = 1484, [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1487, - [1489] = 1489, - [1490] = 1471, + [1486] = 1437, + [1487] = 1473, + [1488] = 1488, + [1489] = 1478, + [1490] = 1490, [1491] = 1491, - [1492] = 1468, + [1492] = 1484, [1493] = 1493, [1494] = 1494, - [1495] = 1454, + [1495] = 1495, [1496] = 1496, - [1497] = 1473, - [1498] = 1453, - [1499] = 1450, - [1500] = 1500, - [1501] = 1491, - [1502] = 1502, - [1503] = 1431, - [1504] = 1430, - [1505] = 1428, - [1506] = 1502, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1378, + [1501] = 1501, + [1502] = 1471, + [1503] = 1432, + [1504] = 1438, + [1505] = 1437, + [1506] = 1506, [1507] = 1507, - [1508] = 1496, - [1509] = 1509, - [1510] = 1510, - [1511] = 1451, - [1512] = 1486, + [1508] = 1479, + [1509] = 1436, + [1510] = 1434, + [1511] = 1431, + [1512] = 1431, [1513] = 1513, - [1514] = 1467, - [1515] = 1441, - [1516] = 1431, - [1517] = 1464, - [1518] = 1456, + [1514] = 1514, + [1515] = 1434, + [1516] = 1516, + [1517] = 1517, + [1518] = 1436, [1519] = 1519, - [1520] = 1428, + [1520] = 1470, [1521] = 1521, - [1522] = 1431, - [1523] = 1430, - [1524] = 1491, - [1525] = 1525, - [1526] = 1526, - [1527] = 1431, - [1528] = 1431, + [1522] = 1436, + [1523] = 1494, + [1524] = 1438, + [1525] = 1432, + [1526] = 1472, + [1527] = 1527, + [1528] = 1436, [1529] = 1529, - [1530] = 1530, - [1531] = 1531, + [1530] = 1456, + [1531] = 1493, [1532] = 1532, - [1533] = 1431, - [1534] = 1534, - [1535] = 1451, - [1536] = 1484, - [1537] = 1521, - [1538] = 1431, - [1539] = 1539, - [1540] = 1463, - [1541] = 1431, - [1542] = 1461, - [1543] = 1465, - [1544] = 1425, + [1533] = 1533, + [1534] = 1436, + [1535] = 1480, + [1536] = 1464, + [1537] = 1434, + [1538] = 1538, + [1539] = 1436, + [1540] = 1538, + [1541] = 1532, + [1542] = 1485, + [1543] = 1497, + [1544] = 1436, [1545] = 1545, - [1546] = 1546, - [1547] = 1422, + [1546] = 1429, + [1547] = 1427, [1548] = 1548, - [1549] = 1441, - [1550] = 1481, - [1551] = 1460, - [1552] = 1502, - [1553] = 1553, - [1554] = 1482, - [1555] = 1555, - [1556] = 1480, - [1557] = 1510, + [1549] = 1436, + [1550] = 1550, + [1551] = 1463, + [1552] = 1552, + [1553] = 1550, + [1554] = 1468, + [1555] = 1466, + [1556] = 1556, + [1557] = 1557, [1558] = 1558, - [1559] = 1451, - [1560] = 1502, - [1561] = 1558, - [1562] = 1491, - [1563] = 1443, - [1564] = 1434, - [1565] = 1565, - [1566] = 1438, - [1567] = 1531, + [1559] = 1557, + [1560] = 1560, + [1561] = 1437, + [1562] = 1545, + [1563] = 1563, + [1564] = 1564, + [1565] = 1517, + [1566] = 1499, + [1567] = 1560, [1568] = 1568, - [1569] = 1451, - [1570] = 1485, - [1571] = 1571, - [1572] = 1451, - [1573] = 1500, + [1569] = 1519, + [1570] = 1527, + [1571] = 1529, + [1572] = 1495, + [1573] = 1429, [1574] = 1574, - [1575] = 1575, + [1575] = 1427, [1576] = 1576, - [1577] = 1577, - [1578] = 1578, + [1577] = 1431, + [1578] = 1439, [1579] = 1579, [1580] = 1580, [1581] = 1581, @@ -4338,292 +4345,298 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1590] = 1590, [1591] = 1591, [1592] = 1592, - [1593] = 1576, + [1593] = 2, [1594] = 1594, [1595] = 1595, - [1596] = 1596, + [1596] = 1590, [1597] = 1597, [1598] = 1598, - [1599] = 1584, - [1600] = 1600, + [1599] = 1599, + [1600] = 1584, [1601] = 1601, [1602] = 1602, - [1603] = 1584, - [1604] = 1604, + [1603] = 1603, + [1604] = 1582, [1605] = 1605, - [1606] = 1596, + [1606] = 1606, [1607] = 1607, - [1608] = 1594, - [1609] = 1586, + [1608] = 1601, + [1609] = 1609, [1610] = 1610, [1611] = 1611, - [1612] = 1595, - [1613] = 1597, - [1614] = 1614, + [1612] = 1612, + [1613] = 1613, + [1614] = 1603, [1615] = 1615, [1616] = 1616, [1617] = 1617, [1618] = 1618, - [1619] = 1595, + [1619] = 1615, [1620] = 1620, - [1621] = 1621, - [1622] = 1581, - [1623] = 1594, + [1621] = 1594, + [1622] = 1622, + [1623] = 1579, [1624] = 1624, - [1625] = 1579, - [1626] = 2, + [1625] = 1625, + [1626] = 1611, [1627] = 1627, [1628] = 1628, - [1629] = 1587, - [1630] = 1630, + [1629] = 1629, + [1630] = 1597, [1631] = 1631, [1632] = 1632, [1633] = 1633, - [1634] = 1595, + [1634] = 1634, [1635] = 1635, - [1636] = 1600, + [1636] = 1636, [1637] = 1637, - [1638] = 1638, + [1638] = 1595, [1639] = 1639, [1640] = 1640, - [1641] = 1641, - [1642] = 1597, + [1641] = 1589, + [1642] = 1603, [1643] = 1643, - [1644] = 1644, - [1645] = 1645, - [1646] = 1590, + [1644] = 1611, + [1645] = 1602, + [1646] = 1646, [1647] = 1647, [1648] = 1648, [1649] = 1649, - [1650] = 1591, + [1650] = 1650, [1651] = 1651, [1652] = 1652, - [1653] = 1615, - [1654] = 1654, + [1653] = 1653, + [1654] = 1622, [1655] = 1655, - [1656] = 1583, + [1656] = 1613, [1657] = 1657, [1658] = 1658, [1659] = 1659, - [1660] = 1660, + [1660] = 1639, [1661] = 1661, [1662] = 1662, - [1663] = 1585, + [1663] = 1579, [1664] = 1664, - [1665] = 1594, - [1666] = 1584, + [1665] = 1665, + [1666] = 1666, [1667] = 1667, - [1668] = 1597, - [1669] = 1595, - [1670] = 1605, + [1668] = 1668, + [1669] = 1669, + [1670] = 1670, [1671] = 1671, - [1672] = 1672, - [1673] = 1673, - [1674] = 1674, - [1675] = 1581, - [1676] = 1594, - [1677] = 1584, - [1678] = 1577, - [1679] = 1597, - [1680] = 1680, - [1681] = 1681, - [1682] = 1595, - [1683] = 1597, - [1684] = 1584, - [1685] = 1685, - [1686] = 1686, - [1687] = 1645, - [1688] = 1594, + [1672] = 1583, + [1673] = 1603, + [1674] = 1611, + [1675] = 1622, + [1676] = 1579, + [1677] = 1612, + [1678] = 1678, + [1679] = 1679, + [1680] = 1622, + [1681] = 1603, + [1682] = 1611, + [1683] = 1683, + [1684] = 1684, + [1685] = 1616, + [1686] = 1622, + [1687] = 1579, + [1688] = 1580, [1689] = 1689, - [1690] = 1607, - [1691] = 1618, - [1692] = 1692, - [1693] = 1578, - [1694] = 1694, + [1690] = 1579, + [1691] = 1691, + [1692] = 1622, + [1693] = 1653, + [1694] = 1595, [1695] = 1695, - [1696] = 1696, - [1697] = 1697, + [1696] = 1603, + [1697] = 1611, [1698] = 1698, - [1699] = 1699, + [1699] = 1689, [1700] = 1700, [1701] = 1701, - [1702] = 1701, + [1702] = 1702, [1703] = 1703, [1704] = 1704, - [1705] = 1705, - [1706] = 1703, - [1707] = 1696, - [1708] = 1708, + [1705] = 1701, + [1706] = 1706, + [1707] = 1707, + [1708] = 1703, [1709] = 1709, - [1710] = 1701, - [1711] = 1701, - [1712] = 1701, + [1710] = 1710, + [1711] = 1711, + [1712] = 1700, [1713] = 1713, - [1714] = 1701, - [1715] = 1701, - [1716] = 1701, - [1717] = 1701, - [1718] = 1701, + [1714] = 1702, + [1715] = 1715, + [1716] = 1700, + [1717] = 1717, + [1718] = 1718, [1719] = 1719, [1720] = 1720, - [1721] = 1701, + [1721] = 1721, [1722] = 1722, - [1723] = 1699, - [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 1701, - [1728] = 1701, - [1729] = 1703, - [1730] = 1701, - [1731] = 1731, + [1723] = 1700, + [1724] = 1701, + [1725] = 1706, + [1726] = 1700, + [1727] = 1727, + [1728] = 1728, + [1729] = 1729, + [1730] = 1730, + [1731] = 1700, [1732] = 1732, - [1733] = 1733, - [1734] = 1705, - [1735] = 1696, - [1736] = 1701, - [1737] = 1701, - [1738] = 1701, - [1739] = 1701, - [1740] = 1701, - [1741] = 1741, - [1742] = 1742, - [1743] = 1701, - [1744] = 1701, + [1733] = 1700, + [1734] = 1700, + [1735] = 1700, + [1736] = 1736, + [1737] = 1711, + [1738] = 1700, + [1739] = 1700, + [1740] = 1700, + [1741] = 1700, + [1742] = 1702, + [1743] = 1743, + [1744] = 1744, [1745] = 1701, - [1746] = 1701, - [1747] = 1747, - [1748] = 1748, - [1749] = 1701, - [1750] = 1701, - [1751] = 1701, + [1746] = 1746, + [1747] = 1706, + [1748] = 1700, + [1749] = 1749, + [1750] = 1700, + [1751] = 1702, [1752] = 1752, - [1753] = 1701, - [1754] = 1731, - [1755] = 1755, - [1756] = 1732, - [1757] = 1757, - [1758] = 1701, + [1753] = 1700, + [1754] = 1702, + [1755] = 1700, + [1756] = 1756, + [1757] = 1700, + [1758] = 1700, [1759] = 1759, - [1760] = 1701, - [1761] = 1761, - [1762] = 1701, - [1763] = 1701, - [1764] = 1701, - [1765] = 1765, - [1766] = 1701, - [1767] = 1767, - [1768] = 1701, - [1769] = 1701, - [1770] = 1705, - [1771] = 1700, - [1772] = 1703, - [1773] = 1773, - [1774] = 1701, - [1775] = 1775, - [1776] = 1726, - [1777] = 1700, + [1760] = 1760, + [1761] = 1700, + [1762] = 1700, + [1763] = 1763, + [1764] = 1764, + [1765] = 1700, + [1766] = 1766, + [1767] = 1700, + [1768] = 1768, + [1769] = 1769, + [1770] = 1711, + [1771] = 1771, + [1772] = 1700, + [1773] = 1700, + [1774] = 1774, + [1775] = 1700, + [1776] = 1776, + [1777] = 1777, [1778] = 1778, [1779] = 1779, - [1780] = 1701, + [1780] = 1700, [1781] = 1700, [1782] = 1782, - [1783] = 1783, + [1783] = 1700, [1784] = 1784, - [1785] = 1785, - [1786] = 1786, + [1785] = 1700, + [1786] = 1700, [1787] = 1787, - [1788] = 1701, - [1789] = 1789, - [1790] = 1790, - [1791] = 1699, - [1792] = 1705, + [1788] = 1700, + [1789] = 1700, + [1790] = 1700, + [1791] = 1700, + [1792] = 1610, [1793] = 1793, - [1794] = 1794, - [1795] = 1696, + [1794] = 1746, + [1795] = 1711, [1796] = 1796, [1797] = 1797, - [1798] = 1700, + [1798] = 1706, [1799] = 1799, - [1800] = 1701, + [1800] = 1700, [1801] = 1801, - [1802] = 1725, + [1802] = 1802, [1803] = 1803, - [1804] = 1699, - [1805] = 1805, + [1804] = 1804, + [1805] = 1763, [1806] = 1806, [1807] = 1807, - [1808] = 1808, - [1809] = 1809, + [1808] = 1746, + [1809] = 1701, [1810] = 1810, [1811] = 1811, - [1812] = 1696, + [1812] = 1706, [1813] = 1813, - [1814] = 1796, - [1815] = 1705, - [1816] = 1703, - [1817] = 1757, - [1818] = 1708, + [1814] = 1814, + [1815] = 1815, + [1816] = 1816, + [1817] = 1817, + [1818] = 1818, [1819] = 1819, - [1820] = 1820, + [1820] = 1813, [1821] = 1821, - [1822] = 1822, - [1823] = 1699, - [1824] = 1742, + [1822] = 1700, + [1823] = 1779, + [1824] = 1752, [1825] = 1825, [1826] = 1826, - [1827] = 1696, - [1828] = 1705, + [1827] = 1827, + [1828] = 1828, [1829] = 1829, - [1830] = 1830, - [1831] = 1831, + [1830] = 1746, + [1831] = 1700, [1832] = 1832, - [1833] = 1822, + [1833] = 1833, [1834] = 1834, [1835] = 1835, [1836] = 1836, [1837] = 1837, - [1838] = 1838, - [1839] = 1701, + [1838] = 1746, + [1839] = 1839, [1840] = 1840, - [1841] = 1841, + [1841] = 1700, [1842] = 1842, - [1843] = 1843, - [1844] = 1844, - [1845] = 1845, - [1846] = 1846, - [1847] = 1703, - [1848] = 1700, - [1849] = 1699, - [1850] = 1698, - [1851] = 1851, + [1843] = 1711, + [1844] = 1713, + [1845] = 1718, + [1846] = 1727, + [1847] = 1847, + [1848] = 1848, + [1849] = 1849, + [1850] = 1850, + [1851] = 1700, [1852] = 1852, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1755, + [1853] = 1702, + [1854] = 1776, + [1855] = 1778, + [1856] = 1856, [1857] = 1857, - [1858] = 1858, - [1859] = 1859, - [1860] = 1778, - [1861] = 1813, - [1862] = 1831, - [1863] = 1853, - [1864] = 1801, - [1865] = 1819, - [1866] = 1832, - [1867] = 1867, - [1868] = 1694, - [1869] = 1580, - [1870] = 1689, - [1871] = 1871, - [1872] = 1872, - [1873] = 1701, - [1874] = 1874, + [1858] = 1701, + [1859] = 1706, + [1860] = 1860, + [1861] = 1849, + [1862] = 1746, + [1863] = 1777, + [1864] = 1796, + [1865] = 1700, + [1866] = 1866, + [1867] = 1743, + [1868] = 1801, + [1869] = 1834, + [1870] = 1704, + [1871] = 1744, + [1872] = 1807, + [1873] = 1873, + [1874] = 1651, [1875] = 1875, - [1876] = 1698, - [1877] = 1724, - [1878] = 1797, + [1876] = 1876, + [1877] = 1711, + [1878] = 1878, + [1879] = 1879, + [1880] = 1763, + [1881] = 1881, + [1882] = 1850, + [1883] = 1883, + [1884] = 1814, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -4750,7 +4763,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1402, - 'C', 1460, + 'C', 1459, 'I', 1365, 'N', 1453, 'O', 1471, @@ -4796,7 +4809,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1402, - 'C', 1460, + 'C', 1459, 'I', 1430, 'N', 1453, 'O', 1471, @@ -4844,7 +4857,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1399, - 'C', 1460, + 'C', 1459, 'I', 1430, 'N', 1453, 'O', 1471, @@ -4892,7 +4905,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1399, - 'C', 1460, + 'C', 1459, 'I', 1430, 'N', 1453, 'O', 1471, @@ -4938,8 +4951,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1399, - 'C', 1460, - 'F', 1483, + 'C', 1459, + 'F', 1482, 'I', 1430, 'N', 1453, 'O', 1471, @@ -4985,8 +4998,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1399, - 'C', 1460, - 'F', 1483, + 'C', 1459, + 'F', 1482, 'I', 1430, 'N', 1453, 'O', 1427, @@ -5078,8 +5091,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1402, - 'C', 1460, - 'F', 1483, + 'C', 1459, + 'F', 1482, 'I', 1430, 'N', 1453, 'O', 1471, @@ -8472,7 +8485,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 1133, '@', 1550, 'A', 1402, - 'C', 1460, + 'C', 1459, 'I', 1430, 'N', 1453, 'O', 1471, @@ -8579,7 +8592,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1400, - 'C', 1457, + 'C', 1458, 'D', 1356, 'E', 1528, 'F', 1348, @@ -8588,7 +8601,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 1452, 'O', 1471, 'P', 1298, - 'R', 1299, + 'R', 1300, 'T', 1390, '[', 1128, 'c', 1538, @@ -8636,7 +8649,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1402, - 'C', 1460, + 'C', 1459, 'E', 1528, 'F', 1348, 'G', 1478, @@ -8694,7 +8707,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1402, - 'C', 1460, + 'C', 1459, 'E', 1528, 'F', 1348, 'G', 1478, @@ -8752,7 +8765,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1402, - 'C', 1460, + 'C', 1459, 'I', 1430, 'N', 1453, 'O', 1471, @@ -8806,7 +8819,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1402, - 'C', 1460, + 'C', 1459, 'I', 1430, 'N', 1453, 'O', 1471, @@ -8859,7 +8872,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 75, '@', 1550, 'A', 1402, - 'C', 1460, + 'C', 1459, 'I', 1430, 'N', 1453, 'O', 1471, @@ -8913,7 +8926,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'A', 1402, 'C', 1461, 'I', 1430, - 'M', 1353, + 'M', 1354, 'N', 1453, 'O', 1471, 'P', 1296, @@ -9238,17 +9251,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 1145, '?', 75, '@', 1550, - 'A', 1401, + 'A', 1402, 'C', 1451, - 'D', 1342, - 'F', 1417, 'I', 1430, 'N', 1453, 'O', 1471, 'P', 1339, - 'R', 1355, - 'T', 1530, - 'V', 1302, '[', 1128, 'c', 1538, '{', 1135, @@ -9293,17 +9301,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 1145, '?', 75, '@', 1550, - 'A', 1401, - 'C', 1451, - 'D', 1342, - 'F', 1418, + 'A', 1402, + 'C', 1459, + 'E', 1528, + 'F', 1348, + 'G', 1478, 'I', 1430, + 'L', 1392, 'N', 1453, - 'O', 1471, - 'P', 1339, - 'R', 1355, - 'T', 1530, - 'V', 1302, + 'O', 1472, + 'P', 1298, + 'S', 1470, + 'T', 1390, '[', 1128, 'c', 1538, '{', 1135, @@ -9348,12 +9357,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 1145, '?', 75, '@', 1550, - 'A', 1402, + 'A', 1401, 'C', 1451, + 'D', 1342, + 'F', 1417, 'I', 1430, 'N', 1453, 'O', 1471, 'P', 1339, + 'R', 1355, + 'T', 1530, + 'V', 1301, '[', 1128, 'c', 1538, '{', 1135, @@ -9398,18 +9412,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 1145, '?', 75, '@', 1550, - 'A', 1402, - 'C', 1460, - 'E', 1528, - 'F', 1348, - 'G', 1478, + 'A', 1401, + 'C', 1451, + 'D', 1342, + 'F', 1418, 'I', 1430, - 'L', 1392, 'N', 1453, - 'O', 1472, - 'P', 1298, - 'S', 1470, - 'T', 1390, + 'O', 1471, + 'P', 1339, + 'R', 1355, + 'T', 1530, + 'V', 1301, '[', 1128, 'c', 1538, '{', 1135, @@ -10109,7 +10122,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 961: ACCEPT_TOKEN(sym_keyword_or); - if (lookahead == 'D') ADVANCE(1352); + if (lookahead == 'D') ADVANCE(1351); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12152,7 +12165,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1299: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'A') ADVANCE(1438); + if (lookahead == 'A') ADVANCE(1526); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12160,7 +12173,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1300: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'A') ADVANCE(1519); + if (lookahead == 'A') ADVANCE(1438); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12168,7 +12181,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1301: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'A') ADVANCE(1526); + if (lookahead == 'A') ADVANCE(1410); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12176,7 +12189,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1302: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'A') ADVANCE(1411); + if (lookahead == 'A') ADVANCE(1519); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12201,7 +12214,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1305: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'A') ADVANCE(1413); + if (lookahead == 'A') ADVANCE(1411); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12257,7 +12270,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1312: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'C') ADVANCE(1372); + if (lookahead == 'C') ADVANCE(1373); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12554,7 +12567,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1349: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'E') ADVANCE(1493); + if (lookahead == 'E') ADVANCE(1457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12562,7 +12575,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1350: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'E') ADVANCE(1482); + if (lookahead == 'E') ADVANCE(1493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12570,7 +12583,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1351: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'E') ADVANCE(1458); + if (lookahead == 'E') ADVANCE(1473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12578,7 +12591,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1352: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'E') ADVANCE(1473); + if (lookahead == 'E') ADVANCE(1483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12586,7 +12599,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1353: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'E') ADVANCE(1486); + if (lookahead == 'E') ADVANCE(1406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12594,7 +12607,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1354: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'E') ADVANCE(1406); + if (lookahead == 'E') ADVANCE(1486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12693,7 +12706,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1366: ACCEPT_TOKEN(sym_record_id_ident); if (lookahead == 'F') ADVANCE(1522); - if (lookahead == 'L') ADVANCE(1349); + if (lookahead == 'L') ADVANCE(1350); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12701,7 +12714,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1367: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'F') ADVANCE(1301); + if (lookahead == 'F') ADVANCE(1299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12742,7 +12755,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1372: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'H') ADVANCE(909); + if (lookahead == 'H') ADVANCE(930); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12750,7 +12763,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1373: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'H') ADVANCE(930); + if (lookahead == 'H') ADVANCE(909); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -12871,7 +12884,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1388: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'I') ADVANCE(1507); + if (lookahead == 'I') ADVANCE(1506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13055,8 +13068,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1410: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'L') ADVANCE(1412); - if (lookahead == 'N') ADVANCE(1515); + if (lookahead == 'L') ADVANCE(1527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13064,7 +13076,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1411: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'L') ADVANCE(1527); + if (lookahead == 'L') ADVANCE(1416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13072,7 +13084,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1412: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'L') ADVANCE(1300); + if (lookahead == 'L') ADVANCE(1302); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13080,7 +13092,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1413: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'L') ADVANCE(1416); + if (lookahead == 'L') ADVANCE(1412); + if (lookahead == 'N') ADVANCE(1515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13104,7 +13117,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1416: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'L') ADVANCE(1354); + if (lookahead == 'L') ADVANCE(1353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13204,7 +13217,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1428: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'M') ADVANCE(1351); + if (lookahead == 'M') ADVANCE(1349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13212,7 +13225,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1429: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'M') ADVANCE(1350); + if (lookahead == 'M') ADVANCE(1352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13440,7 +13453,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1457: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'O') ADVANCE(1410); + if (lookahead == 'O') ADVANCE(1524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13448,7 +13461,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1458: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'O') ADVANCE(1524); + if (lookahead == 'O') ADVANCE(1413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13456,7 +13469,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1459: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'O') ADVANCE(1422); + if (lookahead == 'O') ADVANCE(1436); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13464,7 +13477,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1460: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'O') ADVANCE(1436); + if (lookahead == 'O') ADVANCE(1422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13643,7 +13656,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1482: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'R') ADVANCE(1385); + if (lookahead == 'R') ADVANCE(1460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13651,7 +13664,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1483: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'R') ADVANCE(1459); + if (lookahead == 'R') ADVANCE(1385); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13835,7 +13848,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1506: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'T') ADVANCE(907); + if (lookahead == 'T') ADVANCE(937); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13843,7 +13856,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1507: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'T') ADVANCE(937); + if (lookahead == 'T') ADVANCE(907); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13915,7 +13928,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1516: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'T') ADVANCE(1373); + if (lookahead == 'T') ADVANCE(1372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -13979,7 +13992,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1524: ACCEPT_TOKEN(sym_record_id_ident); - if (lookahead == 'U') ADVANCE(1506); + if (lookahead == 'U') ADVANCE(1507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -14276,30 +14289,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6] = {.lex_state = 829}, [7] = {.lex_state = 829}, [8] = {.lex_state = 829}, - [9] = {.lex_state = 831}, + [9] = {.lex_state = 829}, [10] = {.lex_state = 829}, [11] = {.lex_state = 829}, - [12] = {.lex_state = 829}, + [12] = {.lex_state = 831}, [13] = {.lex_state = 829}, [14] = {.lex_state = 829}, [15] = {.lex_state = 829}, [16] = {.lex_state = 829}, [17] = {.lex_state = 829}, - [18] = {.lex_state = 829}, + [18] = {.lex_state = 831}, [19] = {.lex_state = 829}, [20] = {.lex_state = 829}, [21] = {.lex_state = 829}, [22] = {.lex_state = 829}, [23] = {.lex_state = 829}, [24] = {.lex_state = 829}, - [25] = {.lex_state = 831}, + [25] = {.lex_state = 829}, [26] = {.lex_state = 829}, [27] = {.lex_state = 829}, [28] = {.lex_state = 829}, - [29] = {.lex_state = 829}, + [29] = {.lex_state = 831}, [30] = {.lex_state = 829}, [31] = {.lex_state = 829}, - [32] = {.lex_state = 831}, + [32] = {.lex_state = 829}, [33] = {.lex_state = 829}, [34] = {.lex_state = 829}, [35] = {.lex_state = 829}, @@ -14333,40 +14346,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [63] = {.lex_state = 831}, [64] = {.lex_state = 831}, [65] = {.lex_state = 831}, - [66] = {.lex_state = 831}, + [66] = {.lex_state = 830}, [67] = {.lex_state = 830}, [68] = {.lex_state = 830}, - [69] = {.lex_state = 830}, + [69] = {.lex_state = 831}, [70] = {.lex_state = 831}, - [71] = {.lex_state = 831}, - [72] = {.lex_state = 831}, + [71] = {.lex_state = 830}, + [72] = {.lex_state = 830}, [73] = {.lex_state = 830}, - [74] = {.lex_state = 830}, + [74] = {.lex_state = 831}, [75] = {.lex_state = 830}, [76] = {.lex_state = 830}, - [77] = {.lex_state = 830}, + [77] = {.lex_state = 831}, [78] = {.lex_state = 830}, - [79] = {.lex_state = 842}, + [79] = {.lex_state = 831}, [80] = {.lex_state = 842}, - [81] = {.lex_state = 831}, - [82] = {.lex_state = 831}, + [81] = {.lex_state = 842}, + [82] = {.lex_state = 842}, [83] = {.lex_state = 842}, [84] = {.lex_state = 842}, - [85] = {.lex_state = 842}, + [85] = {.lex_state = 831}, [86] = {.lex_state = 842}, [87] = {.lex_state = 842}, - [88] = {.lex_state = 842}, - [89] = {.lex_state = 831}, + [88] = {.lex_state = 831}, + [89] = {.lex_state = 842}, [90] = {.lex_state = 831}, [91] = {.lex_state = 831}, [92] = {.lex_state = 831}, - [93] = {.lex_state = 842}, + [93] = {.lex_state = 831}, [94] = {.lex_state = 831}, [95] = {.lex_state = 831}, [96] = {.lex_state = 831}, [97] = {.lex_state = 831}, [98] = {.lex_state = 831}, - [99] = {.lex_state = 831}, + [99] = {.lex_state = 842}, [100] = {.lex_state = 831}, [101] = {.lex_state = 831}, [102] = {.lex_state = 831}, @@ -14375,10 +14388,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [105] = {.lex_state = 831}, [106] = {.lex_state = 831}, [107] = {.lex_state = 831}, - [108] = {.lex_state = 841}, + [108] = {.lex_state = 831}, [109] = {.lex_state = 831}, [110] = {.lex_state = 831}, - [111] = {.lex_state = 831}, + [111] = {.lex_state = 841}, [112] = {.lex_state = 831}, [113] = {.lex_state = 831}, [114] = {.lex_state = 831}, @@ -14392,402 +14405,402 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [122] = {.lex_state = 831}, [123] = {.lex_state = 831}, [124] = {.lex_state = 831}, - [125] = {.lex_state = 831}, - [126] = {.lex_state = 843}, + [125] = {.lex_state = 843}, + [126] = {.lex_state = 831}, [127] = {.lex_state = 843}, [128] = {.lex_state = 843}, [129] = {.lex_state = 843}, [130] = {.lex_state = 833}, - [131] = {.lex_state = 833}, + [131] = {.lex_state = 836}, [132] = {.lex_state = 833}, - [133] = {.lex_state = 834}, - [134] = {.lex_state = 830}, - [135] = {.lex_state = 834}, + [133] = {.lex_state = 833}, + [134] = {.lex_state = 834}, + [135] = {.lex_state = 836}, [136] = {.lex_state = 834}, [137] = {.lex_state = 830}, - [138] = {.lex_state = 836}, - [139] = {.lex_state = 836}, + [138] = {.lex_state = 830}, + [139] = {.lex_state = 834}, [140] = {.lex_state = 836}, - [141] = {.lex_state = 836}, - [142] = {.lex_state = 829}, - [143] = {.lex_state = 834}, - [144] = {.lex_state = 834}, - [145] = {.lex_state = 834}, - [146] = {.lex_state = 836}, - [147] = {.lex_state = 836}, - [148] = {.lex_state = 840}, - [149] = {.lex_state = 841}, - [150] = {.lex_state = 840}, - [151] = {.lex_state = 835}, - [152] = {.lex_state = 835}, - [153] = {.lex_state = 835}, - [154] = {.lex_state = 833}, - [155] = {.lex_state = 833}, - [156] = {.lex_state = 833}, + [141] = {.lex_state = 835}, + [142] = {.lex_state = 836}, + [143] = {.lex_state = 841}, + [144] = {.lex_state = 829}, + [145] = {.lex_state = 829}, + [146] = {.lex_state = 841}, + [147] = {.lex_state = 830}, + [148] = {.lex_state = 829}, + [149] = {.lex_state = 833}, + [150] = {.lex_state = 841}, + [151] = {.lex_state = 841}, + [152] = {.lex_state = 833}, + [153] = {.lex_state = 834}, + [154] = {.lex_state = 829}, + [155] = {.lex_state = 834}, + [156] = {.lex_state = 834}, [157] = {.lex_state = 840}, - [158] = {.lex_state = 829}, + [158] = {.lex_state = 836}, [159] = {.lex_state = 829}, - [160] = {.lex_state = 829}, - [161] = {.lex_state = 830}, - [162] = {.lex_state = 841}, - [163] = {.lex_state = 830}, - [164] = {.lex_state = 829}, + [160] = {.lex_state = 836}, + [161] = {.lex_state = 840}, + [162] = {.lex_state = 835}, + [163] = {.lex_state = 829}, + [164] = {.lex_state = 833}, [165] = {.lex_state = 829}, - [166] = {.lex_state = 829}, + [166] = {.lex_state = 835}, [167] = {.lex_state = 829}, - [168] = {.lex_state = 841}, - [169] = {.lex_state = 841}, - [170] = {.lex_state = 835}, - [171] = {.lex_state = 842}, - [172] = {.lex_state = 846}, - [173] = {.lex_state = 845}, - [174] = {.lex_state = 835}, - [175] = {.lex_state = 845}, - [176] = {.lex_state = 845}, - [177] = {.lex_state = 842}, - [178] = {.lex_state = 844}, - [179] = {.lex_state = 844}, - [180] = {.lex_state = 844}, - [181] = {.lex_state = 835}, - [182] = {.lex_state = 842}, - [183] = {.lex_state = 846}, - [184] = {.lex_state = 846}, - [185] = {.lex_state = 840}, + [168] = {.lex_state = 840}, + [169] = {.lex_state = 830}, + [170] = {.lex_state = 842}, + [171] = {.lex_state = 841}, + [172] = {.lex_state = 842}, + [173] = {.lex_state = 842}, + [174] = {.lex_state = 842}, + [175] = {.lex_state = 835}, + [176] = {.lex_state = 840}, + [177] = {.lex_state = 844}, + [178] = {.lex_state = 841}, + [179] = {.lex_state = 850}, + [180] = {.lex_state = 842}, + [181] = {.lex_state = 841}, + [182] = {.lex_state = 845}, + [183] = {.lex_state = 844}, + [184] = {.lex_state = 842}, + [185] = {.lex_state = 845}, [186] = {.lex_state = 842}, - [187] = {.lex_state = 842}, - [188] = {.lex_state = 842}, - [189] = {.lex_state = 842}, + [187] = {.lex_state = 845}, + [188] = {.lex_state = 848}, + [189] = {.lex_state = 841}, [190] = {.lex_state = 842}, - [191] = {.lex_state = 840}, - [192] = {.lex_state = 842}, - [193] = {.lex_state = 840}, - [194] = {.lex_state = 841}, - [195] = {.lex_state = 841}, - [196] = {.lex_state = 841}, - [197] = {.lex_state = 841}, - [198] = {.lex_state = 849}, - [199] = {.lex_state = 847}, - [200] = {.lex_state = 850}, - [201] = {.lex_state = 845}, - [202] = {.lex_state = 845}, + [191] = {.lex_state = 848}, + [192] = {.lex_state = 848}, + [193] = {.lex_state = 835}, + [194] = {.lex_state = 835}, + [195] = {.lex_state = 840}, + [196] = {.lex_state = 844}, + [197] = {.lex_state = 842}, + [198] = {.lex_state = 840}, + [199] = {.lex_state = 849}, + [200] = {.lex_state = 847}, + [201] = {.lex_state = 844}, + [202] = {.lex_state = 844}, [203] = {.lex_state = 849}, - [204] = {.lex_state = 845}, - [205] = {.lex_state = 846}, - [206] = {.lex_state = 846}, - [207] = {.lex_state = 849}, - [208] = {.lex_state = 846}, - [209] = {.lex_state = 844}, - [210] = {.lex_state = 844}, - [211] = {.lex_state = 847}, - [212] = {.lex_state = 844}, - [213] = {.lex_state = 847}, - [214] = {.lex_state = 850}, - [215] = {.lex_state = 841}, - [216] = {.lex_state = 850}, - [217] = {.lex_state = 849}, - [218] = {.lex_state = 850}, - [219] = {.lex_state = 841}, - [220] = {.lex_state = 847}, + [204] = {.lex_state = 850}, + [205] = {.lex_state = 845}, + [206] = {.lex_state = 850}, + [207] = {.lex_state = 848}, + [208] = {.lex_state = 850}, + [209] = {.lex_state = 848}, + [210] = {.lex_state = 845}, + [211] = {.lex_state = 849}, + [212] = {.lex_state = 845}, + [213] = {.lex_state = 850}, + [214] = {.lex_state = 847}, + [215] = {.lex_state = 848}, + [216] = {.lex_state = 844}, + [217] = {.lex_state = 847}, + [218] = {.lex_state = 19}, + [219] = {.lex_state = 19}, + [220] = {.lex_state = 850}, [221] = {.lex_state = 847}, - [222] = {.lex_state = 850}, - [223] = {.lex_state = 847}, - [224] = {.lex_state = 849}, - [225] = {.lex_state = 849}, - [226] = {.lex_state = 841}, - [227] = {.lex_state = 19}, - [228] = {.lex_state = 829}, + [222] = {.lex_state = 841}, + [223] = {.lex_state = 850}, + [224] = {.lex_state = 850}, + [225] = {.lex_state = 850}, + [226] = {.lex_state = 850}, + [227] = {.lex_state = 850}, + [228] = {.lex_state = 850}, [229] = {.lex_state = 850}, - [230] = {.lex_state = 829}, - [231] = {.lex_state = 829}, - [232] = {.lex_state = 829}, - [233] = {.lex_state = 850}, - [234] = {.lex_state = 831}, - [235] = {.lex_state = 829}, - [236] = {.lex_state = 841}, - [237] = {.lex_state = 829}, + [230] = {.lex_state = 850}, + [231] = {.lex_state = 847}, + [232] = {.lex_state = 849}, + [233] = {.lex_state = 841}, + [234] = {.lex_state = 850}, + [235] = {.lex_state = 849}, + [236] = {.lex_state = 849}, + [237] = {.lex_state = 850}, [238] = {.lex_state = 850}, - [239] = {.lex_state = 850}, - [240] = {.lex_state = 19}, - [241] = {.lex_state = 841}, + [239] = {.lex_state = 19}, + [240] = {.lex_state = 850}, + [241] = {.lex_state = 19}, [242] = {.lex_state = 850}, - [243] = {.lex_state = 841}, - [244] = {.lex_state = 841}, - [245] = {.lex_state = 829}, - [246] = {.lex_state = 19}, - [247] = {.lex_state = 19}, - [248] = {.lex_state = 850}, - [249] = {.lex_state = 841}, + [243] = {.lex_state = 850}, + [244] = {.lex_state = 19}, + [245] = {.lex_state = 19}, + [246] = {.lex_state = 847}, + [247] = {.lex_state = 841}, + [248] = {.lex_state = 829}, + [249] = {.lex_state = 850}, [250] = {.lex_state = 850}, - [251] = {.lex_state = 850}, - [252] = {.lex_state = 841}, + [251] = {.lex_state = 829}, + [252] = {.lex_state = 850}, [253] = {.lex_state = 850}, - [254] = {.lex_state = 841}, - [255] = {.lex_state = 19}, - [256] = {.lex_state = 19}, - [257] = {.lex_state = 841}, - [258] = {.lex_state = 850}, + [254] = {.lex_state = 831}, + [255] = {.lex_state = 841}, + [256] = {.lex_state = 829}, + [257] = {.lex_state = 829}, + [258] = {.lex_state = 841}, [259] = {.lex_state = 829}, - [260] = {.lex_state = 841}, - [261] = {.lex_state = 850}, + [260] = {.lex_state = 829}, + [261] = {.lex_state = 841}, [262] = {.lex_state = 850}, - [263] = {.lex_state = 850}, - [264] = {.lex_state = 850}, - [265] = {.lex_state = 850}, + [263] = {.lex_state = 841}, + [264] = {.lex_state = 829}, + [265] = {.lex_state = 841}, [266] = {.lex_state = 841}, - [267] = {.lex_state = 829}, + [267] = {.lex_state = 841}, [268] = {.lex_state = 841}, - [269] = {.lex_state = 841}, - [270] = {.lex_state = 841}, + [269] = {.lex_state = 829}, + [270] = {.lex_state = 850}, [271] = {.lex_state = 841}, [272] = {.lex_state = 841}, - [273] = {.lex_state = 850}, - [274] = {.lex_state = 850}, + [273] = {.lex_state = 829}, + [274] = {.lex_state = 841}, [275] = {.lex_state = 841}, [276] = {.lex_state = 841}, [277] = {.lex_state = 841}, - [278] = {.lex_state = 841}, + [278] = {.lex_state = 830}, [279] = {.lex_state = 841}, [280] = {.lex_state = 841}, - [281] = {.lex_state = 841}, + [281] = {.lex_state = 829}, [282] = {.lex_state = 841}, [283] = {.lex_state = 841}, - [284] = {.lex_state = 841}, + [284] = {.lex_state = 829}, [285] = {.lex_state = 841}, [286] = {.lex_state = 829}, - [287] = {.lex_state = 829}, - [288] = {.lex_state = 829}, - [289] = {.lex_state = 850}, - [290] = {.lex_state = 831}, - [291] = {.lex_state = 850}, - [292] = {.lex_state = 837}, + [287] = {.lex_state = 831}, + [288] = {.lex_state = 830}, + [289] = {.lex_state = 841}, + [290] = {.lex_state = 841}, + [291] = {.lex_state = 841}, + [292] = {.lex_state = 841}, [293] = {.lex_state = 841}, [294] = {.lex_state = 841}, - [295] = {.lex_state = 850}, - [296] = {.lex_state = 841}, - [297] = {.lex_state = 837}, - [298] = {.lex_state = 841}, + [295] = {.lex_state = 841}, + [296] = {.lex_state = 829}, + [297] = {.lex_state = 829}, + [298] = {.lex_state = 829}, [299] = {.lex_state = 841}, [300] = {.lex_state = 841}, - [301] = {.lex_state = 829}, - [302] = {.lex_state = 829}, - [303] = {.lex_state = 837}, + [301] = {.lex_state = 841}, + [302] = {.lex_state = 841}, + [303] = {.lex_state = 829}, [304] = {.lex_state = 829}, - [305] = {.lex_state = 841}, + [305] = {.lex_state = 829}, [306] = {.lex_state = 841}, - [307] = {.lex_state = 841}, - [308] = {.lex_state = 850}, - [309] = {.lex_state = 829}, + [307] = {.lex_state = 837}, + [308] = {.lex_state = 841}, + [309] = {.lex_state = 837}, [310] = {.lex_state = 829}, [311] = {.lex_state = 841}, - [312] = {.lex_state = 841}, - [313] = {.lex_state = 841}, + [312] = {.lex_state = 829}, + [313] = {.lex_state = 837}, [314] = {.lex_state = 829}, - [315] = {.lex_state = 829}, + [315] = {.lex_state = 841}, [316] = {.lex_state = 829}, - [317] = {.lex_state = 829}, - [318] = {.lex_state = 829}, + [317] = {.lex_state = 841}, + [318] = {.lex_state = 841}, [319] = {.lex_state = 829}, - [320] = {.lex_state = 829}, - [321] = {.lex_state = 829}, + [320] = {.lex_state = 841}, + [321] = {.lex_state = 841}, [322] = {.lex_state = 829}, - [323] = {.lex_state = 841}, + [323] = {.lex_state = 829}, [324] = {.lex_state = 829}, - [325] = {.lex_state = 830}, - [326] = {.lex_state = 830}, - [327] = {.lex_state = 829}, + [325] = {.lex_state = 829}, + [326] = {.lex_state = 829}, + [327] = {.lex_state = 841}, [328] = {.lex_state = 829}, [329] = {.lex_state = 829}, [330] = {.lex_state = 841}, - [331] = {.lex_state = 831}, - [332] = {.lex_state = 841}, + [331] = {.lex_state = 829}, + [332] = {.lex_state = 829}, [333] = {.lex_state = 841}, [334] = {.lex_state = 841}, [335] = {.lex_state = 841}, - [336] = {.lex_state = 829}, + [336] = {.lex_state = 838}, [337] = {.lex_state = 841}, - [338] = {.lex_state = 841}, - [339] = {.lex_state = 837}, - [340] = {.lex_state = 841}, - [341] = {.lex_state = 841}, + [338] = {.lex_state = 830}, + [339] = {.lex_state = 841}, + [340] = {.lex_state = 831}, + [341] = {.lex_state = 837}, [342] = {.lex_state = 841}, - [343] = {.lex_state = 829}, + [343] = {.lex_state = 841}, [344] = {.lex_state = 841}, - [345] = {.lex_state = 830}, + [345] = {.lex_state = 838}, [346] = {.lex_state = 841}, - [347] = {.lex_state = 841}, + [347] = {.lex_state = 837}, [348] = {.lex_state = 841}, [349] = {.lex_state = 841}, [350] = {.lex_state = 841}, - [351] = {.lex_state = 841}, - [352] = {.lex_state = 841}, - [353] = {.lex_state = 830}, + [351] = {.lex_state = 829}, + [352] = {.lex_state = 837}, + [353] = {.lex_state = 841}, [354] = {.lex_state = 841}, - [355] = {.lex_state = 829}, - [356] = {.lex_state = 838}, - [357] = {.lex_state = 838}, - [358] = {.lex_state = 837}, + [355] = {.lex_state = 841}, + [356] = {.lex_state = 841}, + [357] = {.lex_state = 830}, + [358] = {.lex_state = 838}, [359] = {.lex_state = 841}, - [360] = {.lex_state = 838}, + [360] = {.lex_state = 841}, [361] = {.lex_state = 841}, - [362] = {.lex_state = 837}, + [362] = {.lex_state = 841}, [363] = {.lex_state = 832}, - [364] = {.lex_state = 839}, - [365] = {.lex_state = 839}, - [366] = {.lex_state = 832}, - [367] = {.lex_state = 831}, + [364] = {.lex_state = 841}, + [365] = {.lex_state = 832}, + [366] = {.lex_state = 838}, + [367] = {.lex_state = 832}, [368] = {.lex_state = 839}, [369] = {.lex_state = 829}, - [370] = {.lex_state = 832}, + [370] = {.lex_state = 838}, [371] = {.lex_state = 838}, - [372] = {.lex_state = 841}, - [373] = {.lex_state = 838}, + [372] = {.lex_state = 831}, + [373] = {.lex_state = 839}, [374] = {.lex_state = 829}, - [375] = {.lex_state = 838}, - [376] = {.lex_state = 831}, - [377] = {.lex_state = 842}, - [378] = {.lex_state = 848}, + [375] = {.lex_state = 831}, + [376] = {.lex_state = 839}, + [377] = {.lex_state = 843}, + [378] = {.lex_state = 843}, [379] = {.lex_state = 839}, - [380] = {.lex_state = 839}, - [381] = {.lex_state = 841}, - [382] = {.lex_state = 842}, - [383] = {.lex_state = 839}, - [384] = {.lex_state = 848}, - [385] = {.lex_state = 843}, - [386] = {.lex_state = 848}, - [387] = {.lex_state = 843}, - [388] = {.lex_state = 831}, - [389] = {.lex_state = 830}, - [390] = {.lex_state = 830}, - [391] = {.lex_state = 843}, + [380] = {.lex_state = 831}, + [381] = {.lex_state = 842}, + [382] = {.lex_state = 843}, + [383] = {.lex_state = 830}, + [384] = {.lex_state = 839}, + [385] = {.lex_state = 839}, + [386] = {.lex_state = 842}, + [387] = {.lex_state = 846}, + [388] = {.lex_state = 830}, + [389] = {.lex_state = 846}, + [390] = {.lex_state = 841}, + [391] = {.lex_state = 846}, [392] = {.lex_state = 830}, - [393] = {.lex_state = 843}, - [394] = {.lex_state = 843}, + [393] = {.lex_state = 830}, + [394] = {.lex_state = 12}, [395] = {.lex_state = 9}, - [396] = {.lex_state = 13}, - [397] = {.lex_state = 13}, - [398] = {.lex_state = 9}, - [399] = {.lex_state = 842}, - [400] = {.lex_state = 12}, - [401] = {.lex_state = 13}, - [402] = {.lex_state = 830}, - [403] = {.lex_state = 830}, - [404] = {.lex_state = 12}, + [396] = {.lex_state = 846}, + [397] = {.lex_state = 830}, + [398] = {.lex_state = 842}, + [399] = {.lex_state = 12}, + [400] = {.lex_state = 843}, + [401] = {.lex_state = 842}, + [402] = {.lex_state = 13}, + [403] = {.lex_state = 13}, + [404] = {.lex_state = 9}, [405] = {.lex_state = 830}, - [406] = {.lex_state = 848}, - [407] = {.lex_state = 830}, + [406] = {.lex_state = 12}, + [407] = {.lex_state = 846}, [408] = {.lex_state = 9}, [409] = {.lex_state = 843}, - [410] = {.lex_state = 12}, + [410] = {.lex_state = 846}, [411] = {.lex_state = 843}, - [412] = {.lex_state = 842}, - [413] = {.lex_state = 830}, - [414] = {.lex_state = 848}, + [412] = {.lex_state = 843}, + [413] = {.lex_state = 13}, + [414] = {.lex_state = 830}, [415] = {.lex_state = 843}, - [416] = {.lex_state = 848}, - [417] = {.lex_state = 843}, + [416] = {.lex_state = 830}, + [417] = {.lex_state = 830}, [418] = {.lex_state = 843}, [419] = {.lex_state = 830}, [420] = {.lex_state = 830}, - [421] = {.lex_state = 11}, - [422] = {.lex_state = 829}, - [423] = {.lex_state = 11}, - [424] = {.lex_state = 843}, - [425] = {.lex_state = 11}, - [426] = {.lex_state = 843}, + [421] = {.lex_state = 830}, + [422] = {.lex_state = 843}, + [423] = {.lex_state = 830}, + [424] = {.lex_state = 10}, + [425] = {.lex_state = 10}, + [426] = {.lex_state = 11}, [427] = {.lex_state = 830}, - [428] = {.lex_state = 830}, - [429] = {.lex_state = 830}, - [430] = {.lex_state = 10}, - [431] = {.lex_state = 842}, + [428] = {.lex_state = 832}, + [429] = {.lex_state = 842}, + [430] = {.lex_state = 830}, + [431] = {.lex_state = 11}, [432] = {.lex_state = 830}, - [433] = {.lex_state = 830}, + [433] = {.lex_state = 843}, [434] = {.lex_state = 830}, - [435] = {.lex_state = 10}, - [436] = {.lex_state = 830}, - [437] = {.lex_state = 832}, - [438] = {.lex_state = 830}, - [439] = {.lex_state = 10}, - [440] = {.lex_state = 842}, - [441] = {.lex_state = 843}, - [442] = {.lex_state = 830}, - [443] = {.lex_state = 843}, + [435] = {.lex_state = 830}, + [436] = {.lex_state = 832}, + [437] = {.lex_state = 843}, + [438] = {.lex_state = 10}, + [439] = {.lex_state = 832}, + [440] = {.lex_state = 830}, + [441] = {.lex_state = 830}, + [442] = {.lex_state = 843}, + [443] = {.lex_state = 842}, [444] = {.lex_state = 843}, [445] = {.lex_state = 830}, [446] = {.lex_state = 830}, [447] = {.lex_state = 830}, [448] = {.lex_state = 830}, - [449] = {.lex_state = 832}, + [449] = {.lex_state = 843}, [450] = {.lex_state = 843}, - [451] = {.lex_state = 832}, + [451] = {.lex_state = 843}, [452] = {.lex_state = 843}, - [453] = {.lex_state = 830}, - [454] = {.lex_state = 843}, - [455] = {.lex_state = 843}, - [456] = {.lex_state = 830}, + [453] = {.lex_state = 843}, + [454] = {.lex_state = 830}, + [455] = {.lex_state = 11}, + [456] = {.lex_state = 829}, [457] = {.lex_state = 8}, [458] = {.lex_state = 843}, - [459] = {.lex_state = 842}, - [460] = {.lex_state = 7}, - [461] = {.lex_state = 842}, + [459] = {.lex_state = 7}, + [460] = {.lex_state = 830}, + [461] = {.lex_state = 843}, [462] = {.lex_state = 842}, - [463] = {.lex_state = 843}, + [463] = {.lex_state = 830}, [464] = {.lex_state = 843}, - [465] = {.lex_state = 830}, - [466] = {.lex_state = 830}, - [467] = {.lex_state = 7}, - [468] = {.lex_state = 8}, - [469] = {.lex_state = 829}, - [470] = {.lex_state = 843}, + [465] = {.lex_state = 7}, + [466] = {.lex_state = 842}, + [467] = {.lex_state = 8}, + [468] = {.lex_state = 830}, + [469] = {.lex_state = 8}, + [470] = {.lex_state = 842}, [471] = {.lex_state = 843}, - [472] = {.lex_state = 842}, + [472] = {.lex_state = 830}, [473] = {.lex_state = 7}, - [474] = {.lex_state = 830}, - [475] = {.lex_state = 842}, - [476] = {.lex_state = 843}, - [477] = {.lex_state = 829}, - [478] = {.lex_state = 830}, + [474] = {.lex_state = 843}, + [475] = {.lex_state = 843}, + [476] = {.lex_state = 829}, + [477] = {.lex_state = 843}, + [478] = {.lex_state = 843}, [479] = {.lex_state = 843}, - [480] = {.lex_state = 842}, - [481] = {.lex_state = 8}, - [482] = {.lex_state = 843}, + [480] = {.lex_state = 843}, + [481] = {.lex_state = 842}, + [482] = {.lex_state = 842}, [483] = {.lex_state = 843}, - [484] = {.lex_state = 843}, - [485] = {.lex_state = 843}, - [486] = {.lex_state = 842}, + [484] = {.lex_state = 842}, + [485] = {.lex_state = 829}, + [486] = {.lex_state = 843}, [487] = {.lex_state = 842}, [488] = {.lex_state = 843}, [489] = {.lex_state = 14}, [490] = {.lex_state = 14}, [491] = {.lex_state = 14}, - [492] = {.lex_state = 829}, - [493] = {.lex_state = 842}, + [492] = {.lex_state = 842}, + [493] = {.lex_state = 829}, [494] = {.lex_state = 829}, - [495] = {.lex_state = 843}, - [496] = {.lex_state = 829}, - [497] = {.lex_state = 842}, + [495] = {.lex_state = 842}, + [496] = {.lex_state = 842}, + [497] = {.lex_state = 829}, [498] = {.lex_state = 829}, [499] = {.lex_state = 829}, [500] = {.lex_state = 829}, - [501] = {.lex_state = 829}, + [501] = {.lex_state = 830}, [502] = {.lex_state = 830}, [503] = {.lex_state = 829}, - [504] = {.lex_state = 829}, - [505] = {.lex_state = 830}, - [506] = {.lex_state = 830}, - [507] = {.lex_state = 829}, - [508] = {.lex_state = 829}, + [504] = {.lex_state = 830}, + [505] = {.lex_state = 829}, + [506] = {.lex_state = 829}, + [507] = {.lex_state = 830}, + [508] = {.lex_state = 830}, [509] = {.lex_state = 830}, - [510] = {.lex_state = 830}, - [511] = {.lex_state = 829}, - [512] = {.lex_state = 830}, - [513] = {.lex_state = 829}, - [514] = {.lex_state = 830}, + [510] = {.lex_state = 829}, + [511] = {.lex_state = 830}, + [512] = {.lex_state = 829}, + [513] = {.lex_state = 830}, + [514] = {.lex_state = 829}, [515] = {.lex_state = 830}, - [516] = {.lex_state = 830}, + [516] = {.lex_state = 829}, [517] = {.lex_state = 830}, [518] = {.lex_state = 830}, - [519] = {.lex_state = 829}, - [520] = {.lex_state = 830}, + [519] = {.lex_state = 830}, + [520] = {.lex_state = 829}, [521] = {.lex_state = 830}, [522] = {.lex_state = 830}, [523] = {.lex_state = 830}, @@ -14795,16 +14808,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [525] = {.lex_state = 829}, [526] = {.lex_state = 830}, [527] = {.lex_state = 830}, - [528] = {.lex_state = 830}, - [529] = {.lex_state = 829}, + [528] = {.lex_state = 829}, + [529] = {.lex_state = 830}, [530] = {.lex_state = 829}, [531] = {.lex_state = 830}, - [532] = {.lex_state = 830}, - [533] = {.lex_state = 829}, + [532] = {.lex_state = 829}, + [533] = {.lex_state = 830}, [534] = {.lex_state = 829}, - [535] = {.lex_state = 829}, + [535] = {.lex_state = 830}, [536] = {.lex_state = 829}, - [537] = {.lex_state = 830}, + [537] = {.lex_state = 829}, [538] = {.lex_state = 830}, [539] = {.lex_state = 830}, [540] = {.lex_state = 830}, @@ -14886,20 +14899,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [616] = {.lex_state = 15}, [617] = {.lex_state = 18}, [618] = {.lex_state = 18}, - [619] = {.lex_state = 21}, + [619] = {.lex_state = 15}, [620] = {.lex_state = 15}, - [621] = {.lex_state = 21}, - [622] = {.lex_state = 20}, - [623] = {.lex_state = 15}, - [624] = {.lex_state = 21}, - [625] = {.lex_state = 21}, - [626] = {.lex_state = 15}, - [627] = {.lex_state = 21}, - [628] = {.lex_state = 15}, - [629] = {.lex_state = 15}, + [621] = {.lex_state = 15}, + [622] = {.lex_state = 21}, + [623] = {.lex_state = 21}, + [624] = {.lex_state = 15}, + [625] = {.lex_state = 20}, + [626] = {.lex_state = 21}, + [627] = {.lex_state = 15}, + [628] = {.lex_state = 21}, + [629] = {.lex_state = 20}, [630] = {.lex_state = 21}, - [631] = {.lex_state = 15}, - [632] = {.lex_state = 20}, + [631] = {.lex_state = 21}, + [632] = {.lex_state = 15}, [633] = {.lex_state = 15}, [634] = {.lex_state = 15}, [635] = {.lex_state = 15}, @@ -15039,59 +15052,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [769] = {.lex_state = 0}, [770] = {.lex_state = 0}, [771] = {.lex_state = 0}, - [772] = {.lex_state = 22}, - [773] = {.lex_state = 0}, + [772] = {.lex_state = 0}, + [773] = {.lex_state = 22}, [774] = {.lex_state = 0}, - [775] = {.lex_state = 0}, - [776] = {.lex_state = 15}, + [775] = {.lex_state = 15}, + [776] = {.lex_state = 0}, [777] = {.lex_state = 15}, [778] = {.lex_state = 15}, [779] = {.lex_state = 15}, [780] = {.lex_state = 15}, - [781] = {.lex_state = 15}, - [782] = {.lex_state = 0}, + [781] = {.lex_state = 0}, + [782] = {.lex_state = 15}, [783] = {.lex_state = 15}, [784] = {.lex_state = 0}, [785] = {.lex_state = 0}, [786] = {.lex_state = 0}, - [787] = {.lex_state = 0}, + [787] = {.lex_state = 829}, [788] = {.lex_state = 0}, [789] = {.lex_state = 0}, - [790] = {.lex_state = 829}, + [790] = {.lex_state = 0}, [791] = {.lex_state = 0}, - [792] = {.lex_state = 0}, + [792] = {.lex_state = 831}, [793] = {.lex_state = 0}, [794] = {.lex_state = 831}, [795] = {.lex_state = 0}, - [796] = {.lex_state = 831}, + [796] = {.lex_state = 0}, [797] = {.lex_state = 831}, [798] = {.lex_state = 831}, [799] = {.lex_state = 831}, [800] = {.lex_state = 0}, [801] = {.lex_state = 831}, [802] = {.lex_state = 831}, - [803] = {.lex_state = 851}, - [804] = {.lex_state = 831}, - [805] = {.lex_state = 0}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 851}, + [803] = {.lex_state = 831}, + [804] = {.lex_state = 0}, + [805] = {.lex_state = 831}, + [806] = {.lex_state = 851}, + [807] = {.lex_state = 831}, [808] = {.lex_state = 831}, - [809] = {.lex_state = 0}, - [810] = {.lex_state = 831}, + [809] = {.lex_state = 831}, + [810] = {.lex_state = 0}, [811] = {.lex_state = 851}, - [812] = {.lex_state = 831}, - [813] = {.lex_state = 831}, + [812] = {.lex_state = 851}, + [813] = {.lex_state = 0}, [814] = {.lex_state = 0}, [815] = {.lex_state = 0}, [816] = {.lex_state = 0}, [817] = {.lex_state = 0}, - [818] = {.lex_state = 852}, + [818] = {.lex_state = 0}, [819] = {.lex_state = 0}, - [820] = {.lex_state = 0}, - [821] = {.lex_state = 0}, - [822] = {.lex_state = 852}, - [823] = {.lex_state = 0}, - [824] = {.lex_state = 852}, + [820] = {.lex_state = 852}, + [821] = {.lex_state = 852}, + [822] = {.lex_state = 0}, + [823] = {.lex_state = 852}, + [824] = {.lex_state = 0}, [825] = {.lex_state = 0}, [826] = {.lex_state = 0}, [827] = {.lex_state = 0}, @@ -15115,28 +15128,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [845] = {.lex_state = 0}, [846] = {.lex_state = 0}, [847] = {.lex_state = 0}, - [848] = {.lex_state = 853}, + [848] = {.lex_state = 0}, [849] = {.lex_state = 0}, [850] = {.lex_state = 0}, - [851] = {.lex_state = 0}, + [851] = {.lex_state = 853}, [852] = {.lex_state = 0}, [853] = {.lex_state = 0}, [854] = {.lex_state = 0}, [855] = {.lex_state = 0}, - [856] = {.lex_state = 0}, + [856] = {.lex_state = 842}, [857] = {.lex_state = 0}, [858] = {.lex_state = 0}, [859] = {.lex_state = 0}, [860] = {.lex_state = 0}, - [861] = {.lex_state = 0}, - [862] = {.lex_state = 0}, - [863] = {.lex_state = 842}, + [861] = {.lex_state = 842}, + [862] = {.lex_state = 842}, + [863] = {.lex_state = 0}, [864] = {.lex_state = 0}, [865] = {.lex_state = 0}, [866] = {.lex_state = 0}, - [867] = {.lex_state = 842}, + [867] = {.lex_state = 0}, [868] = {.lex_state = 0}, - [869] = {.lex_state = 842}, + [869] = {.lex_state = 0}, [870] = {.lex_state = 0}, [871] = {.lex_state = 0}, [872] = {.lex_state = 0}, @@ -15156,11 +15169,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [886] = {.lex_state = 0}, [887] = {.lex_state = 0}, [888] = {.lex_state = 0}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 0}, + [889] = {.lex_state = 31}, + [890] = {.lex_state = 31}, [891] = {.lex_state = 0}, [892] = {.lex_state = 0}, - [893] = {.lex_state = 31}, + [893] = {.lex_state = 0}, [894] = {.lex_state = 0}, [895] = {.lex_state = 0}, [896] = {.lex_state = 0}, @@ -15170,77 +15183,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [900] = {.lex_state = 0}, [901] = {.lex_state = 0}, [902] = {.lex_state = 0}, - [903] = {.lex_state = 31}, + [903] = {.lex_state = 0}, [904] = {.lex_state = 0}, [905] = {.lex_state = 0}, - [906] = {.lex_state = 30}, - [907] = {.lex_state = 831}, - [908] = {.lex_state = 30}, - [909] = {.lex_state = 30}, + [906] = {.lex_state = 829}, + [907] = {.lex_state = 0}, + [908] = {.lex_state = 842}, + [909] = {.lex_state = 35}, [910] = {.lex_state = 0}, [911] = {.lex_state = 0}, [912] = {.lex_state = 0}, - [913] = {.lex_state = 829}, + [913] = {.lex_state = 0}, [914] = {.lex_state = 0}, [915] = {.lex_state = 30}, - [916] = {.lex_state = 842}, + [916] = {.lex_state = 0}, [917] = {.lex_state = 30}, [918] = {.lex_state = 0}, - [919] = {.lex_state = 30}, - [920] = {.lex_state = 829}, - [921] = {.lex_state = 831}, + [919] = {.lex_state = 842}, + [920] = {.lex_state = 30}, + [921] = {.lex_state = 0}, [922] = {.lex_state = 0}, - [923] = {.lex_state = 0}, + [923] = {.lex_state = 829}, [924] = {.lex_state = 0}, - [925] = {.lex_state = 829}, + [925] = {.lex_state = 0}, [926] = {.lex_state = 30}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 30}, - [929] = {.lex_state = 0}, + [927] = {.lex_state = 30}, + [928] = {.lex_state = 0}, + [929] = {.lex_state = 30}, [930] = {.lex_state = 831}, - [931] = {.lex_state = 829}, + [931] = {.lex_state = 831}, [932] = {.lex_state = 0}, - [933] = {.lex_state = 30}, - [934] = {.lex_state = 0}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 842}, + [933] = {.lex_state = 829}, + [934] = {.lex_state = 831}, + [935] = {.lex_state = 829}, + [936] = {.lex_state = 0}, [937] = {.lex_state = 0}, [938] = {.lex_state = 829}, - [939] = {.lex_state = 0}, - [940] = {.lex_state = 831}, + [939] = {.lex_state = 30}, + [940] = {.lex_state = 30}, [941] = {.lex_state = 0}, [942] = {.lex_state = 0}, - [943] = {.lex_state = 30}, - [944] = {.lex_state = 0}, + [943] = {.lex_state = 0}, + [944] = {.lex_state = 30}, [945] = {.lex_state = 0}, - [946] = {.lex_state = 0}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0}, + [946] = {.lex_state = 35}, + [947] = {.lex_state = 831}, + [948] = {.lex_state = 30}, [949] = {.lex_state = 0}, - [950] = {.lex_state = 831}, + [950] = {.lex_state = 0}, [951] = {.lex_state = 0}, [952] = {.lex_state = 0}, [953] = {.lex_state = 0}, [954] = {.lex_state = 831}, - [955] = {.lex_state = 831}, - [956] = {.lex_state = 831}, + [955] = {.lex_state = 0}, + [956] = {.lex_state = 0}, [957] = {.lex_state = 0}, - [958] = {.lex_state = 831}, - [959] = {.lex_state = 35}, - [960] = {.lex_state = 35}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 0}, + [958] = {.lex_state = 0}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 831}, + [961] = {.lex_state = 35}, + [962] = {.lex_state = 31}, [963] = {.lex_state = 0}, [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, + [965] = {.lex_state = 31}, [966] = {.lex_state = 0}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 31}, + [968] = {.lex_state = 831}, [969] = {.lex_state = 831}, - [970] = {.lex_state = 0}, + [970] = {.lex_state = 831}, [971] = {.lex_state = 0}, [972] = {.lex_state = 0}, - [973] = {.lex_state = 35}, + [973] = {.lex_state = 0}, [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, [976] = {.lex_state = 0}, @@ -15251,18 +15264,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [981] = {.lex_state = 0}, [982] = {.lex_state = 0}, [983] = {.lex_state = 0}, - [984] = {.lex_state = 31}, - [985] = {.lex_state = 0}, + [984] = {.lex_state = 0}, + [985] = {.lex_state = 831}, [986] = {.lex_state = 0}, [987] = {.lex_state = 30}, [988] = {.lex_state = 0}, [989] = {.lex_state = 0}, - [990] = {.lex_state = 0}, + [990] = {.lex_state = 30}, [991] = {.lex_state = 0}, [992] = {.lex_state = 0}, - [993] = {.lex_state = 30}, - [994] = {.lex_state = 829}, - [995] = {.lex_state = 0}, + [993] = {.lex_state = 0}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 829}, [996] = {.lex_state = 0}, [997] = {.lex_state = 0}, [998] = {.lex_state = 0}, @@ -15270,111 +15283,111 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1000] = {.lex_state = 0}, [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 829}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 0}, + [1003] = {.lex_state = 0}, + [1004] = {.lex_state = 829}, + [1005] = {.lex_state = 829}, + [1006] = {.lex_state = 829}, [1007] = {.lex_state = 0}, [1008] = {.lex_state = 0}, [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 829}, + [1010] = {.lex_state = 0}, [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 829}, - [1013] = {.lex_state = 829}, - [1014] = {.lex_state = 829}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0}, + [1012] = {.lex_state = 0}, + [1013] = {.lex_state = 0}, + [1014] = {.lex_state = 0}, + [1015] = {.lex_state = 829}, + [1016] = {.lex_state = 829}, [1017] = {.lex_state = 0}, [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0}, [1020] = {.lex_state = 0}, [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 0}, + [1022] = {.lex_state = 33}, + [1023] = {.lex_state = 33}, [1024] = {.lex_state = 0}, [1025] = {.lex_state = 33}, [1026] = {.lex_state = 33}, - [1027] = {.lex_state = 0}, + [1027] = {.lex_state = 829}, [1028] = {.lex_state = 33}, [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 33}, - [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 829}, + [1030] = {.lex_state = 0}, + [1031] = {.lex_state = 33}, + [1032] = {.lex_state = 829}, + [1033] = {.lex_state = 0}, [1034] = {.lex_state = 33}, [1035] = {.lex_state = 33}, [1036] = {.lex_state = 33}, - [1037] = {.lex_state = 33}, + [1037] = {.lex_state = 0}, [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 33}, - [1040] = {.lex_state = 0}, + [1039] = {.lex_state = 0}, + [1040] = {.lex_state = 33}, [1041] = {.lex_state = 0}, [1042] = {.lex_state = 33}, [1043] = {.lex_state = 33}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 33}, + [1044] = {.lex_state = 829}, + [1045] = {.lex_state = 33}, + [1046] = {.lex_state = 829}, + [1047] = {.lex_state = 0}, [1048] = {.lex_state = 33}, - [1049] = {.lex_state = 33}, - [1050] = {.lex_state = 33}, - [1051] = {.lex_state = 33}, + [1049] = {.lex_state = 0}, + [1050] = {.lex_state = 829}, + [1051] = {.lex_state = 0}, [1052] = {.lex_state = 33}, - [1053] = {.lex_state = 33}, + [1053] = {.lex_state = 0}, [1054] = {.lex_state = 33}, [1055] = {.lex_state = 33}, [1056] = {.lex_state = 829}, [1057] = {.lex_state = 33}, [1058] = {.lex_state = 33}, - [1059] = {.lex_state = 33}, - [1060] = {.lex_state = 33}, - [1061] = {.lex_state = 33}, - [1062] = {.lex_state = 33}, + [1059] = {.lex_state = 0}, + [1060] = {.lex_state = 0}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 0}, [1063] = {.lex_state = 33}, [1064] = {.lex_state = 0}, - [1065] = {.lex_state = 0}, + [1065] = {.lex_state = 33}, [1066] = {.lex_state = 33}, - [1067] = {.lex_state = 33}, - [1068] = {.lex_state = 33}, + [1067] = {.lex_state = 0}, + [1068] = {.lex_state = 0}, [1069] = {.lex_state = 33}, [1070] = {.lex_state = 33}, [1071] = {.lex_state = 33}, [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 0}, + [1073] = {.lex_state = 33}, [1074] = {.lex_state = 33}, - [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 33}, + [1075] = {.lex_state = 33}, + [1076] = {.lex_state = 0}, [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0}, + [1078] = {.lex_state = 33}, [1079] = {.lex_state = 33}, - [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 33}, - [1082] = {.lex_state = 829}, + [1080] = {.lex_state = 33}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 33}, [1083] = {.lex_state = 33}, [1084] = {.lex_state = 0}, [1085] = {.lex_state = 33}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 0}, + [1086] = {.lex_state = 33}, + [1087] = {.lex_state = 33}, [1088] = {.lex_state = 33}, [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 0}, + [1090] = {.lex_state = 33}, + [1091] = {.lex_state = 853}, + [1092] = {.lex_state = 33}, [1093] = {.lex_state = 0}, [1094] = {.lex_state = 33}, [1095] = {.lex_state = 33}, - [1096] = {.lex_state = 33}, - [1097] = {.lex_state = 829}, + [1096] = {.lex_state = 0}, + [1097] = {.lex_state = 0}, [1098] = {.lex_state = 33}, - [1099] = {.lex_state = 853}, - [1100] = {.lex_state = 829}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 829}, + [1099] = {.lex_state = 0}, + [1100] = {.lex_state = 0}, + [1101] = {.lex_state = 33}, + [1102] = {.lex_state = 33}, [1103] = {.lex_state = 0}, [1104] = {.lex_state = 0}, [1105] = {.lex_state = 0}, [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 829}, + [1107] = {.lex_state = 0}, [1108] = {.lex_state = 0}, [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, @@ -15416,7 +15429,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1146] = {.lex_state = 0}, [1147] = {.lex_state = 0}, [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 0}, + [1149] = {.lex_state = 829}, [1150] = {.lex_state = 0}, [1151] = {.lex_state = 0}, [1152] = {.lex_state = 0}, @@ -15444,15 +15457,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1174] = {.lex_state = 0}, [1175] = {.lex_state = 0}, [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 33}, + [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, [1179] = {.lex_state = 0}, [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, + [1181] = {.lex_state = 33}, [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 0}, + [1183] = {.lex_state = 33}, [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 33}, + [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, @@ -15462,8 +15475,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1192] = {.lex_state = 0}, [1193] = {.lex_state = 0}, [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 33}, + [1195] = {.lex_state = 33}, + [1196] = {.lex_state = 0}, [1197] = {.lex_state = 0}, [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, @@ -15472,7 +15485,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, + [1205] = {.lex_state = 23}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, [1208] = {.lex_state = 0}, @@ -15483,11 +15496,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1213] = {.lex_state = 0}, [1214] = {.lex_state = 23}, [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 0}, + [1216] = {.lex_state = 23}, [1217] = {.lex_state = 0}, [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 23}, + [1220] = {.lex_state = 0}, [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, [1223] = {.lex_state = 0}, @@ -15495,17 +15508,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1225] = {.lex_state = 0}, [1226] = {.lex_state = 0}, [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 23}, + [1228] = {.lex_state = 0}, [1229] = {.lex_state = 0}, [1230] = {.lex_state = 0}, [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 23}, + [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, + [1235] = {.lex_state = 23}, [1236] = {.lex_state = 0}, [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, + [1238] = {.lex_state = 23}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, [1241] = {.lex_state = 0}, @@ -15514,13 +15527,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1244] = {.lex_state = 0}, [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 23}, - [1248] = {.lex_state = 23}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0}, + [1253] = {.lex_state = 23}, [1254] = {.lex_state = 0}, [1255] = {.lex_state = 0}, [1256] = {.lex_state = 0}, @@ -15530,9 +15543,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1260] = {.lex_state = 0}, [1261] = {.lex_state = 0}, [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 37}, + [1263] = {.lex_state = 37}, + [1264] = {.lex_state = 37}, + [1265] = {.lex_state = 23}, [1266] = {.lex_state = 0}, [1267] = {.lex_state = 0}, [1268] = {.lex_state = 0}, @@ -15542,38 +15555,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1272] = {.lex_state = 0}, [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 23}, + [1275] = {.lex_state = 0}, [1276] = {.lex_state = 0}, [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 830}, + [1279] = {.lex_state = 31}, [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 38}, - [1282] = {.lex_state = 0}, + [1281] = {.lex_state = 0}, + [1282] = {.lex_state = 32}, [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, + [1284] = {.lex_state = 23}, [1285] = {.lex_state = 0}, [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 32}, + [1287] = {.lex_state = 0}, [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 31}, + [1289] = {.lex_state = 0}, [1290] = {.lex_state = 0}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 38}, + [1292] = {.lex_state = 32}, + [1293] = {.lex_state = 0}, [1294] = {.lex_state = 0}, [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 830}, + [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 32}, - [1300] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 830}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 830}, + [1303] = {.lex_state = 23}, [1304] = {.lex_state = 0}, [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 23}, + [1306] = {.lex_state = 31}, [1307] = {.lex_state = 0}, [1308] = {.lex_state = 0}, [1309] = {.lex_state = 0}, @@ -15581,13 +15594,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1311] = {.lex_state = 0}, [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, + [1314] = {.lex_state = 38}, [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 32}, - [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 38}, + [1316] = {.lex_state = 23}, + [1317] = {.lex_state = 23}, + [1318] = {.lex_state = 0}, + [1319] = {.lex_state = 32}, + [1320] = {.lex_state = 0}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, [1323] = {.lex_state = 0}, @@ -15597,7 +15610,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 0}, + [1330] = {.lex_state = 23}, [1331] = {.lex_state = 0}, [1332] = {.lex_state = 0}, [1333] = {.lex_state = 0}, @@ -15607,118 +15620,118 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1337] = {.lex_state = 0}, [1338] = {.lex_state = 0}, [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 38}, + [1340] = {.lex_state = 23}, [1341] = {.lex_state = 0}, [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 23}, + [1343] = {.lex_state = 0}, [1344] = {.lex_state = 0}, [1345] = {.lex_state = 0}, [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 23}, - [1349] = {.lex_state = 0}, + [1347] = {.lex_state = 38}, + [1348] = {.lex_state = 0}, + [1349] = {.lex_state = 38}, [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 0}, + [1351] = {.lex_state = 38}, [1352] = {.lex_state = 0}, [1353] = {.lex_state = 0}, [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 23}, + [1355] = {.lex_state = 38}, [1356] = {.lex_state = 0}, [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, + [1358] = {.lex_state = 38}, [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 38}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 0}, + [1360] = {.lex_state = 0}, + [1361] = {.lex_state = 23}, + [1362] = {.lex_state = 38}, [1363] = {.lex_state = 0}, [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 32}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 23}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0}, + [1365] = {.lex_state = 0}, + [1366] = {.lex_state = 830}, + [1367] = {.lex_state = 0}, + [1368] = {.lex_state = 23}, + [1369] = {.lex_state = 38}, [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 23}, + [1371] = {.lex_state = 0}, [1372] = {.lex_state = 0}, [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 830}, + [1374] = {.lex_state = 0}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, [1377] = {.lex_state = 0}, [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 38}, - [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 38}, - [1383] = {.lex_state = 38}, - [1384] = {.lex_state = 32}, - [1385] = {.lex_state = 0}, + [1379] = {.lex_state = 0}, + [1380] = {.lex_state = 830}, + [1381] = {.lex_state = 38}, + [1382] = {.lex_state = 0}, + [1383] = {.lex_state = 0}, + [1384] = {.lex_state = 23}, + [1385] = {.lex_state = 38}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 23}, - [1390] = {.lex_state = 830}, + [1389] = {.lex_state = 830}, + [1390] = {.lex_state = 32}, [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 23}, - [1393] = {.lex_state = 23}, + [1392] = {.lex_state = 38}, + [1393] = {.lex_state = 38}, [1394] = {.lex_state = 0}, [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 38}, + [1396] = {.lex_state = 830}, [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 830}, + [1398] = {.lex_state = 32}, + [1399] = {.lex_state = 23}, [1400] = {.lex_state = 0}, [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 38}, - [1403] = {.lex_state = 38}, - [1404] = {.lex_state = 32}, - [1405] = {.lex_state = 31}, + [1402] = {.lex_state = 0}, + [1403] = {.lex_state = 32}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 0}, [1406] = {.lex_state = 0}, [1407] = {.lex_state = 0}, [1408] = {.lex_state = 0}, [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 23}, + [1410] = {.lex_state = 830}, + [1411] = {.lex_state = 0}, [1412] = {.lex_state = 0}, [1413] = {.lex_state = 0}, [1414] = {.lex_state = 23}, - [1415] = {.lex_state = 23}, - [1416] = {.lex_state = 38}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 32}, + [1419] = {.lex_state = 23}, [1420] = {.lex_state = 830}, [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 829}, - [1425] = {.lex_state = 0}, + [1424] = {.lex_state = 0}, + [1425] = {.lex_state = 32}, [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 0}, + [1427] = {.lex_state = 23}, [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 0}, + [1429] = {.lex_state = 23}, [1430] = {.lex_state = 0}, [1431] = {.lex_state = 0}, [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 0}, + [1433] = {.lex_state = 23}, [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, + [1435] = {.lex_state = 23}, [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 36}, + [1437] = {.lex_state = 23}, + [1438] = {.lex_state = 0}, [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 34}, - [1441] = {.lex_state = 0}, + [1440] = {.lex_state = 0}, + [1441] = {.lex_state = 39}, [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 40}, - [1444] = {.lex_state = 829}, + [1443] = {.lex_state = 0}, + [1444] = {.lex_state = 23}, [1445] = {.lex_state = 0}, [1446] = {.lex_state = 0}, [1447] = {.lex_state = 0}, [1448] = {.lex_state = 0}, [1449] = {.lex_state = 0}, [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 23}, + [1451] = {.lex_state = 0}, [1452] = {.lex_state = 0}, [1453] = {.lex_state = 0}, [1454] = {.lex_state = 0}, @@ -15727,39 +15740,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1457] = {.lex_state = 0}, [1458] = {.lex_state = 0}, [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 831}, - [1461] = {.lex_state = 831}, - [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 831}, - [1464] = {.lex_state = 831}, + [1460] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 23}, + [1463] = {.lex_state = 23}, + [1464] = {.lex_state = 23}, [1465] = {.lex_state = 0}, [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 831}, - [1468] = {.lex_state = 831}, - [1469] = {.lex_state = 0}, + [1467] = {.lex_state = 0}, + [1468] = {.lex_state = 40}, + [1469] = {.lex_state = 829}, [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 831}, - [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 831}, + [1471] = {.lex_state = 0}, + [1472] = {.lex_state = 23}, + [1473] = {.lex_state = 0}, [1474] = {.lex_state = 0}, [1475] = {.lex_state = 0}, [1476] = {.lex_state = 0}, [1477] = {.lex_state = 0}, [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 23}, - [1481] = {.lex_state = 23}, + [1479] = {.lex_state = 23}, + [1480] = {.lex_state = 0}, + [1481] = {.lex_state = 0}, [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 830}, + [1483] = {.lex_state = 0}, [1484] = {.lex_state = 23}, - [1485] = {.lex_state = 0}, + [1485] = {.lex_state = 831}, [1486] = {.lex_state = 23}, - [1487] = {.lex_state = 23}, - [1488] = {.lex_state = 23}, + [1487] = {.lex_state = 0}, + [1488] = {.lex_state = 0}, [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 831}, - [1491] = {.lex_state = 23}, - [1492] = {.lex_state = 831}, + [1490] = {.lex_state = 830}, + [1491] = {.lex_state = 853}, + [1492] = {.lex_state = 23}, [1493] = {.lex_state = 0}, [1494] = {.lex_state = 0}, [1495] = {.lex_state = 0}, @@ -15768,210 +15781,210 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 23}, - [1502] = {.lex_state = 23}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, [1503] = {.lex_state = 0}, [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 23}, - [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 0}, + [1505] = {.lex_state = 23}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 39}, + [1508] = {.lex_state = 23}, [1509] = {.lex_state = 0}, [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 23}, - [1512] = {.lex_state = 23}, - [1513] = {.lex_state = 831}, - [1514] = {.lex_state = 831}, + [1511] = {.lex_state = 0}, + [1512] = {.lex_state = 0}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 0}, [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 0}, + [1516] = {.lex_state = 831}, [1517] = {.lex_state = 831}, [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 0}, + [1519] = {.lex_state = 831}, [1520] = {.lex_state = 0}, [1521] = {.lex_state = 0}, [1522] = {.lex_state = 0}, [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 23}, + [1524] = {.lex_state = 0}, [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, + [1526] = {.lex_state = 23}, + [1527] = {.lex_state = 831}, [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, + [1529] = {.lex_state = 831}, [1530] = {.lex_state = 0}, [1531] = {.lex_state = 0}, [1532] = {.lex_state = 0}, [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 853}, - [1535] = {.lex_state = 23}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, [1536] = {.lex_state = 23}, [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 39}, + [1538] = {.lex_state = 831}, + [1539] = {.lex_state = 0}, [1540] = {.lex_state = 831}, [1541] = {.lex_state = 0}, [1542] = {.lex_state = 831}, - [1543] = {.lex_state = 0}, + [1543] = {.lex_state = 831}, [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 0}, + [1545] = {.lex_state = 831}, + [1546] = {.lex_state = 23}, + [1547] = {.lex_state = 23}, [1548] = {.lex_state = 0}, [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 23}, - [1551] = {.lex_state = 831}, - [1552] = {.lex_state = 23}, + [1550] = {.lex_state = 0}, + [1551] = {.lex_state = 23}, + [1552] = {.lex_state = 0}, [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, + [1554] = {.lex_state = 40}, [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 23}, + [1556] = {.lex_state = 829}, [1557] = {.lex_state = 0}, [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 23}, - [1560] = {.lex_state = 23}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 23}, - [1563] = {.lex_state = 40}, + [1559] = {.lex_state = 0}, + [1560] = {.lex_state = 36}, + [1561] = {.lex_state = 23}, + [1562] = {.lex_state = 831}, + [1563] = {.lex_state = 0}, [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 36}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 23}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 39}, - [1572] = {.lex_state = 23}, - [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 23}, + [1565] = {.lex_state = 831}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 36}, + [1568] = {.lex_state = 34}, + [1569] = {.lex_state = 831}, + [1570] = {.lex_state = 831}, + [1571] = {.lex_state = 831}, + [1572] = {.lex_state = 0}, + [1573] = {.lex_state = 23}, + [1574] = {.lex_state = 0}, [1575] = {.lex_state = 23}, - [1576] = {.lex_state = 35}, - [1577] = {.lex_state = 23}, + [1576] = {.lex_state = 0}, + [1577] = {.lex_state = 0}, [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 23}, - [1580] = {.lex_state = 23}, - [1581] = {.lex_state = 23}, - [1582] = {.lex_state = 0}, + [1579] = {.lex_state = 0}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 35}, [1583] = {.lex_state = 23}, - [1584] = {.lex_state = 0}, + [1584] = {.lex_state = 23}, [1585] = {.lex_state = 23}, - [1586] = {.lex_state = 23}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 831}, - [1589] = {.lex_state = 831}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 23}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 23}, + [1588] = {.lex_state = 0}, + [1589] = {.lex_state = 23}, + [1590] = {.lex_state = 23}, + [1591] = {.lex_state = 0}, [1592] = {.lex_state = 23}, - [1593] = {.lex_state = 35}, + [1593] = {.lex_state = 39}, [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 17}, - [1598] = {.lex_state = 23}, + [1595] = {.lex_state = 23}, + [1596] = {.lex_state = 23}, + [1597] = {.lex_state = 23}, + [1598] = {.lex_state = 0}, [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 35}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 23}, + [1600] = {.lex_state = 23}, + [1601] = {.lex_state = 23}, + [1602] = {.lex_state = 0}, [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, + [1604] = {.lex_state = 35}, [1605] = {.lex_state = 0}, [1606] = {.lex_state = 0}, [1607] = {.lex_state = 23}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 23}, - [1610] = {.lex_state = 830}, - [1611] = {.lex_state = 23}, + [1608] = {.lex_state = 23}, + [1609] = {.lex_state = 831}, + [1610] = {.lex_state = 23}, + [1611] = {.lex_state = 0}, [1612] = {.lex_state = 0}, - [1613] = {.lex_state = 17}, - [1614] = {.lex_state = 23}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 23}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 0}, + [1613] = {.lex_state = 23}, + [1614] = {.lex_state = 0}, + [1615] = {.lex_state = 35}, + [1616] = {.lex_state = 0}, + [1617] = {.lex_state = 23}, + [1618] = {.lex_state = 831}, + [1619] = {.lex_state = 35}, [1620] = {.lex_state = 0}, [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 23}, + [1622] = {.lex_state = 17}, [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 0}, + [1624] = {.lex_state = 23}, [1625] = {.lex_state = 23}, - [1626] = {.lex_state = 39}, - [1627] = {.lex_state = 23}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 0}, [1628] = {.lex_state = 23}, - [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 23}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 35}, + [1629] = {.lex_state = 23}, + [1630] = {.lex_state = 23}, + [1631] = {.lex_state = 23}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 23}, + [1634] = {.lex_state = 23}, + [1635] = {.lex_state = 23}, + [1636] = {.lex_state = 0}, [1637] = {.lex_state = 0}, [1638] = {.lex_state = 23}, [1639] = {.lex_state = 0}, [1640] = {.lex_state = 23}, [1641] = {.lex_state = 23}, - [1642] = {.lex_state = 17}, - [1643] = {.lex_state = 23}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 0}, [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 23}, + [1645] = {.lex_state = 0}, [1646] = {.lex_state = 0}, [1647] = {.lex_state = 23}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 23}, + [1648] = {.lex_state = 23}, + [1649] = {.lex_state = 0}, [1650] = {.lex_state = 23}, [1651] = {.lex_state = 23}, - [1652] = {.lex_state = 23}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 23}, + [1652] = {.lex_state = 0}, + [1653] = {.lex_state = 23}, + [1654] = {.lex_state = 17}, [1655] = {.lex_state = 23}, [1656] = {.lex_state = 23}, [1657] = {.lex_state = 23}, [1658] = {.lex_state = 23}, [1659] = {.lex_state = 23}, - [1660] = {.lex_state = 23}, - [1661] = {.lex_state = 0}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 23}, [1662] = {.lex_state = 23}, - [1663] = {.lex_state = 23}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 0}, + [1663] = {.lex_state = 0}, + [1664] = {.lex_state = 23}, + [1665] = {.lex_state = 23}, [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 17}, - [1669] = {.lex_state = 0}, + [1667] = {.lex_state = 23}, + [1668] = {.lex_state = 23}, + [1669] = {.lex_state = 830}, [1670] = {.lex_state = 0}, [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 0}, + [1672] = {.lex_state = 23}, [1673] = {.lex_state = 0}, [1674] = {.lex_state = 0}, - [1675] = {.lex_state = 23}, + [1675] = {.lex_state = 17}, [1676] = {.lex_state = 0}, [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 23}, - [1679] = {.lex_state = 17}, - [1680] = {.lex_state = 0}, + [1678] = {.lex_state = 0}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 17}, [1681] = {.lex_state = 0}, [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 17}, + [1683] = {.lex_state = 0}, [1684] = {.lex_state = 0}, [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 23}, + [1686] = {.lex_state = 17}, + [1687] = {.lex_state = 0}, [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 23}, - [1690] = {.lex_state = 23}, + [1689] = {.lex_state = 0}, + [1690] = {.lex_state = 0}, [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 23}, - [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, + [1692] = {.lex_state = 17}, + [1693] = {.lex_state = 23}, + [1694] = {.lex_state = 23}, + [1695] = {.lex_state = 23}, [1696] = {.lex_state = 0}, [1697] = {.lex_state = 0}, [1698] = {.lex_state = 0}, [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 17}, + [1700] = {.lex_state = 0}, [1701] = {.lex_state = 0}, [1702] = {.lex_state = 0}, [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 0}, + [1704] = {.lex_state = 829}, [1705] = {.lex_state = 0}, [1706] = {.lex_state = 0}, [1707] = {.lex_state = 0}, @@ -16011,9 +16024,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1741] = {.lex_state = 0}, [1742] = {.lex_state = 0}, [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, + [1744] = {.lex_state = 829}, [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 0}, + [1746] = {.lex_state = 17}, [1747] = {.lex_state = 0}, [1748] = {.lex_state = 0}, [1749] = {.lex_state = 0}, @@ -16034,26 +16047,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1764] = {.lex_state = 0}, [1765] = {.lex_state = 0}, [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 853}, + [1767] = {.lex_state = 0}, [1768] = {.lex_state = 0}, [1769] = {.lex_state = 0}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 17}, + [1771] = {.lex_state = 0}, [1772] = {.lex_state = 0}, [1773] = {.lex_state = 0}, [1774] = {.lex_state = 0}, [1775] = {.lex_state = 0}, [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 17}, - [1778] = {.lex_state = 853}, + [1777] = {.lex_state = 0}, + [1778] = {.lex_state = 0}, [1779] = {.lex_state = 0}, [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 17}, + [1781] = {.lex_state = 0}, [1782] = {.lex_state = 0}, [1783] = {.lex_state = 0}, [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 853}, - [1786] = {.lex_state = 853}, + [1785] = {.lex_state = 0}, + [1786] = {.lex_state = 0}, [1787] = {.lex_state = 853}, [1788] = {.lex_state = 0}, [1789] = {.lex_state = 0}, @@ -16061,91 +16074,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, + [1794] = {.lex_state = 17}, [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 35}, - [1798] = {.lex_state = 17}, + [1796] = {.lex_state = 853}, + [1797] = {.lex_state = 0}, + [1798] = {.lex_state = 0}, [1799] = {.lex_state = 0}, [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 829}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, + [1801] = {.lex_state = 0}, + [1802] = {.lex_state = 853}, + [1803] = {.lex_state = 853}, + [1804] = {.lex_state = 853}, [1805] = {.lex_state = 0}, [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 0}, + [1807] = {.lex_state = 829}, + [1808] = {.lex_state = 17}, [1809] = {.lex_state = 0}, [1810] = {.lex_state = 0}, [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, + [1814] = {.lex_state = 35}, [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 829}, - [1820] = {.lex_state = 853}, - [1821] = {.lex_state = 0}, + [1816] = {.lex_state = 853}, + [1817] = {.lex_state = 853}, + [1818] = {.lex_state = 853}, + [1819] = {.lex_state = 853}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 853}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0}, + [1825] = {.lex_state = 853}, [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 0}, + [1827] = {.lex_state = 853}, + [1828] = {.lex_state = 853}, [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, + [1830] = {.lex_state = 17}, [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 829}, + [1832] = {.lex_state = 0}, [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 830}, - [1835] = {.lex_state = 853}, - [1836] = {.lex_state = 853}, - [1837] = {.lex_state = 853}, - [1838] = {.lex_state = 853}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 853}, - [1841] = {.lex_state = 853}, - [1842] = {.lex_state = 853}, - [1843] = {.lex_state = 853}, + [1834] = {.lex_state = 0}, + [1835] = {.lex_state = 17}, + [1836] = {.lex_state = 0}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 17}, + [1839] = {.lex_state = 853}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 17}, + [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, [1846] = {.lex_state = 0}, [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 17}, + [1848] = {.lex_state = 830}, [1849] = {.lex_state = 0}, [1850] = {.lex_state = 0}, [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 17}, + [1854] = {.lex_state = 0}, [1855] = {.lex_state = 0}, [1856] = {.lex_state = 0}, [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 17}, + [1858] = {.lex_state = 0}, [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 853}, + [1860] = {.lex_state = 0}, [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 0}, + [1862] = {.lex_state = 17}, [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 829}, - [1865] = {.lex_state = 829}, - [1866] = {.lex_state = 829}, + [1864] = {.lex_state = 853}, + [1865] = {.lex_state = 0}, + [1866] = {.lex_state = 0}, [1867] = {.lex_state = 0}, [1868] = {.lex_state = 0}, [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 0}, + [1870] = {.lex_state = 829}, + [1871] = {.lex_state = 829}, + [1872] = {.lex_state = 829}, [1873] = {.lex_state = 0}, [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, [1876] = {.lex_state = 0}, [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 35}, + [1878] = {.lex_state = 0}, + [1879] = {.lex_state = 0}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 0}, + [1883] = {.lex_state = 0}, + [1884] = {.lex_state = 35}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -16371,50 +16390,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(1845), - [sym_expressions] = STATE(1844), - [sym_expression] = STATE(1510), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1341), - [sym_where_clause] = STATE(1844), - [sym_value] = STATE(591), - [sym_function_call] = STATE(93), - [sym_base_value] = STATE(159), - [sym_binary_expression] = STATE(93), - [sym_path] = STATE(93), - [sym_graph_path] = STATE(158), - [sym_number] = STATE(61), - [sym_identifier] = STATE(61), - [sym_array] = STATE(61), - [sym_object] = STATE(61), - [sym_object_key] = STATE(1839), - [sym_record_id] = STATE(61), - [sym_sub_query] = STATE(61), - [sym_duration] = STATE(61), - [sym_point] = STATE(61), - [aux_sym_duration_repeat1] = STATE(52), + [sym_source_file] = STATE(1857), + [sym_expressions] = STATE(1856), + [sym_expression] = STATE(1532), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1326), + [sym_where_clause] = STATE(1856), + [sym_value] = STATE(595), + [sym_function_call] = STATE(99), + [sym_base_value] = STATE(145), + [sym_binary_expression] = STATE(99), + [sym_path] = STATE(99), + [sym_graph_path] = STATE(144), + [sym_number] = STATE(57), + [sym_identifier] = STATE(57), + [sym_array] = STATE(57), + [sym_object] = STATE(57), + [sym_object_key] = STATE(1851), + [sym_record_id] = STATE(57), + [sym_sub_query] = STATE(57), + [sym_duration] = STATE(57), + [sym_point] = STATE(57), + [aux_sym_duration_repeat1] = STATE(51), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), [sym_keyword_rand] = ACTIONS(7), @@ -16568,11 +16588,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(57), }, [3] = { - [sym_filter] = STATE(36), - [sym_path_element] = STATE(3), - [sym_graph_path] = STATE(36), - [sym_subscript] = STATE(36), - [aux_sym_path_repeat1] = STATE(3), + [sym_filter] = STATE(23), + [sym_path_element] = STATE(4), + [sym_graph_path] = STATE(23), + [sym_subscript] = STATE(23), + [aux_sym_path_repeat1] = STATE(4), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(61), [sym_keyword_if] = ACTIONS(61), @@ -16617,17 +16637,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_unset] = ACTIONS(61), [anon_sym_COMMA] = ACTIONS(61), [anon_sym_DASH_GT] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(68), + [anon_sym_LBRACK] = ACTIONS(67), [anon_sym_RBRACK] = ACTIONS(61), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_RPAREN] = ACTIONS(61), [anon_sym_QMARK] = ACTIONS(63), [anon_sym_LBRACE] = ACTIONS(61), [anon_sym_RBRACE] = ACTIONS(61), - [anon_sym_LT_DASH] = ACTIONS(71), + [anon_sym_LT_DASH] = ACTIONS(69), [anon_sym_LT_DASH_GT] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(74), + [anon_sym_DOT] = ACTIONS(71), [anon_sym_LT] = ACTIONS(63), [anon_sym_GT] = ACTIONS(63), [sym_variable_name] = ACTIONS(61), @@ -16669,11 +16689,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(61), }, [4] = { - [sym_filter] = STATE(36), - [sym_path_element] = STATE(6), - [sym_graph_path] = STATE(36), - [sym_subscript] = STATE(36), - [aux_sym_path_repeat1] = STATE(6), + [sym_filter] = STATE(23), + [sym_path_element] = STATE(5), + [sym_graph_path] = STATE(23), + [sym_subscript] = STATE(23), + [aux_sym_path_repeat1] = STATE(5), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(73), + [sym_keyword_if] = ACTIONS(73), + [sym_keyword_return] = ACTIONS(73), + [sym_keyword_from] = ACTIONS(73), + [sym_keyword_as] = ACTIONS(73), + [sym_keyword_omit] = ACTIONS(73), + [sym_keyword_parallel] = ACTIONS(73), + [sym_keyword_timeout] = ACTIONS(73), + [sym_keyword_where] = ACTIONS(73), + [sym_keyword_group] = ACTIONS(73), + [sym_keyword_and] = ACTIONS(73), + [sym_keyword_or] = ACTIONS(73), + [sym_keyword_is] = ACTIONS(73), + [sym_keyword_not] = ACTIONS(75), + [sym_keyword_contains] = ACTIONS(73), + [sym_keyword_contains_not] = ACTIONS(73), + [sym_keyword_contains_all] = ACTIONS(73), + [sym_keyword_contains_any] = ACTIONS(73), + [sym_keyword_contains_none] = ACTIONS(73), + [sym_keyword_inside] = ACTIONS(73), + [sym_keyword_in] = ACTIONS(75), + [sym_keyword_not_inside] = ACTIONS(73), + [sym_keyword_all_inside] = ACTIONS(73), + [sym_keyword_any_inside] = ACTIONS(73), + [sym_keyword_none_inside] = ACTIONS(73), + [sym_keyword_outside] = ACTIONS(73), + [sym_keyword_intersects] = ACTIONS(73), + [sym_keyword_drop] = ACTIONS(73), + [sym_keyword_schemafull] = ACTIONS(73), + [sym_keyword_schemaless] = ACTIONS(73), + [sym_keyword_changefeed] = ACTIONS(73), + [sym_keyword_content] = ACTIONS(73), + [sym_keyword_merge] = ACTIONS(73), + [sym_keyword_patch] = ACTIONS(73), + [sym_keyword_then] = ACTIONS(73), + [sym_keyword_type] = ACTIONS(73), + [sym_keyword_permissions] = ACTIONS(73), + [sym_keyword_for] = ACTIONS(73), + [sym_keyword_comment] = ACTIONS(73), + [sym_keyword_set] = ACTIONS(73), + [sym_keyword_unset] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(73), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), + [anon_sym_RBRACK] = ACTIONS(73), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_RPAREN] = ACTIONS(73), + [anon_sym_QMARK] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(73), + [anon_sym_RBRACE] = ACTIONS(73), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(75), + [sym_variable_name] = ACTIONS(73), + [sym_custom_function_name] = ACTIONS(73), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_AT] = ACTIONS(75), + [anon_sym_LT_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(73), + [anon_sym_PIPE_PIPE] = ACTIONS(73), + [anon_sym_QMARK_QMARK] = ACTIONS(73), + [anon_sym_QMARK_COLON] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_QMARK_EQ] = ACTIONS(73), + [anon_sym_STAR_EQ] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(73), + [anon_sym_BANG_TILDE] = ACTIONS(73), + [anon_sym_STAR_TILDE] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(73), + [anon_sym_DASH_EQ] = ACTIONS(73), + [anon_sym_u00d7] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_u00f7] = ACTIONS(73), + [anon_sym_STAR_STAR] = ACTIONS(73), + [anon_sym_u220b] = ACTIONS(73), + [anon_sym_u220c] = ACTIONS(73), + [anon_sym_u2287] = ACTIONS(73), + [anon_sym_u2283] = ACTIONS(73), + [anon_sym_u2285] = ACTIONS(73), + [anon_sym_u2208] = ACTIONS(73), + [anon_sym_u2209] = ACTIONS(73), + [anon_sym_u2286] = ACTIONS(73), + [anon_sym_u2282] = ACTIONS(73), + [anon_sym_u2284] = ACTIONS(73), + [anon_sym_AT_AT] = ACTIONS(73), + }, + [5] = { + [sym_filter] = STATE(23), + [sym_path_element] = STATE(5), + [sym_graph_path] = STATE(23), + [sym_subscript] = STATE(23), + [aux_sym_path_repeat1] = STATE(5), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(77), [sym_keyword_if] = ACTIONS(77), @@ -16718,17 +16839,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_unset] = ACTIONS(77), [anon_sym_COMMA] = ACTIONS(77), [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(84), [anon_sym_RBRACK] = ACTIONS(77), [anon_sym_LPAREN] = ACTIONS(77), [anon_sym_RPAREN] = ACTIONS(77), [anon_sym_QMARK] = ACTIONS(79), [anon_sym_LBRACE] = ACTIONS(77), [anon_sym_RBRACE] = ACTIONS(77), - [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_LT_DASH] = ACTIONS(87), [anon_sym_LT_DASH_GT] = ACTIONS(81), [anon_sym_STAR] = ACTIONS(79), - [anon_sym_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(90), [anon_sym_LT] = ACTIONS(79), [anon_sym_GT] = ACTIONS(79), [sym_variable_name] = ACTIONS(77), @@ -16769,113 +16890,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(77), [anon_sym_AT_AT] = ACTIONS(77), }, - [5] = { - [sym_filter] = STATE(36), - [sym_path_element] = STATE(6), - [sym_graph_path] = STATE(36), - [sym_subscript] = STATE(36), - [aux_sym_path_repeat1] = STATE(6), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(89), - [sym_keyword_if] = ACTIONS(89), - [sym_keyword_return] = ACTIONS(89), - [sym_keyword_from] = ACTIONS(89), - [sym_keyword_as] = ACTIONS(89), - [sym_keyword_omit] = ACTIONS(89), - [sym_keyword_parallel] = ACTIONS(89), - [sym_keyword_timeout] = ACTIONS(89), - [sym_keyword_where] = ACTIONS(89), - [sym_keyword_group] = ACTIONS(89), - [sym_keyword_and] = ACTIONS(89), - [sym_keyword_or] = ACTIONS(89), - [sym_keyword_is] = ACTIONS(89), - [sym_keyword_not] = ACTIONS(91), - [sym_keyword_contains] = ACTIONS(89), - [sym_keyword_contains_not] = ACTIONS(89), - [sym_keyword_contains_all] = ACTIONS(89), - [sym_keyword_contains_any] = ACTIONS(89), - [sym_keyword_contains_none] = ACTIONS(89), - [sym_keyword_inside] = ACTIONS(89), - [sym_keyword_in] = ACTIONS(91), - [sym_keyword_not_inside] = ACTIONS(89), - [sym_keyword_all_inside] = ACTIONS(89), - [sym_keyword_any_inside] = ACTIONS(89), - [sym_keyword_none_inside] = ACTIONS(89), - [sym_keyword_outside] = ACTIONS(89), - [sym_keyword_intersects] = ACTIONS(89), - [sym_keyword_drop] = ACTIONS(89), - [sym_keyword_schemafull] = ACTIONS(89), - [sym_keyword_schemaless] = ACTIONS(89), - [sym_keyword_changefeed] = ACTIONS(89), - [sym_keyword_content] = ACTIONS(89), - [sym_keyword_merge] = ACTIONS(89), - [sym_keyword_patch] = ACTIONS(89), - [sym_keyword_then] = ACTIONS(89), - [sym_keyword_type] = ACTIONS(89), - [sym_keyword_permissions] = ACTIONS(89), - [sym_keyword_for] = ACTIONS(89), - [sym_keyword_comment] = ACTIONS(89), - [sym_keyword_set] = ACTIONS(89), - [sym_keyword_unset] = ACTIONS(89), - [anon_sym_COMMA] = ACTIONS(89), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_RBRACK] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(89), - [anon_sym_RPAREN] = ACTIONS(89), - [anon_sym_QMARK] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(89), - [anon_sym_RBRACE] = ACTIONS(89), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(87), - [anon_sym_LT] = ACTIONS(91), - [anon_sym_GT] = ACTIONS(91), - [sym_variable_name] = ACTIONS(89), - [sym_custom_function_name] = ACTIONS(89), - [anon_sym_EQ] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_LT_PIPE] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(89), - [anon_sym_QMARK_QMARK] = ACTIONS(89), - [anon_sym_QMARK_COLON] = ACTIONS(89), - [anon_sym_BANG_EQ] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_QMARK_EQ] = ACTIONS(89), - [anon_sym_STAR_EQ] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_BANG_TILDE] = ACTIONS(89), - [anon_sym_STAR_TILDE] = ACTIONS(89), - [anon_sym_LT_EQ] = ACTIONS(89), - [anon_sym_GT_EQ] = ACTIONS(89), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_PLUS_EQ] = ACTIONS(89), - [anon_sym_DASH_EQ] = ACTIONS(89), - [anon_sym_u00d7] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(91), - [anon_sym_u00f7] = ACTIONS(89), - [anon_sym_STAR_STAR] = ACTIONS(89), - [anon_sym_u220b] = ACTIONS(89), - [anon_sym_u220c] = ACTIONS(89), - [anon_sym_u2287] = ACTIONS(89), - [anon_sym_u2283] = ACTIONS(89), - [anon_sym_u2285] = ACTIONS(89), - [anon_sym_u2208] = ACTIONS(89), - [anon_sym_u2209] = ACTIONS(89), - [anon_sym_u2286] = ACTIONS(89), - [anon_sym_u2282] = ACTIONS(89), - [anon_sym_u2284] = ACTIONS(89), - [anon_sym_AT_AT] = ACTIONS(89), - }, [6] = { - [sym_filter] = STATE(36), - [sym_path_element] = STATE(3), - [sym_graph_path] = STATE(36), - [sym_subscript] = STATE(36), - [aux_sym_path_repeat1] = STATE(3), + [sym_filter] = STATE(23), + [sym_path_element] = STATE(4), + [sym_graph_path] = STATE(23), + [sym_subscript] = STATE(23), + [aux_sym_path_repeat1] = STATE(4), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(93), [sym_keyword_if] = ACTIONS(93), @@ -16919,18 +16939,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_set] = ACTIONS(93), [sym_keyword_unset] = ACTIONS(93), [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(67), [anon_sym_RBRACK] = ACTIONS(93), [anon_sym_LPAREN] = ACTIONS(93), [anon_sym_RPAREN] = ACTIONS(93), [anon_sym_QMARK] = ACTIONS(95), [anon_sym_LBRACE] = ACTIONS(93), [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(71), [anon_sym_LT] = ACTIONS(95), [anon_sym_GT] = ACTIONS(95), [sym_variable_name] = ACTIONS(93), @@ -16972,7 +16992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(93), }, [7] = { - [aux_sym_duration_repeat1] = STATE(8), + [aux_sym_duration_repeat1] = STATE(7), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(97), [sym_keyword_if] = ACTIONS(97), @@ -17070,120 +17090,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(97), }, [8] = { - [aux_sym_duration_repeat1] = STATE(8), + [aux_sym_duration_repeat1] = STATE(7), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(103), - [sym_keyword_if] = ACTIONS(103), - [sym_keyword_return] = ACTIONS(103), - [sym_keyword_from] = ACTIONS(103), - [sym_keyword_as] = ACTIONS(103), - [sym_keyword_omit] = ACTIONS(103), - [sym_keyword_parallel] = ACTIONS(103), - [sym_keyword_timeout] = ACTIONS(103), - [sym_keyword_where] = ACTIONS(103), - [sym_keyword_group] = ACTIONS(103), - [sym_keyword_and] = ACTIONS(103), - [sym_keyword_or] = ACTIONS(103), - [sym_keyword_is] = ACTIONS(103), - [sym_keyword_not] = ACTIONS(105), - [sym_keyword_contains] = ACTIONS(103), - [sym_keyword_contains_not] = ACTIONS(103), - [sym_keyword_contains_all] = ACTIONS(103), - [sym_keyword_contains_any] = ACTIONS(103), - [sym_keyword_contains_none] = ACTIONS(103), - [sym_keyword_inside] = ACTIONS(103), - [sym_keyword_in] = ACTIONS(105), - [sym_keyword_not_inside] = ACTIONS(103), - [sym_keyword_all_inside] = ACTIONS(103), - [sym_keyword_any_inside] = ACTIONS(103), - [sym_keyword_none_inside] = ACTIONS(103), - [sym_keyword_outside] = ACTIONS(103), - [sym_keyword_intersects] = ACTIONS(103), - [sym_keyword_drop] = ACTIONS(103), - [sym_keyword_schemafull] = ACTIONS(103), - [sym_keyword_schemaless] = ACTIONS(103), - [sym_keyword_changefeed] = ACTIONS(103), - [sym_keyword_content] = ACTIONS(103), - [sym_keyword_merge] = ACTIONS(103), - [sym_keyword_patch] = ACTIONS(103), - [sym_keyword_then] = ACTIONS(103), - [sym_keyword_type] = ACTIONS(103), - [sym_keyword_permissions] = ACTIONS(103), - [sym_keyword_for] = ACTIONS(103), - [sym_keyword_comment] = ACTIONS(103), - [sym_keyword_set] = ACTIONS(103), - [sym_keyword_unset] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_DASH_GT] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_RBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_QMARK] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(105), - [anon_sym_LT_DASH_GT] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [sym_variable_name] = ACTIONS(103), - [sym_custom_function_name] = ACTIONS(103), - [anon_sym_EQ] = ACTIONS(105), - [sym_duration_part] = ACTIONS(107), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_AT] = ACTIONS(105), - [anon_sym_LT_PIPE] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_PIPE_PIPE] = ACTIONS(103), - [anon_sym_QMARK_QMARK] = ACTIONS(103), - [anon_sym_QMARK_COLON] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_QMARK_EQ] = ACTIONS(103), - [anon_sym_STAR_EQ] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_STAR_TILDE] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_PLUS_EQ] = ACTIONS(103), - [anon_sym_DASH_EQ] = ACTIONS(103), - [anon_sym_u00d7] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(105), - [anon_sym_u00f7] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_u220b] = ACTIONS(103), - [anon_sym_u220c] = ACTIONS(103), - [anon_sym_u2287] = ACTIONS(103), - [anon_sym_u2283] = ACTIONS(103), - [anon_sym_u2285] = ACTIONS(103), - [anon_sym_u2208] = ACTIONS(103), - [anon_sym_u2209] = ACTIONS(103), - [anon_sym_u2286] = ACTIONS(103), - [anon_sym_u2282] = ACTIONS(103), - [anon_sym_u2284] = ACTIONS(103), - [anon_sym_AT_AT] = ACTIONS(103), + [sym_semi_colon] = ACTIONS(104), + [sym_keyword_if] = ACTIONS(104), + [sym_keyword_return] = ACTIONS(104), + [sym_keyword_from] = ACTIONS(104), + [sym_keyword_as] = ACTIONS(104), + [sym_keyword_omit] = ACTIONS(104), + [sym_keyword_parallel] = ACTIONS(104), + [sym_keyword_timeout] = ACTIONS(104), + [sym_keyword_where] = ACTIONS(104), + [sym_keyword_group] = ACTIONS(104), + [sym_keyword_and] = ACTIONS(104), + [sym_keyword_or] = ACTIONS(104), + [sym_keyword_is] = ACTIONS(104), + [sym_keyword_not] = ACTIONS(106), + [sym_keyword_contains] = ACTIONS(104), + [sym_keyword_contains_not] = ACTIONS(104), + [sym_keyword_contains_all] = ACTIONS(104), + [sym_keyword_contains_any] = ACTIONS(104), + [sym_keyword_contains_none] = ACTIONS(104), + [sym_keyword_inside] = ACTIONS(104), + [sym_keyword_in] = ACTIONS(106), + [sym_keyword_not_inside] = ACTIONS(104), + [sym_keyword_all_inside] = ACTIONS(104), + [sym_keyword_any_inside] = ACTIONS(104), + [sym_keyword_none_inside] = ACTIONS(104), + [sym_keyword_outside] = ACTIONS(104), + [sym_keyword_intersects] = ACTIONS(104), + [sym_keyword_drop] = ACTIONS(104), + [sym_keyword_schemafull] = ACTIONS(104), + [sym_keyword_schemaless] = ACTIONS(104), + [sym_keyword_changefeed] = ACTIONS(104), + [sym_keyword_content] = ACTIONS(104), + [sym_keyword_merge] = ACTIONS(104), + [sym_keyword_patch] = ACTIONS(104), + [sym_keyword_then] = ACTIONS(104), + [sym_keyword_type] = ACTIONS(104), + [sym_keyword_permissions] = ACTIONS(104), + [sym_keyword_for] = ACTIONS(104), + [sym_keyword_comment] = ACTIONS(104), + [sym_keyword_set] = ACTIONS(104), + [sym_keyword_unset] = ACTIONS(104), + [anon_sym_COMMA] = ACTIONS(104), + [anon_sym_DASH_GT] = ACTIONS(104), + [anon_sym_LBRACK] = ACTIONS(104), + [anon_sym_RBRACK] = ACTIONS(104), + [anon_sym_LPAREN] = ACTIONS(104), + [anon_sym_RPAREN] = ACTIONS(104), + [anon_sym_QMARK] = ACTIONS(106), + [anon_sym_LBRACE] = ACTIONS(104), + [anon_sym_RBRACE] = ACTIONS(104), + [anon_sym_LT_DASH] = ACTIONS(106), + [anon_sym_LT_DASH_GT] = ACTIONS(104), + [anon_sym_STAR] = ACTIONS(106), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LT] = ACTIONS(106), + [anon_sym_GT] = ACTIONS(106), + [sym_variable_name] = ACTIONS(104), + [sym_custom_function_name] = ACTIONS(104), + [anon_sym_EQ] = ACTIONS(106), + [sym_duration_part] = ACTIONS(108), + [anon_sym_DASH] = ACTIONS(106), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_LT_PIPE] = ACTIONS(104), + [anon_sym_AMP_AMP] = ACTIONS(104), + [anon_sym_PIPE_PIPE] = ACTIONS(104), + [anon_sym_QMARK_QMARK] = ACTIONS(104), + [anon_sym_QMARK_COLON] = ACTIONS(104), + [anon_sym_BANG_EQ] = ACTIONS(104), + [anon_sym_EQ_EQ] = ACTIONS(104), + [anon_sym_QMARK_EQ] = ACTIONS(104), + [anon_sym_STAR_EQ] = ACTIONS(104), + [anon_sym_TILDE] = ACTIONS(104), + [anon_sym_BANG_TILDE] = ACTIONS(104), + [anon_sym_STAR_TILDE] = ACTIONS(104), + [anon_sym_LT_EQ] = ACTIONS(104), + [anon_sym_GT_EQ] = ACTIONS(104), + [anon_sym_PLUS] = ACTIONS(106), + [anon_sym_PLUS_EQ] = ACTIONS(104), + [anon_sym_DASH_EQ] = ACTIONS(104), + [anon_sym_u00d7] = ACTIONS(104), + [anon_sym_SLASH] = ACTIONS(106), + [anon_sym_u00f7] = ACTIONS(104), + [anon_sym_STAR_STAR] = ACTIONS(104), + [anon_sym_u220b] = ACTIONS(104), + [anon_sym_u220c] = ACTIONS(104), + [anon_sym_u2287] = ACTIONS(104), + [anon_sym_u2283] = ACTIONS(104), + [anon_sym_u2285] = ACTIONS(104), + [anon_sym_u2208] = ACTIONS(104), + [anon_sym_u2209] = ACTIONS(104), + [anon_sym_u2286] = ACTIONS(104), + [anon_sym_u2282] = ACTIONS(104), + [anon_sym_u2284] = ACTIONS(104), + [anon_sym_AT_AT] = ACTIONS(104), }, [9] = { - [ts_builtin_sym_end] = ACTIONS(110), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(110), + [sym_keyword_if] = ACTIONS(110), [sym_keyword_return] = ACTIONS(110), - [sym_keyword_value] = ACTIONS(110), - [sym_keyword_explain] = ACTIONS(110), + [sym_keyword_from] = ACTIONS(110), + [sym_keyword_as] = ACTIONS(110), + [sym_keyword_omit] = ACTIONS(110), [sym_keyword_parallel] = ACTIONS(110), [sym_keyword_timeout] = ACTIONS(110), - [sym_keyword_fetch] = ACTIONS(110), - [sym_keyword_limit] = ACTIONS(110), - [sym_keyword_rand] = ACTIONS(110), - [sym_keyword_collate] = ACTIONS(110), - [sym_keyword_numeric] = ACTIONS(110), - [sym_keyword_asc] = ACTIONS(110), - [sym_keyword_desc] = ACTIONS(110), [sym_keyword_where] = ACTIONS(110), + [sym_keyword_group] = ACTIONS(110), [sym_keyword_and] = ACTIONS(110), [sym_keyword_or] = ACTIONS(110), [sym_keyword_is] = ACTIONS(110), @@ -17201,33 +17216,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(110), [sym_keyword_outside] = ACTIONS(110), [sym_keyword_intersects] = ACTIONS(110), - [sym_keyword_flexible] = ACTIONS(110), - [sym_keyword_readonly] = ACTIONS(110), + [sym_keyword_drop] = ACTIONS(110), + [sym_keyword_schemafull] = ACTIONS(110), + [sym_keyword_schemaless] = ACTIONS(110), + [sym_keyword_changefeed] = ACTIONS(110), [sym_keyword_content] = ACTIONS(110), [sym_keyword_merge] = ACTIONS(110), [sym_keyword_patch] = ACTIONS(110), + [sym_keyword_then] = ACTIONS(110), [sym_keyword_type] = ACTIONS(110), - [sym_keyword_default] = ACTIONS(110), - [sym_keyword_assert] = ACTIONS(110), [sym_keyword_permissions] = ACTIONS(110), [sym_keyword_for] = ACTIONS(110), [sym_keyword_comment] = ACTIONS(110), - [sym_keyword_session] = ACTIONS(110), - [sym_keyword_signin] = ACTIONS(110), - [sym_keyword_signup] = ACTIONS(110), [sym_keyword_set] = ACTIONS(110), [sym_keyword_unset] = ACTIONS(110), [anon_sym_COMMA] = ACTIONS(110), [anon_sym_DASH_GT] = ACTIONS(110), [anon_sym_LBRACK] = ACTIONS(110), + [anon_sym_RBRACK] = ACTIONS(110), + [anon_sym_LPAREN] = ACTIONS(110), [anon_sym_RPAREN] = ACTIONS(110), + [anon_sym_QMARK] = ACTIONS(112), + [anon_sym_LBRACE] = ACTIONS(110), [anon_sym_RBRACE] = ACTIONS(110), [anon_sym_LT_DASH] = ACTIONS(112), [anon_sym_LT_DASH_GT] = ACTIONS(110), [anon_sym_STAR] = ACTIONS(112), - [anon_sym_DOT] = ACTIONS(110), + [anon_sym_DOT] = ACTIONS(112), [anon_sym_LT] = ACTIONS(112), [anon_sym_GT] = ACTIONS(112), + [sym_variable_name] = ACTIONS(110), + [sym_custom_function_name] = ACTIONS(110), + [anon_sym_DOT_DOT] = ACTIONS(110), [anon_sym_EQ] = ACTIONS(112), [anon_sym_DASH] = ACTIONS(112), [anon_sym_AT] = ACTIONS(112), @@ -17265,6 +17285,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(110), }, [10] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(114), + [sym_keyword_if] = ACTIONS(114), + [sym_keyword_return] = ACTIONS(114), + [sym_keyword_from] = ACTIONS(114), + [sym_keyword_as] = ACTIONS(114), + [sym_keyword_omit] = ACTIONS(114), + [sym_keyword_parallel] = ACTIONS(114), + [sym_keyword_timeout] = ACTIONS(114), + [sym_keyword_where] = ACTIONS(114), + [sym_keyword_group] = ACTIONS(114), + [sym_keyword_and] = ACTIONS(114), + [sym_keyword_or] = ACTIONS(114), + [sym_keyword_is] = ACTIONS(114), + [sym_keyword_not] = ACTIONS(116), + [sym_keyword_contains] = ACTIONS(114), + [sym_keyword_contains_not] = ACTIONS(114), + [sym_keyword_contains_all] = ACTIONS(114), + [sym_keyword_contains_any] = ACTIONS(114), + [sym_keyword_contains_none] = ACTIONS(114), + [sym_keyword_inside] = ACTIONS(114), + [sym_keyword_in] = ACTIONS(116), + [sym_keyword_not_inside] = ACTIONS(114), + [sym_keyword_all_inside] = ACTIONS(114), + [sym_keyword_any_inside] = ACTIONS(114), + [sym_keyword_none_inside] = ACTIONS(114), + [sym_keyword_outside] = ACTIONS(114), + [sym_keyword_intersects] = ACTIONS(114), + [sym_keyword_drop] = ACTIONS(114), + [sym_keyword_schemafull] = ACTIONS(114), + [sym_keyword_schemaless] = ACTIONS(114), + [sym_keyword_changefeed] = ACTIONS(114), + [sym_keyword_content] = ACTIONS(114), + [sym_keyword_merge] = ACTIONS(114), + [sym_keyword_patch] = ACTIONS(114), + [sym_keyword_then] = ACTIONS(114), + [sym_keyword_type] = ACTIONS(114), + [sym_keyword_permissions] = ACTIONS(114), + [sym_keyword_for] = ACTIONS(114), + [sym_keyword_comment] = ACTIONS(114), + [sym_keyword_set] = ACTIONS(114), + [sym_keyword_unset] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_DASH_GT] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_RBRACK] = ACTIONS(114), + [anon_sym_LPAREN] = ACTIONS(114), + [anon_sym_RPAREN] = ACTIONS(114), + [anon_sym_QMARK] = ACTIONS(116), + [anon_sym_LBRACE] = ACTIONS(114), + [anon_sym_RBRACE] = ACTIONS(114), + [anon_sym_LT_DASH] = ACTIONS(116), + [anon_sym_LT_DASH_GT] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(116), + [anon_sym_LT] = ACTIONS(116), + [anon_sym_GT] = ACTIONS(116), + [sym_variable_name] = ACTIONS(114), + [sym_custom_function_name] = ACTIONS(114), + [anon_sym_DOT_DOT] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_DASH] = ACTIONS(116), + [anon_sym_AT] = ACTIONS(116), + [anon_sym_LT_PIPE] = ACTIONS(114), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_QMARK_COLON] = ACTIONS(114), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_QMARK_EQ] = ACTIONS(114), + [anon_sym_STAR_EQ] = ACTIONS(114), + [anon_sym_TILDE] = ACTIONS(114), + [anon_sym_BANG_TILDE] = ACTIONS(114), + [anon_sym_STAR_TILDE] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(114), + [anon_sym_GT_EQ] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(116), + [anon_sym_PLUS_EQ] = ACTIONS(114), + [anon_sym_DASH_EQ] = ACTIONS(114), + [anon_sym_u00d7] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(116), + [anon_sym_u00f7] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_u220b] = ACTIONS(114), + [anon_sym_u220c] = ACTIONS(114), + [anon_sym_u2287] = ACTIONS(114), + [anon_sym_u2283] = ACTIONS(114), + [anon_sym_u2285] = ACTIONS(114), + [anon_sym_u2208] = ACTIONS(114), + [anon_sym_u2209] = ACTIONS(114), + [anon_sym_u2286] = ACTIONS(114), + [anon_sym_u2282] = ACTIONS(114), + [anon_sym_u2284] = ACTIONS(114), + [anon_sym_AT_AT] = ACTIONS(114), + }, + [11] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(118), + [sym_keyword_if] = ACTIONS(118), + [sym_keyword_return] = ACTIONS(118), + [sym_keyword_from] = ACTIONS(118), + [sym_keyword_as] = ACTIONS(118), + [sym_keyword_omit] = ACTIONS(118), + [sym_keyword_parallel] = ACTIONS(118), + [sym_keyword_timeout] = ACTIONS(118), + [sym_keyword_where] = ACTIONS(118), + [sym_keyword_group] = ACTIONS(118), + [sym_keyword_and] = ACTIONS(118), + [sym_keyword_or] = ACTIONS(118), + [sym_keyword_is] = ACTIONS(118), + [sym_keyword_not] = ACTIONS(120), + [sym_keyword_contains] = ACTIONS(118), + [sym_keyword_contains_not] = ACTIONS(118), + [sym_keyword_contains_all] = ACTIONS(118), + [sym_keyword_contains_any] = ACTIONS(118), + [sym_keyword_contains_none] = ACTIONS(118), + [sym_keyword_inside] = ACTIONS(118), + [sym_keyword_in] = ACTIONS(120), + [sym_keyword_not_inside] = ACTIONS(118), + [sym_keyword_all_inside] = ACTIONS(118), + [sym_keyword_any_inside] = ACTIONS(118), + [sym_keyword_none_inside] = ACTIONS(118), + [sym_keyword_outside] = ACTIONS(118), + [sym_keyword_intersects] = ACTIONS(118), + [sym_keyword_drop] = ACTIONS(118), + [sym_keyword_schemafull] = ACTIONS(118), + [sym_keyword_schemaless] = ACTIONS(118), + [sym_keyword_changefeed] = ACTIONS(118), + [sym_keyword_content] = ACTIONS(118), + [sym_keyword_merge] = ACTIONS(118), + [sym_keyword_patch] = ACTIONS(118), + [sym_keyword_then] = ACTIONS(118), + [sym_keyword_type] = ACTIONS(118), + [sym_keyword_permissions] = ACTIONS(118), + [sym_keyword_for] = ACTIONS(118), + [sym_keyword_comment] = ACTIONS(118), + [sym_keyword_set] = ACTIONS(118), + [sym_keyword_unset] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_DASH_GT] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_LT_DASH] = ACTIONS(120), + [anon_sym_LT_DASH_GT] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [sym_variable_name] = ACTIONS(118), + [sym_custom_function_name] = ACTIONS(118), + [anon_sym_DOT_DOT] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_AT] = ACTIONS(120), + [anon_sym_LT_PIPE] = ACTIONS(118), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_QMARK_COLON] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_QMARK_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(118), + [anon_sym_BANG_TILDE] = ACTIONS(118), + [anon_sym_STAR_TILDE] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_u00d7] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_u00f7] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_u220b] = ACTIONS(118), + [anon_sym_u220c] = ACTIONS(118), + [anon_sym_u2287] = ACTIONS(118), + [anon_sym_u2283] = ACTIONS(118), + [anon_sym_u2285] = ACTIONS(118), + [anon_sym_u2208] = ACTIONS(118), + [anon_sym_u2209] = ACTIONS(118), + [anon_sym_u2286] = ACTIONS(118), + [anon_sym_u2282] = ACTIONS(118), + [anon_sym_u2284] = ACTIONS(118), + [anon_sym_AT_AT] = ACTIONS(118), + }, + [12] = { + [ts_builtin_sym_end] = ACTIONS(122), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(122), + [sym_keyword_return] = ACTIONS(122), + [sym_keyword_value] = ACTIONS(122), + [sym_keyword_explain] = ACTIONS(122), + [sym_keyword_parallel] = ACTIONS(122), + [sym_keyword_timeout] = ACTIONS(122), + [sym_keyword_fetch] = ACTIONS(122), + [sym_keyword_limit] = ACTIONS(122), + [sym_keyword_rand] = ACTIONS(122), + [sym_keyword_collate] = ACTIONS(122), + [sym_keyword_numeric] = ACTIONS(122), + [sym_keyword_asc] = ACTIONS(122), + [sym_keyword_desc] = ACTIONS(122), + [sym_keyword_where] = ACTIONS(122), + [sym_keyword_and] = ACTIONS(122), + [sym_keyword_or] = ACTIONS(122), + [sym_keyword_is] = ACTIONS(122), + [sym_keyword_not] = ACTIONS(124), + [sym_keyword_contains] = ACTIONS(122), + [sym_keyword_contains_not] = ACTIONS(122), + [sym_keyword_contains_all] = ACTIONS(122), + [sym_keyword_contains_any] = ACTIONS(122), + [sym_keyword_contains_none] = ACTIONS(122), + [sym_keyword_inside] = ACTIONS(122), + [sym_keyword_in] = ACTIONS(124), + [sym_keyword_not_inside] = ACTIONS(122), + [sym_keyword_all_inside] = ACTIONS(122), + [sym_keyword_any_inside] = ACTIONS(122), + [sym_keyword_none_inside] = ACTIONS(122), + [sym_keyword_outside] = ACTIONS(122), + [sym_keyword_intersects] = ACTIONS(122), + [sym_keyword_flexible] = ACTIONS(122), + [sym_keyword_readonly] = ACTIONS(122), + [sym_keyword_content] = ACTIONS(122), + [sym_keyword_merge] = ACTIONS(122), + [sym_keyword_patch] = ACTIONS(122), + [sym_keyword_type] = ACTIONS(122), + [sym_keyword_default] = ACTIONS(122), + [sym_keyword_assert] = ACTIONS(122), + [sym_keyword_permissions] = ACTIONS(122), + [sym_keyword_for] = ACTIONS(122), + [sym_keyword_comment] = ACTIONS(122), + [sym_keyword_session] = ACTIONS(122), + [sym_keyword_signin] = ACTIONS(122), + [sym_keyword_signup] = ACTIONS(122), + [sym_keyword_set] = ACTIONS(122), + [sym_keyword_unset] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(122), + [anon_sym_DASH_GT] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(122), + [anon_sym_RPAREN] = ACTIONS(122), + [anon_sym_RBRACE] = ACTIONS(122), + [anon_sym_LT_DASH] = ACTIONS(124), + [anon_sym_LT_DASH_GT] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(124), + [anon_sym_GT] = ACTIONS(124), + [anon_sym_EQ] = ACTIONS(124), + [anon_sym_DASH] = ACTIONS(124), + [anon_sym_AT] = ACTIONS(124), + [anon_sym_LT_PIPE] = ACTIONS(122), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_QMARK_COLON] = ACTIONS(122), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_QMARK_EQ] = ACTIONS(122), + [anon_sym_STAR_EQ] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(122), + [anon_sym_BANG_TILDE] = ACTIONS(122), + [anon_sym_STAR_TILDE] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(122), + [anon_sym_GT_EQ] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(124), + [anon_sym_PLUS_EQ] = ACTIONS(122), + [anon_sym_DASH_EQ] = ACTIONS(122), + [anon_sym_u00d7] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(124), + [anon_sym_u00f7] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_u220b] = ACTIONS(122), + [anon_sym_u220c] = ACTIONS(122), + [anon_sym_u2287] = ACTIONS(122), + [anon_sym_u2283] = ACTIONS(122), + [anon_sym_u2285] = ACTIONS(122), + [anon_sym_u2208] = ACTIONS(122), + [anon_sym_u2209] = ACTIONS(122), + [anon_sym_u2286] = ACTIONS(122), + [anon_sym_u2282] = ACTIONS(122), + [anon_sym_u2284] = ACTIONS(122), + [anon_sym_AT_AT] = ACTIONS(122), + }, + [13] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(126), + [sym_keyword_if] = ACTIONS(126), + [sym_keyword_return] = ACTIONS(126), + [sym_keyword_from] = ACTIONS(126), + [sym_keyword_as] = ACTIONS(126), + [sym_keyword_omit] = ACTIONS(126), + [sym_keyword_parallel] = ACTIONS(126), + [sym_keyword_timeout] = ACTIONS(126), + [sym_keyword_where] = ACTIONS(126), + [sym_keyword_group] = ACTIONS(126), + [sym_keyword_and] = ACTIONS(126), + [sym_keyword_or] = ACTIONS(126), + [sym_keyword_is] = ACTIONS(126), + [sym_keyword_not] = ACTIONS(128), + [sym_keyword_contains] = ACTIONS(126), + [sym_keyword_contains_not] = ACTIONS(126), + [sym_keyword_contains_all] = ACTIONS(126), + [sym_keyword_contains_any] = ACTIONS(126), + [sym_keyword_contains_none] = ACTIONS(126), + [sym_keyword_inside] = ACTIONS(126), + [sym_keyword_in] = ACTIONS(128), + [sym_keyword_not_inside] = ACTIONS(126), + [sym_keyword_all_inside] = ACTIONS(126), + [sym_keyword_any_inside] = ACTIONS(126), + [sym_keyword_none_inside] = ACTIONS(126), + [sym_keyword_outside] = ACTIONS(126), + [sym_keyword_intersects] = ACTIONS(126), + [sym_keyword_drop] = ACTIONS(126), + [sym_keyword_schemafull] = ACTIONS(126), + [sym_keyword_schemaless] = ACTIONS(126), + [sym_keyword_changefeed] = ACTIONS(126), + [sym_keyword_content] = ACTIONS(126), + [sym_keyword_merge] = ACTIONS(126), + [sym_keyword_patch] = ACTIONS(126), + [sym_keyword_then] = ACTIONS(126), + [sym_keyword_type] = ACTIONS(126), + [sym_keyword_permissions] = ACTIONS(126), + [sym_keyword_for] = ACTIONS(126), + [sym_keyword_comment] = ACTIONS(126), + [sym_keyword_set] = ACTIONS(126), + [sym_keyword_unset] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_DASH_GT] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_QMARK] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_LT_DASH] = ACTIONS(128), + [anon_sym_LT_DASH_GT] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(128), + [anon_sym_DOT] = ACTIONS(128), + [anon_sym_LT] = ACTIONS(128), + [anon_sym_GT] = ACTIONS(128), + [sym_variable_name] = ACTIONS(126), + [sym_custom_function_name] = ACTIONS(126), + [anon_sym_DOT_DOT] = ACTIONS(126), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_DASH] = ACTIONS(128), + [anon_sym_AT] = ACTIONS(128), + [anon_sym_LT_PIPE] = ACTIONS(126), + [anon_sym_AMP_AMP] = ACTIONS(126), + [anon_sym_PIPE_PIPE] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(126), + [anon_sym_QMARK_COLON] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_QMARK_EQ] = ACTIONS(126), + [anon_sym_STAR_EQ] = ACTIONS(126), + [anon_sym_TILDE] = ACTIONS(126), + [anon_sym_BANG_TILDE] = ACTIONS(126), + [anon_sym_STAR_TILDE] = ACTIONS(126), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(128), + [anon_sym_PLUS_EQ] = ACTIONS(126), + [anon_sym_DASH_EQ] = ACTIONS(126), + [anon_sym_u00d7] = ACTIONS(126), + [anon_sym_SLASH] = ACTIONS(128), + [anon_sym_u00f7] = ACTIONS(126), + [anon_sym_STAR_STAR] = ACTIONS(126), + [anon_sym_u220b] = ACTIONS(126), + [anon_sym_u220c] = ACTIONS(126), + [anon_sym_u2287] = ACTIONS(126), + [anon_sym_u2283] = ACTIONS(126), + [anon_sym_u2285] = ACTIONS(126), + [anon_sym_u2208] = ACTIONS(126), + [anon_sym_u2209] = ACTIONS(126), + [anon_sym_u2286] = ACTIONS(126), + [anon_sym_u2282] = ACTIONS(126), + [anon_sym_u2284] = ACTIONS(126), + [anon_sym_AT_AT] = ACTIONS(126), + }, + [14] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(57), [sym_keyword_if] = ACTIONS(57), @@ -17314,7 +17722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(57), [anon_sym_QMARK] = ACTIONS(59), - [anon_sym_COLON] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(130), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_RBRACE] = ACTIONS(57), [anon_sym_LT_DASH] = ACTIONS(59), @@ -17361,394 +17769,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(57), [anon_sym_AT_AT] = ACTIONS(57), }, - [11] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(116), - [sym_keyword_if] = ACTIONS(116), - [sym_keyword_return] = ACTIONS(116), - [sym_keyword_from] = ACTIONS(116), - [sym_keyword_as] = ACTIONS(116), - [sym_keyword_omit] = ACTIONS(116), - [sym_keyword_parallel] = ACTIONS(116), - [sym_keyword_timeout] = ACTIONS(116), - [sym_keyword_where] = ACTIONS(116), - [sym_keyword_group] = ACTIONS(116), - [sym_keyword_and] = ACTIONS(116), - [sym_keyword_or] = ACTIONS(116), - [sym_keyword_is] = ACTIONS(116), - [sym_keyword_not] = ACTIONS(118), - [sym_keyword_contains] = ACTIONS(116), - [sym_keyword_contains_not] = ACTIONS(116), - [sym_keyword_contains_all] = ACTIONS(116), - [sym_keyword_contains_any] = ACTIONS(116), - [sym_keyword_contains_none] = ACTIONS(116), - [sym_keyword_inside] = ACTIONS(116), - [sym_keyword_in] = ACTIONS(118), - [sym_keyword_not_inside] = ACTIONS(116), - [sym_keyword_all_inside] = ACTIONS(116), - [sym_keyword_any_inside] = ACTIONS(116), - [sym_keyword_none_inside] = ACTIONS(116), - [sym_keyword_outside] = ACTIONS(116), - [sym_keyword_intersects] = ACTIONS(116), - [sym_keyword_drop] = ACTIONS(116), - [sym_keyword_schemafull] = ACTIONS(116), - [sym_keyword_schemaless] = ACTIONS(116), - [sym_keyword_changefeed] = ACTIONS(116), - [sym_keyword_content] = ACTIONS(116), - [sym_keyword_merge] = ACTIONS(116), - [sym_keyword_patch] = ACTIONS(116), - [sym_keyword_then] = ACTIONS(116), - [sym_keyword_type] = ACTIONS(116), - [sym_keyword_permissions] = ACTIONS(116), - [sym_keyword_for] = ACTIONS(116), - [sym_keyword_comment] = ACTIONS(116), - [sym_keyword_set] = ACTIONS(116), - [sym_keyword_unset] = ACTIONS(116), - [anon_sym_COMMA] = ACTIONS(116), - [anon_sym_DASH_GT] = ACTIONS(116), - [anon_sym_LBRACK] = ACTIONS(116), - [anon_sym_RBRACK] = ACTIONS(116), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(116), - [anon_sym_QMARK] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(116), - [anon_sym_RBRACE] = ACTIONS(116), - [anon_sym_LT_DASH] = ACTIONS(118), - [anon_sym_LT_DASH_GT] = ACTIONS(116), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [sym_variable_name] = ACTIONS(116), - [sym_custom_function_name] = ACTIONS(116), - [anon_sym_DOT_DOT] = ACTIONS(116), - [anon_sym_EQ] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_AT] = ACTIONS(118), - [anon_sym_LT_PIPE] = ACTIONS(116), - [anon_sym_AMP_AMP] = ACTIONS(116), - [anon_sym_PIPE_PIPE] = ACTIONS(116), - [anon_sym_QMARK_QMARK] = ACTIONS(116), - [anon_sym_QMARK_COLON] = ACTIONS(116), - [anon_sym_BANG_EQ] = ACTIONS(116), - [anon_sym_EQ_EQ] = ACTIONS(116), - [anon_sym_QMARK_EQ] = ACTIONS(116), - [anon_sym_STAR_EQ] = ACTIONS(116), - [anon_sym_TILDE] = ACTIONS(116), - [anon_sym_BANG_TILDE] = ACTIONS(116), - [anon_sym_STAR_TILDE] = ACTIONS(116), - [anon_sym_LT_EQ] = ACTIONS(116), - [anon_sym_GT_EQ] = ACTIONS(116), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(116), - [anon_sym_DASH_EQ] = ACTIONS(116), - [anon_sym_u00d7] = ACTIONS(116), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_u00f7] = ACTIONS(116), - [anon_sym_STAR_STAR] = ACTIONS(116), - [anon_sym_u220b] = ACTIONS(116), - [anon_sym_u220c] = ACTIONS(116), - [anon_sym_u2287] = ACTIONS(116), - [anon_sym_u2283] = ACTIONS(116), - [anon_sym_u2285] = ACTIONS(116), - [anon_sym_u2208] = ACTIONS(116), - [anon_sym_u2209] = ACTIONS(116), - [anon_sym_u2286] = ACTIONS(116), - [anon_sym_u2282] = ACTIONS(116), - [anon_sym_u2284] = ACTIONS(116), - [anon_sym_AT_AT] = ACTIONS(116), - }, - [12] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(120), - [sym_keyword_if] = ACTIONS(120), - [sym_keyword_return] = ACTIONS(120), - [sym_keyword_from] = ACTIONS(120), - [sym_keyword_as] = ACTIONS(120), - [sym_keyword_omit] = ACTIONS(120), - [sym_keyword_parallel] = ACTIONS(120), - [sym_keyword_timeout] = ACTIONS(120), - [sym_keyword_where] = ACTIONS(120), - [sym_keyword_group] = ACTIONS(120), - [sym_keyword_and] = ACTIONS(120), - [sym_keyword_or] = ACTIONS(120), - [sym_keyword_is] = ACTIONS(120), - [sym_keyword_not] = ACTIONS(122), - [sym_keyword_contains] = ACTIONS(120), - [sym_keyword_contains_not] = ACTIONS(120), - [sym_keyword_contains_all] = ACTIONS(120), - [sym_keyword_contains_any] = ACTIONS(120), - [sym_keyword_contains_none] = ACTIONS(120), - [sym_keyword_inside] = ACTIONS(120), - [sym_keyword_in] = ACTIONS(122), - [sym_keyword_not_inside] = ACTIONS(120), - [sym_keyword_all_inside] = ACTIONS(120), - [sym_keyword_any_inside] = ACTIONS(120), - [sym_keyword_none_inside] = ACTIONS(120), - [sym_keyword_outside] = ACTIONS(120), - [sym_keyword_intersects] = ACTIONS(120), - [sym_keyword_drop] = ACTIONS(120), - [sym_keyword_schemafull] = ACTIONS(120), - [sym_keyword_schemaless] = ACTIONS(120), - [sym_keyword_changefeed] = ACTIONS(120), - [sym_keyword_content] = ACTIONS(120), - [sym_keyword_merge] = ACTIONS(120), - [sym_keyword_patch] = ACTIONS(120), - [sym_keyword_then] = ACTIONS(120), - [sym_keyword_type] = ACTIONS(120), - [sym_keyword_permissions] = ACTIONS(120), - [sym_keyword_for] = ACTIONS(120), - [sym_keyword_comment] = ACTIONS(120), - [sym_keyword_set] = ACTIONS(120), - [sym_keyword_unset] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_DASH_GT] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(120), - [anon_sym_RBRACK] = ACTIONS(120), - [anon_sym_LPAREN] = ACTIONS(120), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_QMARK] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(120), - [anon_sym_RBRACE] = ACTIONS(120), - [anon_sym_LT_DASH] = ACTIONS(122), - [anon_sym_LT_DASH_GT] = ACTIONS(120), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_GT] = ACTIONS(122), - [sym_variable_name] = ACTIONS(120), - [sym_custom_function_name] = ACTIONS(120), - [anon_sym_DOT_DOT] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_AT] = ACTIONS(122), - [anon_sym_LT_PIPE] = ACTIONS(120), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_QMARK_COLON] = ACTIONS(120), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_QMARK_EQ] = ACTIONS(120), - [anon_sym_STAR_EQ] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(120), - [anon_sym_BANG_TILDE] = ACTIONS(120), - [anon_sym_STAR_TILDE] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(120), - [anon_sym_GT_EQ] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_PLUS_EQ] = ACTIONS(120), - [anon_sym_DASH_EQ] = ACTIONS(120), - [anon_sym_u00d7] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_u00f7] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_u220b] = ACTIONS(120), - [anon_sym_u220c] = ACTIONS(120), - [anon_sym_u2287] = ACTIONS(120), - [anon_sym_u2283] = ACTIONS(120), - [anon_sym_u2285] = ACTIONS(120), - [anon_sym_u2208] = ACTIONS(120), - [anon_sym_u2209] = ACTIONS(120), - [anon_sym_u2286] = ACTIONS(120), - [anon_sym_u2282] = ACTIONS(120), - [anon_sym_u2284] = ACTIONS(120), - [anon_sym_AT_AT] = ACTIONS(120), - }, - [13] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(124), - [sym_keyword_if] = ACTIONS(124), - [sym_keyword_return] = ACTIONS(124), - [sym_keyword_from] = ACTIONS(124), - [sym_keyword_as] = ACTIONS(124), - [sym_keyword_omit] = ACTIONS(124), - [sym_keyword_parallel] = ACTIONS(124), - [sym_keyword_timeout] = ACTIONS(124), - [sym_keyword_where] = ACTIONS(124), - [sym_keyword_group] = ACTIONS(124), - [sym_keyword_and] = ACTIONS(124), - [sym_keyword_or] = ACTIONS(124), - [sym_keyword_is] = ACTIONS(124), - [sym_keyword_not] = ACTIONS(126), - [sym_keyword_contains] = ACTIONS(124), - [sym_keyword_contains_not] = ACTIONS(124), - [sym_keyword_contains_all] = ACTIONS(124), - [sym_keyword_contains_any] = ACTIONS(124), - [sym_keyword_contains_none] = ACTIONS(124), - [sym_keyword_inside] = ACTIONS(124), - [sym_keyword_in] = ACTIONS(126), - [sym_keyword_not_inside] = ACTIONS(124), - [sym_keyword_all_inside] = ACTIONS(124), - [sym_keyword_any_inside] = ACTIONS(124), - [sym_keyword_none_inside] = ACTIONS(124), - [sym_keyword_outside] = ACTIONS(124), - [sym_keyword_intersects] = ACTIONS(124), - [sym_keyword_drop] = ACTIONS(124), - [sym_keyword_schemafull] = ACTIONS(124), - [sym_keyword_schemaless] = ACTIONS(124), - [sym_keyword_changefeed] = ACTIONS(124), - [sym_keyword_content] = ACTIONS(124), - [sym_keyword_merge] = ACTIONS(124), - [sym_keyword_patch] = ACTIONS(124), - [sym_keyword_then] = ACTIONS(124), - [sym_keyword_type] = ACTIONS(124), - [sym_keyword_permissions] = ACTIONS(124), - [sym_keyword_for] = ACTIONS(124), - [sym_keyword_comment] = ACTIONS(124), - [sym_keyword_set] = ACTIONS(124), - [sym_keyword_unset] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_DASH_GT] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(124), - [anon_sym_RBRACK] = ACTIONS(124), - [anon_sym_LPAREN] = ACTIONS(124), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_QMARK] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_LT_DASH] = ACTIONS(126), - [anon_sym_LT_DASH_GT] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_LT] = ACTIONS(126), - [anon_sym_GT] = ACTIONS(126), - [sym_variable_name] = ACTIONS(124), - [sym_custom_function_name] = ACTIONS(124), - [anon_sym_DOT_DOT] = ACTIONS(124), - [anon_sym_EQ] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), - [anon_sym_AT] = ACTIONS(126), - [anon_sym_LT_PIPE] = ACTIONS(124), - [anon_sym_AMP_AMP] = ACTIONS(124), - [anon_sym_PIPE_PIPE] = ACTIONS(124), - [anon_sym_QMARK_QMARK] = ACTIONS(124), - [anon_sym_QMARK_COLON] = ACTIONS(124), - [anon_sym_BANG_EQ] = ACTIONS(124), - [anon_sym_EQ_EQ] = ACTIONS(124), - [anon_sym_QMARK_EQ] = ACTIONS(124), - [anon_sym_STAR_EQ] = ACTIONS(124), - [anon_sym_TILDE] = ACTIONS(124), - [anon_sym_BANG_TILDE] = ACTIONS(124), - [anon_sym_STAR_TILDE] = ACTIONS(124), - [anon_sym_LT_EQ] = ACTIONS(124), - [anon_sym_GT_EQ] = ACTIONS(124), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_PLUS_EQ] = ACTIONS(124), - [anon_sym_DASH_EQ] = ACTIONS(124), - [anon_sym_u00d7] = ACTIONS(124), - [anon_sym_SLASH] = ACTIONS(126), - [anon_sym_u00f7] = ACTIONS(124), - [anon_sym_STAR_STAR] = ACTIONS(124), - [anon_sym_u220b] = ACTIONS(124), - [anon_sym_u220c] = ACTIONS(124), - [anon_sym_u2287] = ACTIONS(124), - [anon_sym_u2283] = ACTIONS(124), - [anon_sym_u2285] = ACTIONS(124), - [anon_sym_u2208] = ACTIONS(124), - [anon_sym_u2209] = ACTIONS(124), - [anon_sym_u2286] = ACTIONS(124), - [anon_sym_u2282] = ACTIONS(124), - [anon_sym_u2284] = ACTIONS(124), - [anon_sym_AT_AT] = ACTIONS(124), - }, - [14] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(128), - [sym_keyword_if] = ACTIONS(128), - [sym_keyword_return] = ACTIONS(128), - [sym_keyword_from] = ACTIONS(128), - [sym_keyword_as] = ACTIONS(128), - [sym_keyword_omit] = ACTIONS(128), - [sym_keyword_parallel] = ACTIONS(128), - [sym_keyword_timeout] = ACTIONS(128), - [sym_keyword_where] = ACTIONS(128), - [sym_keyword_group] = ACTIONS(128), - [sym_keyword_and] = ACTIONS(128), - [sym_keyword_or] = ACTIONS(128), - [sym_keyword_is] = ACTIONS(128), - [sym_keyword_not] = ACTIONS(130), - [sym_keyword_contains] = ACTIONS(128), - [sym_keyword_contains_not] = ACTIONS(128), - [sym_keyword_contains_all] = ACTIONS(128), - [sym_keyword_contains_any] = ACTIONS(128), - [sym_keyword_contains_none] = ACTIONS(128), - [sym_keyword_inside] = ACTIONS(128), - [sym_keyword_in] = ACTIONS(130), - [sym_keyword_not_inside] = ACTIONS(128), - [sym_keyword_all_inside] = ACTIONS(128), - [sym_keyword_any_inside] = ACTIONS(128), - [sym_keyword_none_inside] = ACTIONS(128), - [sym_keyword_outside] = ACTIONS(128), - [sym_keyword_intersects] = ACTIONS(128), - [sym_keyword_drop] = ACTIONS(128), - [sym_keyword_schemafull] = ACTIONS(128), - [sym_keyword_schemaless] = ACTIONS(128), - [sym_keyword_changefeed] = ACTIONS(128), - [sym_keyword_content] = ACTIONS(128), - [sym_keyword_merge] = ACTIONS(128), - [sym_keyword_patch] = ACTIONS(128), - [sym_keyword_then] = ACTIONS(128), - [sym_keyword_type] = ACTIONS(128), - [sym_keyword_permissions] = ACTIONS(128), - [sym_keyword_for] = ACTIONS(128), - [sym_keyword_comment] = ACTIONS(128), - [sym_keyword_set] = ACTIONS(128), - [sym_keyword_unset] = ACTIONS(128), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_DASH_GT] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_QMARK] = ACTIONS(130), - [anon_sym_LBRACE] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_LT_DASH] = ACTIONS(130), - [anon_sym_LT_DASH_GT] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(130), - [anon_sym_LT] = ACTIONS(130), - [anon_sym_GT] = ACTIONS(130), - [sym_variable_name] = ACTIONS(128), - [sym_custom_function_name] = ACTIONS(128), - [anon_sym_DOT_DOT] = ACTIONS(128), - [anon_sym_EQ] = ACTIONS(130), - [anon_sym_DASH] = ACTIONS(130), - [anon_sym_AT] = ACTIONS(130), - [anon_sym_LT_PIPE] = ACTIONS(128), - [anon_sym_AMP_AMP] = ACTIONS(128), - [anon_sym_PIPE_PIPE] = ACTIONS(128), - [anon_sym_QMARK_QMARK] = ACTIONS(128), - [anon_sym_QMARK_COLON] = ACTIONS(128), - [anon_sym_BANG_EQ] = ACTIONS(128), - [anon_sym_EQ_EQ] = ACTIONS(128), - [anon_sym_QMARK_EQ] = ACTIONS(128), - [anon_sym_STAR_EQ] = ACTIONS(128), - [anon_sym_TILDE] = ACTIONS(128), - [anon_sym_BANG_TILDE] = ACTIONS(128), - [anon_sym_STAR_TILDE] = ACTIONS(128), - [anon_sym_LT_EQ] = ACTIONS(128), - [anon_sym_GT_EQ] = ACTIONS(128), - [anon_sym_PLUS] = ACTIONS(130), - [anon_sym_PLUS_EQ] = ACTIONS(128), - [anon_sym_DASH_EQ] = ACTIONS(128), - [anon_sym_u00d7] = ACTIONS(128), - [anon_sym_SLASH] = ACTIONS(130), - [anon_sym_u00f7] = ACTIONS(128), - [anon_sym_STAR_STAR] = ACTIONS(128), - [anon_sym_u220b] = ACTIONS(128), - [anon_sym_u220c] = ACTIONS(128), - [anon_sym_u2287] = ACTIONS(128), - [anon_sym_u2283] = ACTIONS(128), - [anon_sym_u2285] = ACTIONS(128), - [anon_sym_u2208] = ACTIONS(128), - [anon_sym_u2209] = ACTIONS(128), - [anon_sym_u2286] = ACTIONS(128), - [anon_sym_u2282] = ACTIONS(128), - [anon_sym_u2284] = ACTIONS(128), - [anon_sym_AT_AT] = ACTIONS(128), - }, [15] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(132), @@ -18040,6 +18060,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(140), }, [18] = { + [ts_builtin_sym_end] = ACTIONS(136), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(136), + [sym_keyword_return] = ACTIONS(136), + [sym_keyword_value] = ACTIONS(136), + [sym_keyword_explain] = ACTIONS(136), + [sym_keyword_parallel] = ACTIONS(136), + [sym_keyword_timeout] = ACTIONS(136), + [sym_keyword_fetch] = ACTIONS(136), + [sym_keyword_limit] = ACTIONS(136), + [sym_keyword_rand] = ACTIONS(136), + [sym_keyword_collate] = ACTIONS(136), + [sym_keyword_numeric] = ACTIONS(136), + [sym_keyword_asc] = ACTIONS(136), + [sym_keyword_desc] = ACTIONS(136), + [sym_keyword_where] = ACTIONS(136), + [sym_keyword_and] = ACTIONS(136), + [sym_keyword_or] = ACTIONS(136), + [sym_keyword_is] = ACTIONS(136), + [sym_keyword_not] = ACTIONS(138), + [sym_keyword_contains] = ACTIONS(136), + [sym_keyword_contains_not] = ACTIONS(136), + [sym_keyword_contains_all] = ACTIONS(136), + [sym_keyword_contains_any] = ACTIONS(136), + [sym_keyword_contains_none] = ACTIONS(136), + [sym_keyword_inside] = ACTIONS(136), + [sym_keyword_in] = ACTIONS(138), + [sym_keyword_not_inside] = ACTIONS(136), + [sym_keyword_all_inside] = ACTIONS(136), + [sym_keyword_any_inside] = ACTIONS(136), + [sym_keyword_none_inside] = ACTIONS(136), + [sym_keyword_outside] = ACTIONS(136), + [sym_keyword_intersects] = ACTIONS(136), + [sym_keyword_flexible] = ACTIONS(136), + [sym_keyword_readonly] = ACTIONS(136), + [sym_keyword_content] = ACTIONS(136), + [sym_keyword_merge] = ACTIONS(136), + [sym_keyword_patch] = ACTIONS(136), + [sym_keyword_type] = ACTIONS(136), + [sym_keyword_default] = ACTIONS(136), + [sym_keyword_assert] = ACTIONS(136), + [sym_keyword_permissions] = ACTIONS(136), + [sym_keyword_for] = ACTIONS(136), + [sym_keyword_comment] = ACTIONS(136), + [sym_keyword_set] = ACTIONS(136), + [sym_keyword_unset] = ACTIONS(136), + [anon_sym_COMMA] = ACTIONS(136), + [anon_sym_DASH_GT] = ACTIONS(136), + [anon_sym_LBRACK] = ACTIONS(136), + [anon_sym_RBRACK] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(136), + [anon_sym_RBRACE] = ACTIONS(136), + [anon_sym_LT_DASH] = ACTIONS(138), + [anon_sym_LT_DASH_GT] = ACTIONS(136), + [anon_sym_STAR] = ACTIONS(138), + [anon_sym_DOT] = ACTIONS(138), + [anon_sym_LT] = ACTIONS(138), + [anon_sym_GT] = ACTIONS(138), + [anon_sym_DOT_DOT] = ACTIONS(136), + [anon_sym_EQ] = ACTIONS(138), + [anon_sym_DASH] = ACTIONS(138), + [anon_sym_AT] = ACTIONS(138), + [anon_sym_LT_PIPE] = ACTIONS(136), + [anon_sym_AMP_AMP] = ACTIONS(136), + [anon_sym_PIPE_PIPE] = ACTIONS(136), + [anon_sym_QMARK_QMARK] = ACTIONS(136), + [anon_sym_QMARK_COLON] = ACTIONS(136), + [anon_sym_BANG_EQ] = ACTIONS(136), + [anon_sym_EQ_EQ] = ACTIONS(136), + [anon_sym_QMARK_EQ] = ACTIONS(136), + [anon_sym_STAR_EQ] = ACTIONS(136), + [anon_sym_TILDE] = ACTIONS(136), + [anon_sym_BANG_TILDE] = ACTIONS(136), + [anon_sym_STAR_TILDE] = ACTIONS(136), + [anon_sym_LT_EQ] = ACTIONS(136), + [anon_sym_GT_EQ] = ACTIONS(136), + [anon_sym_PLUS] = ACTIONS(138), + [anon_sym_PLUS_EQ] = ACTIONS(136), + [anon_sym_DASH_EQ] = ACTIONS(136), + [anon_sym_u00d7] = ACTIONS(136), + [anon_sym_SLASH] = ACTIONS(138), + [anon_sym_u00f7] = ACTIONS(136), + [anon_sym_STAR_STAR] = ACTIONS(136), + [anon_sym_u220b] = ACTIONS(136), + [anon_sym_u220c] = ACTIONS(136), + [anon_sym_u2287] = ACTIONS(136), + [anon_sym_u2283] = ACTIONS(136), + [anon_sym_u2285] = ACTIONS(136), + [anon_sym_u2208] = ACTIONS(136), + [anon_sym_u2209] = ACTIONS(136), + [anon_sym_u2286] = ACTIONS(136), + [anon_sym_u2282] = ACTIONS(136), + [anon_sym_u2284] = ACTIONS(136), + [anon_sym_AT_AT] = ACTIONS(136), + }, + [19] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(144), [sym_keyword_if] = ACTIONS(144), @@ -18135,7 +18251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(144), [anon_sym_AT_AT] = ACTIONS(144), }, - [19] = { + [20] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(148), [sym_keyword_if] = ACTIONS(148), @@ -18231,7 +18347,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(148), [anon_sym_AT_AT] = ACTIONS(148), }, - [20] = { + [21] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(57), + [sym_keyword_if] = ACTIONS(57), + [sym_keyword_return] = ACTIONS(57), + [sym_keyword_from] = ACTIONS(57), + [sym_keyword_as] = ACTIONS(57), + [sym_keyword_omit] = ACTIONS(57), + [sym_keyword_parallel] = ACTIONS(57), + [sym_keyword_timeout] = ACTIONS(57), + [sym_keyword_where] = ACTIONS(57), + [sym_keyword_group] = ACTIONS(57), + [sym_keyword_and] = ACTIONS(57), + [sym_keyword_or] = ACTIONS(57), + [sym_keyword_is] = ACTIONS(57), + [sym_keyword_not] = ACTIONS(59), + [sym_keyword_contains] = ACTIONS(57), + [sym_keyword_contains_not] = ACTIONS(57), + [sym_keyword_contains_all] = ACTIONS(57), + [sym_keyword_contains_any] = ACTIONS(57), + [sym_keyword_contains_none] = ACTIONS(57), + [sym_keyword_inside] = ACTIONS(57), + [sym_keyword_in] = ACTIONS(59), + [sym_keyword_not_inside] = ACTIONS(57), + [sym_keyword_all_inside] = ACTIONS(57), + [sym_keyword_any_inside] = ACTIONS(57), + [sym_keyword_none_inside] = ACTIONS(57), + [sym_keyword_outside] = ACTIONS(57), + [sym_keyword_intersects] = ACTIONS(57), + [sym_keyword_drop] = ACTIONS(57), + [sym_keyword_schemafull] = ACTIONS(57), + [sym_keyword_schemaless] = ACTIONS(57), + [sym_keyword_changefeed] = ACTIONS(57), + [sym_keyword_content] = ACTIONS(57), + [sym_keyword_merge] = ACTIONS(57), + [sym_keyword_patch] = ACTIONS(57), + [sym_keyword_then] = ACTIONS(57), + [sym_keyword_type] = ACTIONS(57), + [sym_keyword_permissions] = ACTIONS(57), + [sym_keyword_for] = ACTIONS(57), + [sym_keyword_comment] = ACTIONS(57), + [sym_keyword_set] = ACTIONS(57), + [sym_keyword_unset] = ACTIONS(57), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_DASH_GT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_RBRACK] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(57), + [anon_sym_QMARK] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_RBRACE] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [anon_sym_LT_DASH_GT] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_DOT] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_GT] = ACTIONS(59), + [sym_variable_name] = ACTIONS(57), + [sym_custom_function_name] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LT_PIPE] = ACTIONS(57), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_QMARK_COLON] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_QMARK_EQ] = ACTIONS(57), + [anon_sym_STAR_EQ] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG_TILDE] = ACTIONS(57), + [anon_sym_STAR_TILDE] = ACTIONS(57), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_DASH_EQ] = ACTIONS(57), + [anon_sym_u00d7] = ACTIONS(57), + [anon_sym_SLASH] = ACTIONS(59), + [anon_sym_u00f7] = ACTIONS(57), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_u220b] = ACTIONS(57), + [anon_sym_u220c] = ACTIONS(57), + [anon_sym_u2287] = ACTIONS(57), + [anon_sym_u2283] = ACTIONS(57), + [anon_sym_u2285] = ACTIONS(57), + [anon_sym_u2208] = ACTIONS(57), + [anon_sym_u2209] = ACTIONS(57), + [anon_sym_u2286] = ACTIONS(57), + [anon_sym_u2282] = ACTIONS(57), + [anon_sym_u2284] = ACTIONS(57), + [anon_sym_AT_AT] = ACTIONS(57), + }, + [22] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(152), [sym_keyword_if] = ACTIONS(152), @@ -18327,7 +18539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(152), [anon_sym_AT_AT] = ACTIONS(152), }, - [21] = { + [23] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(156), [sym_keyword_if] = ACTIONS(156), @@ -18423,7 +18635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(156), [anon_sym_AT_AT] = ACTIONS(156), }, - [22] = { + [24] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(160), [sym_keyword_if] = ACTIONS(160), @@ -18519,7 +18731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, - [23] = { + [25] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(164), [sym_keyword_if] = ACTIONS(164), @@ -18615,7 +18827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(164), [anon_sym_AT_AT] = ACTIONS(164), }, - [24] = { + [26] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(168), [sym_keyword_if] = ACTIONS(168), @@ -18711,103 +18923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(168), [anon_sym_AT_AT] = ACTIONS(168), }, - [25] = { - [ts_builtin_sym_end] = ACTIONS(120), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(120), - [sym_keyword_return] = ACTIONS(120), - [sym_keyword_value] = ACTIONS(120), - [sym_keyword_explain] = ACTIONS(120), - [sym_keyword_parallel] = ACTIONS(120), - [sym_keyword_timeout] = ACTIONS(120), - [sym_keyword_fetch] = ACTIONS(120), - [sym_keyword_limit] = ACTIONS(120), - [sym_keyword_rand] = ACTIONS(120), - [sym_keyword_collate] = ACTIONS(120), - [sym_keyword_numeric] = ACTIONS(120), - [sym_keyword_asc] = ACTIONS(120), - [sym_keyword_desc] = ACTIONS(120), - [sym_keyword_where] = ACTIONS(120), - [sym_keyword_and] = ACTIONS(120), - [sym_keyword_or] = ACTIONS(120), - [sym_keyword_is] = ACTIONS(120), - [sym_keyword_not] = ACTIONS(122), - [sym_keyword_contains] = ACTIONS(120), - [sym_keyword_contains_not] = ACTIONS(120), - [sym_keyword_contains_all] = ACTIONS(120), - [sym_keyword_contains_any] = ACTIONS(120), - [sym_keyword_contains_none] = ACTIONS(120), - [sym_keyword_inside] = ACTIONS(120), - [sym_keyword_in] = ACTIONS(122), - [sym_keyword_not_inside] = ACTIONS(120), - [sym_keyword_all_inside] = ACTIONS(120), - [sym_keyword_any_inside] = ACTIONS(120), - [sym_keyword_none_inside] = ACTIONS(120), - [sym_keyword_outside] = ACTIONS(120), - [sym_keyword_intersects] = ACTIONS(120), - [sym_keyword_flexible] = ACTIONS(120), - [sym_keyword_readonly] = ACTIONS(120), - [sym_keyword_content] = ACTIONS(120), - [sym_keyword_merge] = ACTIONS(120), - [sym_keyword_patch] = ACTIONS(120), - [sym_keyword_type] = ACTIONS(120), - [sym_keyword_default] = ACTIONS(120), - [sym_keyword_assert] = ACTIONS(120), - [sym_keyword_permissions] = ACTIONS(120), - [sym_keyword_for] = ACTIONS(120), - [sym_keyword_comment] = ACTIONS(120), - [sym_keyword_set] = ACTIONS(120), - [sym_keyword_unset] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_DASH_GT] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(120), - [anon_sym_RBRACK] = ACTIONS(120), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_RBRACE] = ACTIONS(120), - [anon_sym_LT_DASH] = ACTIONS(122), - [anon_sym_LT_DASH_GT] = ACTIONS(120), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_AT] = ACTIONS(122), - [anon_sym_LT_PIPE] = ACTIONS(120), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_QMARK_COLON] = ACTIONS(120), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_QMARK_EQ] = ACTIONS(120), - [anon_sym_STAR_EQ] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(120), - [anon_sym_BANG_TILDE] = ACTIONS(120), - [anon_sym_STAR_TILDE] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(120), - [anon_sym_GT_EQ] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_PLUS_EQ] = ACTIONS(120), - [anon_sym_DASH_EQ] = ACTIONS(120), - [anon_sym_u00d7] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_u00f7] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_u220b] = ACTIONS(120), - [anon_sym_u220c] = ACTIONS(120), - [anon_sym_u2287] = ACTIONS(120), - [anon_sym_u2283] = ACTIONS(120), - [anon_sym_u2285] = ACTIONS(120), - [anon_sym_u2208] = ACTIONS(120), - [anon_sym_u2209] = ACTIONS(120), - [anon_sym_u2286] = ACTIONS(120), - [anon_sym_u2282] = ACTIONS(120), - [anon_sym_u2284] = ACTIONS(120), - [anon_sym_AT_AT] = ACTIONS(120), - }, - [26] = { + [27] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(172), [sym_keyword_if] = ACTIONS(172), @@ -18903,102 +19019,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(172), [anon_sym_AT_AT] = ACTIONS(172), }, - [27] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(57), - [sym_keyword_if] = ACTIONS(57), - [sym_keyword_return] = ACTIONS(57), - [sym_keyword_from] = ACTIONS(57), - [sym_keyword_as] = ACTIONS(57), - [sym_keyword_omit] = ACTIONS(57), - [sym_keyword_parallel] = ACTIONS(57), - [sym_keyword_timeout] = ACTIONS(57), - [sym_keyword_where] = ACTIONS(57), - [sym_keyword_group] = ACTIONS(57), - [sym_keyword_and] = ACTIONS(57), - [sym_keyword_or] = ACTIONS(57), - [sym_keyword_is] = ACTIONS(57), - [sym_keyword_not] = ACTIONS(59), - [sym_keyword_contains] = ACTIONS(57), - [sym_keyword_contains_not] = ACTIONS(57), - [sym_keyword_contains_all] = ACTIONS(57), - [sym_keyword_contains_any] = ACTIONS(57), - [sym_keyword_contains_none] = ACTIONS(57), - [sym_keyword_inside] = ACTIONS(57), - [sym_keyword_in] = ACTIONS(59), - [sym_keyword_not_inside] = ACTIONS(57), - [sym_keyword_all_inside] = ACTIONS(57), - [sym_keyword_any_inside] = ACTIONS(57), - [sym_keyword_none_inside] = ACTIONS(57), - [sym_keyword_outside] = ACTIONS(57), - [sym_keyword_intersects] = ACTIONS(57), - [sym_keyword_drop] = ACTIONS(57), - [sym_keyword_schemafull] = ACTIONS(57), - [sym_keyword_schemaless] = ACTIONS(57), - [sym_keyword_changefeed] = ACTIONS(57), - [sym_keyword_content] = ACTIONS(57), - [sym_keyword_merge] = ACTIONS(57), - [sym_keyword_patch] = ACTIONS(57), - [sym_keyword_then] = ACTIONS(57), - [sym_keyword_type] = ACTIONS(57), - [sym_keyword_permissions] = ACTIONS(57), - [sym_keyword_for] = ACTIONS(57), - [sym_keyword_comment] = ACTIONS(57), - [sym_keyword_set] = ACTIONS(57), - [sym_keyword_unset] = ACTIONS(57), - [anon_sym_COMMA] = ACTIONS(57), - [anon_sym_DASH_GT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_RBRACK] = ACTIONS(57), - [anon_sym_LPAREN] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(57), - [anon_sym_QMARK] = ACTIONS(59), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_RBRACE] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [anon_sym_LT_DASH_GT] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_GT] = ACTIONS(59), - [sym_variable_name] = ACTIONS(57), - [sym_custom_function_name] = ACTIONS(57), - [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(59), - [anon_sym_LT_PIPE] = ACTIONS(57), - [anon_sym_AMP_AMP] = ACTIONS(57), - [anon_sym_PIPE_PIPE] = ACTIONS(57), - [anon_sym_QMARK_QMARK] = ACTIONS(57), - [anon_sym_QMARK_COLON] = ACTIONS(57), - [anon_sym_BANG_EQ] = ACTIONS(57), - [anon_sym_EQ_EQ] = ACTIONS(57), - [anon_sym_QMARK_EQ] = ACTIONS(57), - [anon_sym_STAR_EQ] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_BANG_TILDE] = ACTIONS(57), - [anon_sym_STAR_TILDE] = ACTIONS(57), - [anon_sym_LT_EQ] = ACTIONS(57), - [anon_sym_GT_EQ] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_PLUS_EQ] = ACTIONS(57), - [anon_sym_DASH_EQ] = ACTIONS(57), - [anon_sym_u00d7] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_u00f7] = ACTIONS(57), - [anon_sym_STAR_STAR] = ACTIONS(57), - [anon_sym_u220b] = ACTIONS(57), - [anon_sym_u220c] = ACTIONS(57), - [anon_sym_u2287] = ACTIONS(57), - [anon_sym_u2283] = ACTIONS(57), - [anon_sym_u2285] = ACTIONS(57), - [anon_sym_u2208] = ACTIONS(57), - [anon_sym_u2209] = ACTIONS(57), - [anon_sym_u2286] = ACTIONS(57), - [anon_sym_u2282] = ACTIONS(57), - [anon_sym_u2284] = ACTIONS(57), - [anon_sym_AT_AT] = ACTIONS(57), - }, [28] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(176), @@ -19096,6 +19116,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(176), }, [29] = { + [ts_builtin_sym_end] = ACTIONS(126), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(126), + [sym_keyword_return] = ACTIONS(126), + [sym_keyword_value] = ACTIONS(126), + [sym_keyword_explain] = ACTIONS(126), + [sym_keyword_parallel] = ACTIONS(126), + [sym_keyword_timeout] = ACTIONS(126), + [sym_keyword_fetch] = ACTIONS(126), + [sym_keyword_limit] = ACTIONS(126), + [sym_keyword_rand] = ACTIONS(126), + [sym_keyword_collate] = ACTIONS(126), + [sym_keyword_numeric] = ACTIONS(126), + [sym_keyword_asc] = ACTIONS(126), + [sym_keyword_desc] = ACTIONS(126), + [sym_keyword_where] = ACTIONS(126), + [sym_keyword_and] = ACTIONS(126), + [sym_keyword_or] = ACTIONS(126), + [sym_keyword_is] = ACTIONS(126), + [sym_keyword_not] = ACTIONS(128), + [sym_keyword_contains] = ACTIONS(126), + [sym_keyword_contains_not] = ACTIONS(126), + [sym_keyword_contains_all] = ACTIONS(126), + [sym_keyword_contains_any] = ACTIONS(126), + [sym_keyword_contains_none] = ACTIONS(126), + [sym_keyword_inside] = ACTIONS(126), + [sym_keyword_in] = ACTIONS(128), + [sym_keyword_not_inside] = ACTIONS(126), + [sym_keyword_all_inside] = ACTIONS(126), + [sym_keyword_any_inside] = ACTIONS(126), + [sym_keyword_none_inside] = ACTIONS(126), + [sym_keyword_outside] = ACTIONS(126), + [sym_keyword_intersects] = ACTIONS(126), + [sym_keyword_flexible] = ACTIONS(126), + [sym_keyword_readonly] = ACTIONS(126), + [sym_keyword_content] = ACTIONS(126), + [sym_keyword_merge] = ACTIONS(126), + [sym_keyword_patch] = ACTIONS(126), + [sym_keyword_type] = ACTIONS(126), + [sym_keyword_default] = ACTIONS(126), + [sym_keyword_assert] = ACTIONS(126), + [sym_keyword_permissions] = ACTIONS(126), + [sym_keyword_for] = ACTIONS(126), + [sym_keyword_comment] = ACTIONS(126), + [sym_keyword_set] = ACTIONS(126), + [sym_keyword_unset] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_DASH_GT] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_RBRACK] = ACTIONS(126), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_LT_DASH] = ACTIONS(128), + [anon_sym_LT_DASH_GT] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(128), + [anon_sym_DOT] = ACTIONS(128), + [anon_sym_LT] = ACTIONS(128), + [anon_sym_GT] = ACTIONS(128), + [anon_sym_DOT_DOT] = ACTIONS(126), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_DASH] = ACTIONS(128), + [anon_sym_AT] = ACTIONS(128), + [anon_sym_LT_PIPE] = ACTIONS(126), + [anon_sym_AMP_AMP] = ACTIONS(126), + [anon_sym_PIPE_PIPE] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(126), + [anon_sym_QMARK_COLON] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_QMARK_EQ] = ACTIONS(126), + [anon_sym_STAR_EQ] = ACTIONS(126), + [anon_sym_TILDE] = ACTIONS(126), + [anon_sym_BANG_TILDE] = ACTIONS(126), + [anon_sym_STAR_TILDE] = ACTIONS(126), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(128), + [anon_sym_PLUS_EQ] = ACTIONS(126), + [anon_sym_DASH_EQ] = ACTIONS(126), + [anon_sym_u00d7] = ACTIONS(126), + [anon_sym_SLASH] = ACTIONS(128), + [anon_sym_u00f7] = ACTIONS(126), + [anon_sym_STAR_STAR] = ACTIONS(126), + [anon_sym_u220b] = ACTIONS(126), + [anon_sym_u220c] = ACTIONS(126), + [anon_sym_u2287] = ACTIONS(126), + [anon_sym_u2283] = ACTIONS(126), + [anon_sym_u2285] = ACTIONS(126), + [anon_sym_u2208] = ACTIONS(126), + [anon_sym_u2209] = ACTIONS(126), + [anon_sym_u2286] = ACTIONS(126), + [anon_sym_u2282] = ACTIONS(126), + [anon_sym_u2284] = ACTIONS(126), + [anon_sym_AT_AT] = ACTIONS(126), + }, + [30] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(180), [sym_keyword_if] = ACTIONS(180), @@ -19191,7 +19307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(180), [anon_sym_AT_AT] = ACTIONS(180), }, - [30] = { + [31] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(184), [sym_keyword_if] = ACTIONS(184), @@ -19287,7 +19403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(184), [anon_sym_AT_AT] = ACTIONS(184), }, - [31] = { + [32] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(188), [sym_keyword_if] = ACTIONS(188), @@ -19383,102 +19499,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(188), [anon_sym_AT_AT] = ACTIONS(188), }, - [32] = { - [ts_builtin_sym_end] = ACTIONS(132), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(132), - [sym_keyword_return] = ACTIONS(132), - [sym_keyword_value] = ACTIONS(132), - [sym_keyword_explain] = ACTIONS(132), - [sym_keyword_parallel] = ACTIONS(132), - [sym_keyword_timeout] = ACTIONS(132), - [sym_keyword_fetch] = ACTIONS(132), - [sym_keyword_limit] = ACTIONS(132), - [sym_keyword_rand] = ACTIONS(132), - [sym_keyword_collate] = ACTIONS(132), - [sym_keyword_numeric] = ACTIONS(132), - [sym_keyword_asc] = ACTIONS(132), - [sym_keyword_desc] = ACTIONS(132), - [sym_keyword_where] = ACTIONS(132), - [sym_keyword_and] = ACTIONS(132), - [sym_keyword_or] = ACTIONS(132), - [sym_keyword_is] = ACTIONS(132), - [sym_keyword_not] = ACTIONS(134), - [sym_keyword_contains] = ACTIONS(132), - [sym_keyword_contains_not] = ACTIONS(132), - [sym_keyword_contains_all] = ACTIONS(132), - [sym_keyword_contains_any] = ACTIONS(132), - [sym_keyword_contains_none] = ACTIONS(132), - [sym_keyword_inside] = ACTIONS(132), - [sym_keyword_in] = ACTIONS(134), - [sym_keyword_not_inside] = ACTIONS(132), - [sym_keyword_all_inside] = ACTIONS(132), - [sym_keyword_any_inside] = ACTIONS(132), - [sym_keyword_none_inside] = ACTIONS(132), - [sym_keyword_outside] = ACTIONS(132), - [sym_keyword_intersects] = ACTIONS(132), - [sym_keyword_flexible] = ACTIONS(132), - [sym_keyword_readonly] = ACTIONS(132), - [sym_keyword_content] = ACTIONS(132), - [sym_keyword_merge] = ACTIONS(132), - [sym_keyword_patch] = ACTIONS(132), - [sym_keyword_type] = ACTIONS(132), - [sym_keyword_default] = ACTIONS(132), - [sym_keyword_assert] = ACTIONS(132), - [sym_keyword_permissions] = ACTIONS(132), - [sym_keyword_for] = ACTIONS(132), - [sym_keyword_comment] = ACTIONS(132), - [sym_keyword_set] = ACTIONS(132), - [sym_keyword_unset] = ACTIONS(132), - [anon_sym_COMMA] = ACTIONS(132), - [anon_sym_DASH_GT] = ACTIONS(132), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_RBRACK] = ACTIONS(132), - [anon_sym_RPAREN] = ACTIONS(132), - [anon_sym_RBRACE] = ACTIONS(132), - [anon_sym_LT_DASH] = ACTIONS(134), - [anon_sym_LT_DASH_GT] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(134), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_LT] = ACTIONS(134), - [anon_sym_GT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(132), - [anon_sym_EQ] = ACTIONS(134), - [anon_sym_DASH] = ACTIONS(134), - [anon_sym_AT] = ACTIONS(134), - [anon_sym_LT_PIPE] = ACTIONS(132), - [anon_sym_AMP_AMP] = ACTIONS(132), - [anon_sym_PIPE_PIPE] = ACTIONS(132), - [anon_sym_QMARK_QMARK] = ACTIONS(132), - [anon_sym_QMARK_COLON] = ACTIONS(132), - [anon_sym_BANG_EQ] = ACTIONS(132), - [anon_sym_EQ_EQ] = ACTIONS(132), - [anon_sym_QMARK_EQ] = ACTIONS(132), - [anon_sym_STAR_EQ] = ACTIONS(132), - [anon_sym_TILDE] = ACTIONS(132), - [anon_sym_BANG_TILDE] = ACTIONS(132), - [anon_sym_STAR_TILDE] = ACTIONS(132), - [anon_sym_LT_EQ] = ACTIONS(132), - [anon_sym_GT_EQ] = ACTIONS(132), - [anon_sym_PLUS] = ACTIONS(134), - [anon_sym_PLUS_EQ] = ACTIONS(132), - [anon_sym_DASH_EQ] = ACTIONS(132), - [anon_sym_u00d7] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(134), - [anon_sym_u00f7] = ACTIONS(132), - [anon_sym_STAR_STAR] = ACTIONS(132), - [anon_sym_u220b] = ACTIONS(132), - [anon_sym_u220c] = ACTIONS(132), - [anon_sym_u2287] = ACTIONS(132), - [anon_sym_u2283] = ACTIONS(132), - [anon_sym_u2285] = ACTIONS(132), - [anon_sym_u2208] = ACTIONS(132), - [anon_sym_u2209] = ACTIONS(132), - [anon_sym_u2286] = ACTIONS(132), - [anon_sym_u2282] = ACTIONS(132), - [anon_sym_u2284] = ACTIONS(132), - [anon_sym_AT_AT] = ACTIONS(132), - }, [33] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(192), @@ -19672,102 +19692,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(196), }, [35] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(110), - [sym_keyword_if] = ACTIONS(110), - [sym_keyword_return] = ACTIONS(110), - [sym_keyword_from] = ACTIONS(110), - [sym_keyword_as] = ACTIONS(110), - [sym_keyword_omit] = ACTIONS(110), - [sym_keyword_parallel] = ACTIONS(110), - [sym_keyword_timeout] = ACTIONS(110), - [sym_keyword_where] = ACTIONS(110), - [sym_keyword_group] = ACTIONS(110), - [sym_keyword_and] = ACTIONS(110), - [sym_keyword_or] = ACTIONS(110), - [sym_keyword_is] = ACTIONS(110), - [sym_keyword_not] = ACTIONS(112), - [sym_keyword_contains] = ACTIONS(110), - [sym_keyword_contains_not] = ACTIONS(110), - [sym_keyword_contains_all] = ACTIONS(110), - [sym_keyword_contains_any] = ACTIONS(110), - [sym_keyword_contains_none] = ACTIONS(110), - [sym_keyword_inside] = ACTIONS(110), - [sym_keyword_in] = ACTIONS(112), - [sym_keyword_not_inside] = ACTIONS(110), - [sym_keyword_all_inside] = ACTIONS(110), - [sym_keyword_any_inside] = ACTIONS(110), - [sym_keyword_none_inside] = ACTIONS(110), - [sym_keyword_outside] = ACTIONS(110), - [sym_keyword_intersects] = ACTIONS(110), - [sym_keyword_drop] = ACTIONS(110), - [sym_keyword_schemafull] = ACTIONS(110), - [sym_keyword_schemaless] = ACTIONS(110), - [sym_keyword_changefeed] = ACTIONS(110), - [sym_keyword_content] = ACTIONS(110), - [sym_keyword_merge] = ACTIONS(110), - [sym_keyword_patch] = ACTIONS(110), - [sym_keyword_then] = ACTIONS(110), - [sym_keyword_type] = ACTIONS(110), - [sym_keyword_permissions] = ACTIONS(110), - [sym_keyword_for] = ACTIONS(110), - [sym_keyword_comment] = ACTIONS(110), - [sym_keyword_set] = ACTIONS(110), - [sym_keyword_unset] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(110), - [anon_sym_DASH_GT] = ACTIONS(110), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_RBRACK] = ACTIONS(110), - [anon_sym_LPAREN] = ACTIONS(110), - [anon_sym_RPAREN] = ACTIONS(110), - [anon_sym_QMARK] = ACTIONS(112), - [anon_sym_LBRACE] = ACTIONS(110), - [anon_sym_RBRACE] = ACTIONS(110), - [anon_sym_LT_DASH] = ACTIONS(112), - [anon_sym_LT_DASH_GT] = ACTIONS(110), - [anon_sym_STAR] = ACTIONS(112), - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_LT] = ACTIONS(112), - [anon_sym_GT] = ACTIONS(112), - [sym_variable_name] = ACTIONS(110), - [sym_custom_function_name] = ACTIONS(110), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_DASH] = ACTIONS(112), - [anon_sym_AT] = ACTIONS(112), - [anon_sym_LT_PIPE] = ACTIONS(110), - [anon_sym_AMP_AMP] = ACTIONS(110), - [anon_sym_PIPE_PIPE] = ACTIONS(110), - [anon_sym_QMARK_QMARK] = ACTIONS(110), - [anon_sym_QMARK_COLON] = ACTIONS(110), - [anon_sym_BANG_EQ] = ACTIONS(110), - [anon_sym_EQ_EQ] = ACTIONS(110), - [anon_sym_QMARK_EQ] = ACTIONS(110), - [anon_sym_STAR_EQ] = ACTIONS(110), - [anon_sym_TILDE] = ACTIONS(110), - [anon_sym_BANG_TILDE] = ACTIONS(110), - [anon_sym_STAR_TILDE] = ACTIONS(110), - [anon_sym_LT_EQ] = ACTIONS(110), - [anon_sym_GT_EQ] = ACTIONS(110), - [anon_sym_PLUS] = ACTIONS(112), - [anon_sym_PLUS_EQ] = ACTIONS(110), - [anon_sym_DASH_EQ] = ACTIONS(110), - [anon_sym_u00d7] = ACTIONS(110), - [anon_sym_SLASH] = ACTIONS(112), - [anon_sym_u00f7] = ACTIONS(110), - [anon_sym_STAR_STAR] = ACTIONS(110), - [anon_sym_u220b] = ACTIONS(110), - [anon_sym_u220c] = ACTIONS(110), - [anon_sym_u2287] = ACTIONS(110), - [anon_sym_u2283] = ACTIONS(110), - [anon_sym_u2285] = ACTIONS(110), - [anon_sym_u2208] = ACTIONS(110), - [anon_sym_u2209] = ACTIONS(110), - [anon_sym_u2286] = ACTIONS(110), - [anon_sym_u2282] = ACTIONS(110), - [anon_sym_u2284] = ACTIONS(110), - [anon_sym_AT_AT] = ACTIONS(110), - }, - [36] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(200), [sym_keyword_if] = ACTIONS(200), @@ -19863,6 +19787,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(200), [anon_sym_AT_AT] = ACTIONS(200), }, + [36] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(122), + [sym_keyword_if] = ACTIONS(122), + [sym_keyword_return] = ACTIONS(122), + [sym_keyword_from] = ACTIONS(122), + [sym_keyword_as] = ACTIONS(122), + [sym_keyword_omit] = ACTIONS(122), + [sym_keyword_parallel] = ACTIONS(122), + [sym_keyword_timeout] = ACTIONS(122), + [sym_keyword_where] = ACTIONS(122), + [sym_keyword_group] = ACTIONS(122), + [sym_keyword_and] = ACTIONS(122), + [sym_keyword_or] = ACTIONS(122), + [sym_keyword_is] = ACTIONS(122), + [sym_keyword_not] = ACTIONS(124), + [sym_keyword_contains] = ACTIONS(122), + [sym_keyword_contains_not] = ACTIONS(122), + [sym_keyword_contains_all] = ACTIONS(122), + [sym_keyword_contains_any] = ACTIONS(122), + [sym_keyword_contains_none] = ACTIONS(122), + [sym_keyword_inside] = ACTIONS(122), + [sym_keyword_in] = ACTIONS(124), + [sym_keyword_not_inside] = ACTIONS(122), + [sym_keyword_all_inside] = ACTIONS(122), + [sym_keyword_any_inside] = ACTIONS(122), + [sym_keyword_none_inside] = ACTIONS(122), + [sym_keyword_outside] = ACTIONS(122), + [sym_keyword_intersects] = ACTIONS(122), + [sym_keyword_drop] = ACTIONS(122), + [sym_keyword_schemafull] = ACTIONS(122), + [sym_keyword_schemaless] = ACTIONS(122), + [sym_keyword_changefeed] = ACTIONS(122), + [sym_keyword_content] = ACTIONS(122), + [sym_keyword_merge] = ACTIONS(122), + [sym_keyword_patch] = ACTIONS(122), + [sym_keyword_then] = ACTIONS(122), + [sym_keyword_type] = ACTIONS(122), + [sym_keyword_permissions] = ACTIONS(122), + [sym_keyword_for] = ACTIONS(122), + [sym_keyword_comment] = ACTIONS(122), + [sym_keyword_set] = ACTIONS(122), + [sym_keyword_unset] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(122), + [anon_sym_DASH_GT] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(122), + [anon_sym_RPAREN] = ACTIONS(122), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_RBRACE] = ACTIONS(122), + [anon_sym_LT_DASH] = ACTIONS(124), + [anon_sym_LT_DASH_GT] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(124), + [anon_sym_GT] = ACTIONS(124), + [sym_variable_name] = ACTIONS(122), + [sym_custom_function_name] = ACTIONS(122), + [anon_sym_EQ] = ACTIONS(124), + [anon_sym_DASH] = ACTIONS(124), + [anon_sym_AT] = ACTIONS(124), + [anon_sym_LT_PIPE] = ACTIONS(122), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_QMARK_COLON] = ACTIONS(122), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_QMARK_EQ] = ACTIONS(122), + [anon_sym_STAR_EQ] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(122), + [anon_sym_BANG_TILDE] = ACTIONS(122), + [anon_sym_STAR_TILDE] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(122), + [anon_sym_GT_EQ] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(124), + [anon_sym_PLUS_EQ] = ACTIONS(122), + [anon_sym_DASH_EQ] = ACTIONS(122), + [anon_sym_u00d7] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(124), + [anon_sym_u00f7] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_u220b] = ACTIONS(122), + [anon_sym_u220c] = ACTIONS(122), + [anon_sym_u2287] = ACTIONS(122), + [anon_sym_u2283] = ACTIONS(122), + [anon_sym_u2285] = ACTIONS(122), + [anon_sym_u2208] = ACTIONS(122), + [anon_sym_u2209] = ACTIONS(122), + [anon_sym_u2286] = ACTIONS(122), + [anon_sym_u2282] = ACTIONS(122), + [anon_sym_u2284] = ACTIONS(122), + [anon_sym_AT_AT] = ACTIONS(122), + }, [37] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(204), @@ -20152,196 +20172,386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(212), }, [40] = { - [ts_builtin_sym_end] = ACTIONS(128), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(128), - [sym_keyword_return] = ACTIONS(128), - [sym_keyword_value] = ACTIONS(128), - [sym_keyword_explain] = ACTIONS(128), - [sym_keyword_parallel] = ACTIONS(128), - [sym_keyword_timeout] = ACTIONS(128), - [sym_keyword_fetch] = ACTIONS(128), - [sym_keyword_limit] = ACTIONS(128), - [sym_keyword_rand] = ACTIONS(128), - [sym_keyword_collate] = ACTIONS(128), - [sym_keyword_numeric] = ACTIONS(128), - [sym_keyword_asc] = ACTIONS(128), - [sym_keyword_desc] = ACTIONS(128), - [sym_keyword_where] = ACTIONS(128), - [sym_keyword_and] = ACTIONS(128), - [sym_keyword_or] = ACTIONS(128), - [sym_keyword_is] = ACTIONS(128), - [sym_keyword_not] = ACTIONS(130), - [sym_keyword_contains] = ACTIONS(128), - [sym_keyword_contains_not] = ACTIONS(128), - [sym_keyword_contains_all] = ACTIONS(128), - [sym_keyword_contains_any] = ACTIONS(128), - [sym_keyword_contains_none] = ACTIONS(128), - [sym_keyword_inside] = ACTIONS(128), - [sym_keyword_in] = ACTIONS(130), - [sym_keyword_not_inside] = ACTIONS(128), - [sym_keyword_all_inside] = ACTIONS(128), - [sym_keyword_any_inside] = ACTIONS(128), - [sym_keyword_none_inside] = ACTIONS(128), - [sym_keyword_outside] = ACTIONS(128), - [sym_keyword_intersects] = ACTIONS(128), - [sym_keyword_flexible] = ACTIONS(128), - [sym_keyword_readonly] = ACTIONS(128), - [sym_keyword_content] = ACTIONS(128), - [sym_keyword_merge] = ACTIONS(128), - [sym_keyword_patch] = ACTIONS(128), - [sym_keyword_type] = ACTIONS(128), - [sym_keyword_default] = ACTIONS(128), - [sym_keyword_assert] = ACTIONS(128), - [sym_keyword_permissions] = ACTIONS(128), - [sym_keyword_for] = ACTIONS(128), - [sym_keyword_comment] = ACTIONS(128), - [sym_keyword_set] = ACTIONS(128), - [sym_keyword_unset] = ACTIONS(128), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_DASH_GT] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_LT_DASH] = ACTIONS(130), - [anon_sym_LT_DASH_GT] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(130), - [anon_sym_LT] = ACTIONS(130), - [anon_sym_GT] = ACTIONS(130), - [anon_sym_DOT_DOT] = ACTIONS(128), - [anon_sym_EQ] = ACTIONS(130), - [anon_sym_DASH] = ACTIONS(130), - [anon_sym_AT] = ACTIONS(130), - [anon_sym_LT_PIPE] = ACTIONS(128), - [anon_sym_AMP_AMP] = ACTIONS(128), - [anon_sym_PIPE_PIPE] = ACTIONS(128), - [anon_sym_QMARK_QMARK] = ACTIONS(128), - [anon_sym_QMARK_COLON] = ACTIONS(128), - [anon_sym_BANG_EQ] = ACTIONS(128), - [anon_sym_EQ_EQ] = ACTIONS(128), - [anon_sym_QMARK_EQ] = ACTIONS(128), - [anon_sym_STAR_EQ] = ACTIONS(128), - [anon_sym_TILDE] = ACTIONS(128), - [anon_sym_BANG_TILDE] = ACTIONS(128), - [anon_sym_STAR_TILDE] = ACTIONS(128), - [anon_sym_LT_EQ] = ACTIONS(128), - [anon_sym_GT_EQ] = ACTIONS(128), - [anon_sym_PLUS] = ACTIONS(130), - [anon_sym_PLUS_EQ] = ACTIONS(128), - [anon_sym_DASH_EQ] = ACTIONS(128), - [anon_sym_u00d7] = ACTIONS(128), - [anon_sym_SLASH] = ACTIONS(130), - [anon_sym_u00f7] = ACTIONS(128), - [anon_sym_STAR_STAR] = ACTIONS(128), - [anon_sym_u220b] = ACTIONS(128), - [anon_sym_u220c] = ACTIONS(128), - [anon_sym_u2287] = ACTIONS(128), - [anon_sym_u2283] = ACTIONS(128), - [anon_sym_u2285] = ACTIONS(128), - [anon_sym_u2208] = ACTIONS(128), - [anon_sym_u2209] = ACTIONS(128), - [anon_sym_u2286] = ACTIONS(128), - [anon_sym_u2282] = ACTIONS(128), - [anon_sym_u2284] = ACTIONS(128), - [anon_sym_AT_AT] = ACTIONS(128), + [ts_builtin_sym_end] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(118), + [sym_keyword_return] = ACTIONS(118), + [sym_keyword_value] = ACTIONS(118), + [sym_keyword_explain] = ACTIONS(118), + [sym_keyword_parallel] = ACTIONS(118), + [sym_keyword_timeout] = ACTIONS(118), + [sym_keyword_fetch] = ACTIONS(118), + [sym_keyword_limit] = ACTIONS(118), + [sym_keyword_rand] = ACTIONS(118), + [sym_keyword_collate] = ACTIONS(118), + [sym_keyword_numeric] = ACTIONS(118), + [sym_keyword_asc] = ACTIONS(118), + [sym_keyword_desc] = ACTIONS(118), + [sym_keyword_where] = ACTIONS(118), + [sym_keyword_and] = ACTIONS(118), + [sym_keyword_or] = ACTIONS(118), + [sym_keyword_is] = ACTIONS(118), + [sym_keyword_not] = ACTIONS(120), + [sym_keyword_contains] = ACTIONS(118), + [sym_keyword_contains_not] = ACTIONS(118), + [sym_keyword_contains_all] = ACTIONS(118), + [sym_keyword_contains_any] = ACTIONS(118), + [sym_keyword_contains_none] = ACTIONS(118), + [sym_keyword_inside] = ACTIONS(118), + [sym_keyword_in] = ACTIONS(120), + [sym_keyword_not_inside] = ACTIONS(118), + [sym_keyword_all_inside] = ACTIONS(118), + [sym_keyword_any_inside] = ACTIONS(118), + [sym_keyword_none_inside] = ACTIONS(118), + [sym_keyword_outside] = ACTIONS(118), + [sym_keyword_intersects] = ACTIONS(118), + [sym_keyword_flexible] = ACTIONS(118), + [sym_keyword_readonly] = ACTIONS(118), + [sym_keyword_content] = ACTIONS(118), + [sym_keyword_merge] = ACTIONS(118), + [sym_keyword_patch] = ACTIONS(118), + [sym_keyword_type] = ACTIONS(118), + [sym_keyword_default] = ACTIONS(118), + [sym_keyword_assert] = ACTIONS(118), + [sym_keyword_permissions] = ACTIONS(118), + [sym_keyword_for] = ACTIONS(118), + [sym_keyword_comment] = ACTIONS(118), + [sym_keyword_set] = ACTIONS(118), + [sym_keyword_unset] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_DASH_GT] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_LT_DASH] = ACTIONS(120), + [anon_sym_LT_DASH_GT] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT_DOT] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_AT] = ACTIONS(120), + [anon_sym_LT_PIPE] = ACTIONS(118), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_QMARK_COLON] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_QMARK_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(118), + [anon_sym_BANG_TILDE] = ACTIONS(118), + [anon_sym_STAR_TILDE] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_u00d7] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_u00f7] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_u220b] = ACTIONS(118), + [anon_sym_u220c] = ACTIONS(118), + [anon_sym_u2287] = ACTIONS(118), + [anon_sym_u2283] = ACTIONS(118), + [anon_sym_u2285] = ACTIONS(118), + [anon_sym_u2208] = ACTIONS(118), + [anon_sym_u2209] = ACTIONS(118), + [anon_sym_u2286] = ACTIONS(118), + [anon_sym_u2282] = ACTIONS(118), + [anon_sym_u2284] = ACTIONS(118), + [anon_sym_AT_AT] = ACTIONS(118), }, [41] = { - [ts_builtin_sym_end] = ACTIONS(144), + [ts_builtin_sym_end] = ACTIONS(110), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(144), - [sym_keyword_return] = ACTIONS(144), - [sym_keyword_value] = ACTIONS(144), - [sym_keyword_explain] = ACTIONS(144), - [sym_keyword_parallel] = ACTIONS(144), - [sym_keyword_timeout] = ACTIONS(144), - [sym_keyword_fetch] = ACTIONS(144), - [sym_keyword_limit] = ACTIONS(144), - [sym_keyword_rand] = ACTIONS(144), - [sym_keyword_collate] = ACTIONS(144), - [sym_keyword_numeric] = ACTIONS(144), - [sym_keyword_asc] = ACTIONS(144), - [sym_keyword_desc] = ACTIONS(144), - [sym_keyword_where] = ACTIONS(144), - [sym_keyword_and] = ACTIONS(144), - [sym_keyword_or] = ACTIONS(144), - [sym_keyword_is] = ACTIONS(144), - [sym_keyword_not] = ACTIONS(146), - [sym_keyword_contains] = ACTIONS(144), - [sym_keyword_contains_not] = ACTIONS(144), - [sym_keyword_contains_all] = ACTIONS(144), - [sym_keyword_contains_any] = ACTIONS(144), - [sym_keyword_contains_none] = ACTIONS(144), - [sym_keyword_inside] = ACTIONS(144), - [sym_keyword_in] = ACTIONS(146), - [sym_keyword_not_inside] = ACTIONS(144), - [sym_keyword_all_inside] = ACTIONS(144), - [sym_keyword_any_inside] = ACTIONS(144), - [sym_keyword_none_inside] = ACTIONS(144), - [sym_keyword_outside] = ACTIONS(144), - [sym_keyword_intersects] = ACTIONS(144), - [sym_keyword_flexible] = ACTIONS(144), - [sym_keyword_readonly] = ACTIONS(144), - [sym_keyword_content] = ACTIONS(144), - [sym_keyword_merge] = ACTIONS(144), - [sym_keyword_patch] = ACTIONS(144), - [sym_keyword_type] = ACTIONS(144), - [sym_keyword_default] = ACTIONS(144), - [sym_keyword_assert] = ACTIONS(144), - [sym_keyword_permissions] = ACTIONS(144), - [sym_keyword_for] = ACTIONS(144), - [sym_keyword_comment] = ACTIONS(144), - [sym_keyword_set] = ACTIONS(144), - [sym_keyword_unset] = ACTIONS(144), - [anon_sym_COMMA] = ACTIONS(144), - [anon_sym_DASH_GT] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_RPAREN] = ACTIONS(144), - [anon_sym_RBRACE] = ACTIONS(144), - [anon_sym_LT_DASH] = ACTIONS(146), - [anon_sym_LT_DASH_GT] = ACTIONS(144), - [anon_sym_STAR] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(144), - [anon_sym_LT] = ACTIONS(146), - [anon_sym_GT] = ACTIONS(146), - [anon_sym_EQ] = ACTIONS(146), - [anon_sym_DASH] = ACTIONS(146), - [anon_sym_AT] = ACTIONS(146), - [anon_sym_LT_PIPE] = ACTIONS(144), - [anon_sym_PIPE_GT] = ACTIONS(144), - [anon_sym_AMP_AMP] = ACTIONS(144), - [anon_sym_PIPE_PIPE] = ACTIONS(144), - [anon_sym_QMARK_QMARK] = ACTIONS(144), - [anon_sym_QMARK_COLON] = ACTIONS(144), - [anon_sym_BANG_EQ] = ACTIONS(144), - [anon_sym_EQ_EQ] = ACTIONS(144), - [anon_sym_QMARK_EQ] = ACTIONS(144), - [anon_sym_STAR_EQ] = ACTIONS(144), - [anon_sym_TILDE] = ACTIONS(144), - [anon_sym_BANG_TILDE] = ACTIONS(144), - [anon_sym_STAR_TILDE] = ACTIONS(144), - [anon_sym_LT_EQ] = ACTIONS(144), - [anon_sym_GT_EQ] = ACTIONS(144), - [anon_sym_PLUS] = ACTIONS(146), - [anon_sym_PLUS_EQ] = ACTIONS(144), - [anon_sym_DASH_EQ] = ACTIONS(144), - [anon_sym_u00d7] = ACTIONS(144), - [anon_sym_SLASH] = ACTIONS(146), - [anon_sym_u00f7] = ACTIONS(144), - [anon_sym_STAR_STAR] = ACTIONS(144), - [anon_sym_u220b] = ACTIONS(144), - [anon_sym_u220c] = ACTIONS(144), - [anon_sym_u2287] = ACTIONS(144), - [anon_sym_u2283] = ACTIONS(144), - [anon_sym_u2285] = ACTIONS(144), - [anon_sym_u2208] = ACTIONS(144), - [anon_sym_u2209] = ACTIONS(144), - [anon_sym_u2286] = ACTIONS(144), - [anon_sym_u2282] = ACTIONS(144), - [anon_sym_u2284] = ACTIONS(144), - [anon_sym_AT_AT] = ACTIONS(144), + [sym_semi_colon] = ACTIONS(110), + [sym_keyword_return] = ACTIONS(110), + [sym_keyword_value] = ACTIONS(110), + [sym_keyword_explain] = ACTIONS(110), + [sym_keyword_parallel] = ACTIONS(110), + [sym_keyword_timeout] = ACTIONS(110), + [sym_keyword_fetch] = ACTIONS(110), + [sym_keyword_limit] = ACTIONS(110), + [sym_keyword_rand] = ACTIONS(110), + [sym_keyword_collate] = ACTIONS(110), + [sym_keyword_numeric] = ACTIONS(110), + [sym_keyword_asc] = ACTIONS(110), + [sym_keyword_desc] = ACTIONS(110), + [sym_keyword_where] = ACTIONS(110), + [sym_keyword_and] = ACTIONS(110), + [sym_keyword_or] = ACTIONS(110), + [sym_keyword_is] = ACTIONS(110), + [sym_keyword_not] = ACTIONS(112), + [sym_keyword_contains] = ACTIONS(110), + [sym_keyword_contains_not] = ACTIONS(110), + [sym_keyword_contains_all] = ACTIONS(110), + [sym_keyword_contains_any] = ACTIONS(110), + [sym_keyword_contains_none] = ACTIONS(110), + [sym_keyword_inside] = ACTIONS(110), + [sym_keyword_in] = ACTIONS(112), + [sym_keyword_not_inside] = ACTIONS(110), + [sym_keyword_all_inside] = ACTIONS(110), + [sym_keyword_any_inside] = ACTIONS(110), + [sym_keyword_none_inside] = ACTIONS(110), + [sym_keyword_outside] = ACTIONS(110), + [sym_keyword_intersects] = ACTIONS(110), + [sym_keyword_flexible] = ACTIONS(110), + [sym_keyword_readonly] = ACTIONS(110), + [sym_keyword_content] = ACTIONS(110), + [sym_keyword_merge] = ACTIONS(110), + [sym_keyword_patch] = ACTIONS(110), + [sym_keyword_type] = ACTIONS(110), + [sym_keyword_default] = ACTIONS(110), + [sym_keyword_assert] = ACTIONS(110), + [sym_keyword_permissions] = ACTIONS(110), + [sym_keyword_for] = ACTIONS(110), + [sym_keyword_comment] = ACTIONS(110), + [sym_keyword_set] = ACTIONS(110), + [sym_keyword_unset] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(110), + [anon_sym_DASH_GT] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(110), + [anon_sym_RPAREN] = ACTIONS(110), + [anon_sym_RBRACE] = ACTIONS(110), + [anon_sym_LT_DASH] = ACTIONS(112), + [anon_sym_LT_DASH_GT] = ACTIONS(110), + [anon_sym_STAR] = ACTIONS(112), + [anon_sym_DOT] = ACTIONS(112), + [anon_sym_LT] = ACTIONS(112), + [anon_sym_GT] = ACTIONS(112), + [anon_sym_DOT_DOT] = ACTIONS(110), + [anon_sym_EQ] = ACTIONS(112), + [anon_sym_DASH] = ACTIONS(112), + [anon_sym_AT] = ACTIONS(112), + [anon_sym_LT_PIPE] = ACTIONS(110), + [anon_sym_AMP_AMP] = ACTIONS(110), + [anon_sym_PIPE_PIPE] = ACTIONS(110), + [anon_sym_QMARK_QMARK] = ACTIONS(110), + [anon_sym_QMARK_COLON] = ACTIONS(110), + [anon_sym_BANG_EQ] = ACTIONS(110), + [anon_sym_EQ_EQ] = ACTIONS(110), + [anon_sym_QMARK_EQ] = ACTIONS(110), + [anon_sym_STAR_EQ] = ACTIONS(110), + [anon_sym_TILDE] = ACTIONS(110), + [anon_sym_BANG_TILDE] = ACTIONS(110), + [anon_sym_STAR_TILDE] = ACTIONS(110), + [anon_sym_LT_EQ] = ACTIONS(110), + [anon_sym_GT_EQ] = ACTIONS(110), + [anon_sym_PLUS] = ACTIONS(112), + [anon_sym_PLUS_EQ] = ACTIONS(110), + [anon_sym_DASH_EQ] = ACTIONS(110), + [anon_sym_u00d7] = ACTIONS(110), + [anon_sym_SLASH] = ACTIONS(112), + [anon_sym_u00f7] = ACTIONS(110), + [anon_sym_STAR_STAR] = ACTIONS(110), + [anon_sym_u220b] = ACTIONS(110), + [anon_sym_u220c] = ACTIONS(110), + [anon_sym_u2287] = ACTIONS(110), + [anon_sym_u2283] = ACTIONS(110), + [anon_sym_u2285] = ACTIONS(110), + [anon_sym_u2208] = ACTIONS(110), + [anon_sym_u2209] = ACTIONS(110), + [anon_sym_u2286] = ACTIONS(110), + [anon_sym_u2282] = ACTIONS(110), + [anon_sym_u2284] = ACTIONS(110), + [anon_sym_AT_AT] = ACTIONS(110), }, [42] = { + [ts_builtin_sym_end] = ACTIONS(152), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(152), + [sym_keyword_return] = ACTIONS(152), + [sym_keyword_value] = ACTIONS(152), + [sym_keyword_explain] = ACTIONS(152), + [sym_keyword_parallel] = ACTIONS(152), + [sym_keyword_timeout] = ACTIONS(152), + [sym_keyword_fetch] = ACTIONS(152), + [sym_keyword_limit] = ACTIONS(152), + [sym_keyword_rand] = ACTIONS(152), + [sym_keyword_collate] = ACTIONS(152), + [sym_keyword_numeric] = ACTIONS(152), + [sym_keyword_asc] = ACTIONS(152), + [sym_keyword_desc] = ACTIONS(152), + [sym_keyword_where] = ACTIONS(152), + [sym_keyword_and] = ACTIONS(152), + [sym_keyword_or] = ACTIONS(152), + [sym_keyword_is] = ACTIONS(152), + [sym_keyword_not] = ACTIONS(154), + [sym_keyword_contains] = ACTIONS(152), + [sym_keyword_contains_not] = ACTIONS(152), + [sym_keyword_contains_all] = ACTIONS(152), + [sym_keyword_contains_any] = ACTIONS(152), + [sym_keyword_contains_none] = ACTIONS(152), + [sym_keyword_inside] = ACTIONS(152), + [sym_keyword_in] = ACTIONS(154), + [sym_keyword_not_inside] = ACTIONS(152), + [sym_keyword_all_inside] = ACTIONS(152), + [sym_keyword_any_inside] = ACTIONS(152), + [sym_keyword_none_inside] = ACTIONS(152), + [sym_keyword_outside] = ACTIONS(152), + [sym_keyword_intersects] = ACTIONS(152), + [sym_keyword_flexible] = ACTIONS(152), + [sym_keyword_readonly] = ACTIONS(152), + [sym_keyword_content] = ACTIONS(152), + [sym_keyword_merge] = ACTIONS(152), + [sym_keyword_patch] = ACTIONS(152), + [sym_keyword_type] = ACTIONS(152), + [sym_keyword_default] = ACTIONS(152), + [sym_keyword_assert] = ACTIONS(152), + [sym_keyword_permissions] = ACTIONS(152), + [sym_keyword_for] = ACTIONS(152), + [sym_keyword_comment] = ACTIONS(152), + [sym_keyword_set] = ACTIONS(152), + [sym_keyword_unset] = ACTIONS(152), + [anon_sym_COMMA] = ACTIONS(152), + [anon_sym_DASH_GT] = ACTIONS(152), + [anon_sym_LBRACK] = ACTIONS(152), + [anon_sym_RPAREN] = ACTIONS(152), + [anon_sym_RBRACE] = ACTIONS(152), + [anon_sym_LT_DASH] = ACTIONS(154), + [anon_sym_LT_DASH_GT] = ACTIONS(152), + [anon_sym_STAR] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LT] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_EQ] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(154), + [anon_sym_LT_PIPE] = ACTIONS(152), + [anon_sym_PIPE_GT] = ACTIONS(152), + [anon_sym_AMP_AMP] = ACTIONS(152), + [anon_sym_PIPE_PIPE] = ACTIONS(152), + [anon_sym_QMARK_QMARK] = ACTIONS(152), + [anon_sym_QMARK_COLON] = ACTIONS(152), + [anon_sym_BANG_EQ] = ACTIONS(152), + [anon_sym_EQ_EQ] = ACTIONS(152), + [anon_sym_QMARK_EQ] = ACTIONS(152), + [anon_sym_STAR_EQ] = ACTIONS(152), + [anon_sym_TILDE] = ACTIONS(152), + [anon_sym_BANG_TILDE] = ACTIONS(152), + [anon_sym_STAR_TILDE] = ACTIONS(152), + [anon_sym_LT_EQ] = ACTIONS(152), + [anon_sym_GT_EQ] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(152), + [anon_sym_DASH_EQ] = ACTIONS(152), + [anon_sym_u00d7] = ACTIONS(152), + [anon_sym_SLASH] = ACTIONS(154), + [anon_sym_u00f7] = ACTIONS(152), + [anon_sym_STAR_STAR] = ACTIONS(152), + [anon_sym_u220b] = ACTIONS(152), + [anon_sym_u220c] = ACTIONS(152), + [anon_sym_u2287] = ACTIONS(152), + [anon_sym_u2283] = ACTIONS(152), + [anon_sym_u2285] = ACTIONS(152), + [anon_sym_u2208] = ACTIONS(152), + [anon_sym_u2209] = ACTIONS(152), + [anon_sym_u2286] = ACTIONS(152), + [anon_sym_u2282] = ACTIONS(152), + [anon_sym_u2284] = ACTIONS(152), + [anon_sym_AT_AT] = ACTIONS(152), + }, + [43] = { + [ts_builtin_sym_end] = ACTIONS(114), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(114), + [sym_keyword_return] = ACTIONS(114), + [sym_keyword_value] = ACTIONS(114), + [sym_keyword_explain] = ACTIONS(114), + [sym_keyword_parallel] = ACTIONS(114), + [sym_keyword_timeout] = ACTIONS(114), + [sym_keyword_fetch] = ACTIONS(114), + [sym_keyword_limit] = ACTIONS(114), + [sym_keyword_rand] = ACTIONS(114), + [sym_keyword_collate] = ACTIONS(114), + [sym_keyword_numeric] = ACTIONS(114), + [sym_keyword_asc] = ACTIONS(114), + [sym_keyword_desc] = ACTIONS(114), + [sym_keyword_where] = ACTIONS(114), + [sym_keyword_and] = ACTIONS(114), + [sym_keyword_or] = ACTIONS(114), + [sym_keyword_is] = ACTIONS(114), + [sym_keyword_not] = ACTIONS(116), + [sym_keyword_contains] = ACTIONS(114), + [sym_keyword_contains_not] = ACTIONS(114), + [sym_keyword_contains_all] = ACTIONS(114), + [sym_keyword_contains_any] = ACTIONS(114), + [sym_keyword_contains_none] = ACTIONS(114), + [sym_keyword_inside] = ACTIONS(114), + [sym_keyword_in] = ACTIONS(116), + [sym_keyword_not_inside] = ACTIONS(114), + [sym_keyword_all_inside] = ACTIONS(114), + [sym_keyword_any_inside] = ACTIONS(114), + [sym_keyword_none_inside] = ACTIONS(114), + [sym_keyword_outside] = ACTIONS(114), + [sym_keyword_intersects] = ACTIONS(114), + [sym_keyword_flexible] = ACTIONS(114), + [sym_keyword_readonly] = ACTIONS(114), + [sym_keyword_content] = ACTIONS(114), + [sym_keyword_merge] = ACTIONS(114), + [sym_keyword_patch] = ACTIONS(114), + [sym_keyword_type] = ACTIONS(114), + [sym_keyword_default] = ACTIONS(114), + [sym_keyword_assert] = ACTIONS(114), + [sym_keyword_permissions] = ACTIONS(114), + [sym_keyword_for] = ACTIONS(114), + [sym_keyword_comment] = ACTIONS(114), + [sym_keyword_set] = ACTIONS(114), + [sym_keyword_unset] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_DASH_GT] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_RPAREN] = ACTIONS(114), + [anon_sym_RBRACE] = ACTIONS(114), + [anon_sym_LT_DASH] = ACTIONS(116), + [anon_sym_LT_DASH_GT] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(116), + [anon_sym_LT] = ACTIONS(116), + [anon_sym_GT] = ACTIONS(116), + [anon_sym_DOT_DOT] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_DASH] = ACTIONS(116), + [anon_sym_AT] = ACTIONS(116), + [anon_sym_LT_PIPE] = ACTIONS(114), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_QMARK_COLON] = ACTIONS(114), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_QMARK_EQ] = ACTIONS(114), + [anon_sym_STAR_EQ] = ACTIONS(114), + [anon_sym_TILDE] = ACTIONS(114), + [anon_sym_BANG_TILDE] = ACTIONS(114), + [anon_sym_STAR_TILDE] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(114), + [anon_sym_GT_EQ] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(116), + [anon_sym_PLUS_EQ] = ACTIONS(114), + [anon_sym_DASH_EQ] = ACTIONS(114), + [anon_sym_u00d7] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(116), + [anon_sym_u00f7] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_u220b] = ACTIONS(114), + [anon_sym_u220c] = ACTIONS(114), + [anon_sym_u2287] = ACTIONS(114), + [anon_sym_u2283] = ACTIONS(114), + [anon_sym_u2285] = ACTIONS(114), + [anon_sym_u2208] = ACTIONS(114), + [anon_sym_u2209] = ACTIONS(114), + [anon_sym_u2286] = ACTIONS(114), + [anon_sym_u2282] = ACTIONS(114), + [anon_sym_u2284] = ACTIONS(114), + [anon_sym_AT_AT] = ACTIONS(114), + }, + [44] = { [ts_builtin_sym_end] = ACTIONS(57), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(57), @@ -20392,7 +20602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_RPAREN] = ACTIONS(57), - [anon_sym_COLON] = ACTIONS(114), + [anon_sym_COLON] = ACTIONS(130), [anon_sym_RBRACE] = ACTIONS(57), [anon_sym_LT_DASH] = ACTIONS(59), [anon_sym_LT_DASH_GT] = ACTIONS(57), @@ -20436,480 +20646,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(57), [anon_sym_AT_AT] = ACTIONS(57), }, - [43] = { - [ts_builtin_sym_end] = ACTIONS(116), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(116), - [sym_keyword_return] = ACTIONS(116), - [sym_keyword_value] = ACTIONS(116), - [sym_keyword_explain] = ACTIONS(116), - [sym_keyword_parallel] = ACTIONS(116), - [sym_keyword_timeout] = ACTIONS(116), - [sym_keyword_fetch] = ACTIONS(116), - [sym_keyword_limit] = ACTIONS(116), - [sym_keyword_rand] = ACTIONS(116), - [sym_keyword_collate] = ACTIONS(116), - [sym_keyword_numeric] = ACTIONS(116), - [sym_keyword_asc] = ACTIONS(116), - [sym_keyword_desc] = ACTIONS(116), - [sym_keyword_where] = ACTIONS(116), - [sym_keyword_and] = ACTIONS(116), - [sym_keyword_or] = ACTIONS(116), - [sym_keyword_is] = ACTIONS(116), - [sym_keyword_not] = ACTIONS(118), - [sym_keyword_contains] = ACTIONS(116), - [sym_keyword_contains_not] = ACTIONS(116), - [sym_keyword_contains_all] = ACTIONS(116), - [sym_keyword_contains_any] = ACTIONS(116), - [sym_keyword_contains_none] = ACTIONS(116), - [sym_keyword_inside] = ACTIONS(116), - [sym_keyword_in] = ACTIONS(118), - [sym_keyword_not_inside] = ACTIONS(116), - [sym_keyword_all_inside] = ACTIONS(116), - [sym_keyword_any_inside] = ACTIONS(116), - [sym_keyword_none_inside] = ACTIONS(116), - [sym_keyword_outside] = ACTIONS(116), - [sym_keyword_intersects] = ACTIONS(116), - [sym_keyword_flexible] = ACTIONS(116), - [sym_keyword_readonly] = ACTIONS(116), - [sym_keyword_content] = ACTIONS(116), - [sym_keyword_merge] = ACTIONS(116), - [sym_keyword_patch] = ACTIONS(116), - [sym_keyword_type] = ACTIONS(116), - [sym_keyword_default] = ACTIONS(116), - [sym_keyword_assert] = ACTIONS(116), - [sym_keyword_permissions] = ACTIONS(116), - [sym_keyword_for] = ACTIONS(116), - [sym_keyword_comment] = ACTIONS(116), - [sym_keyword_set] = ACTIONS(116), - [sym_keyword_unset] = ACTIONS(116), - [anon_sym_COMMA] = ACTIONS(116), - [anon_sym_DASH_GT] = ACTIONS(116), - [anon_sym_LBRACK] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(116), - [anon_sym_RBRACE] = ACTIONS(116), - [anon_sym_LT_DASH] = ACTIONS(118), - [anon_sym_LT_DASH_GT] = ACTIONS(116), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT_DOT] = ACTIONS(116), - [anon_sym_EQ] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_AT] = ACTIONS(118), - [anon_sym_LT_PIPE] = ACTIONS(116), - [anon_sym_AMP_AMP] = ACTIONS(116), - [anon_sym_PIPE_PIPE] = ACTIONS(116), - [anon_sym_QMARK_QMARK] = ACTIONS(116), - [anon_sym_QMARK_COLON] = ACTIONS(116), - [anon_sym_BANG_EQ] = ACTIONS(116), - [anon_sym_EQ_EQ] = ACTIONS(116), - [anon_sym_QMARK_EQ] = ACTIONS(116), - [anon_sym_STAR_EQ] = ACTIONS(116), - [anon_sym_TILDE] = ACTIONS(116), - [anon_sym_BANG_TILDE] = ACTIONS(116), - [anon_sym_STAR_TILDE] = ACTIONS(116), - [anon_sym_LT_EQ] = ACTIONS(116), - [anon_sym_GT_EQ] = ACTIONS(116), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(116), - [anon_sym_DASH_EQ] = ACTIONS(116), - [anon_sym_u00d7] = ACTIONS(116), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_u00f7] = ACTIONS(116), - [anon_sym_STAR_STAR] = ACTIONS(116), - [anon_sym_u220b] = ACTIONS(116), - [anon_sym_u220c] = ACTIONS(116), - [anon_sym_u2287] = ACTIONS(116), - [anon_sym_u2283] = ACTIONS(116), - [anon_sym_u2285] = ACTIONS(116), - [anon_sym_u2208] = ACTIONS(116), - [anon_sym_u2209] = ACTIONS(116), - [anon_sym_u2286] = ACTIONS(116), - [anon_sym_u2282] = ACTIONS(116), - [anon_sym_u2284] = ACTIONS(116), - [anon_sym_AT_AT] = ACTIONS(116), - }, - [44] = { - [ts_builtin_sym_end] = ACTIONS(124), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(124), - [sym_keyword_return] = ACTIONS(124), - [sym_keyword_value] = ACTIONS(124), - [sym_keyword_explain] = ACTIONS(124), - [sym_keyword_parallel] = ACTIONS(124), - [sym_keyword_timeout] = ACTIONS(124), - [sym_keyword_fetch] = ACTIONS(124), - [sym_keyword_limit] = ACTIONS(124), - [sym_keyword_rand] = ACTIONS(124), - [sym_keyword_collate] = ACTIONS(124), - [sym_keyword_numeric] = ACTIONS(124), - [sym_keyword_asc] = ACTIONS(124), - [sym_keyword_desc] = ACTIONS(124), - [sym_keyword_where] = ACTIONS(124), - [sym_keyword_and] = ACTIONS(124), - [sym_keyword_or] = ACTIONS(124), - [sym_keyword_is] = ACTIONS(124), - [sym_keyword_not] = ACTIONS(126), - [sym_keyword_contains] = ACTIONS(124), - [sym_keyword_contains_not] = ACTIONS(124), - [sym_keyword_contains_all] = ACTIONS(124), - [sym_keyword_contains_any] = ACTIONS(124), - [sym_keyword_contains_none] = ACTIONS(124), - [sym_keyword_inside] = ACTIONS(124), - [sym_keyword_in] = ACTIONS(126), - [sym_keyword_not_inside] = ACTIONS(124), - [sym_keyword_all_inside] = ACTIONS(124), - [sym_keyword_any_inside] = ACTIONS(124), - [sym_keyword_none_inside] = ACTIONS(124), - [sym_keyword_outside] = ACTIONS(124), - [sym_keyword_intersects] = ACTIONS(124), - [sym_keyword_flexible] = ACTIONS(124), - [sym_keyword_readonly] = ACTIONS(124), - [sym_keyword_content] = ACTIONS(124), - [sym_keyword_merge] = ACTIONS(124), - [sym_keyword_patch] = ACTIONS(124), - [sym_keyword_type] = ACTIONS(124), - [sym_keyword_default] = ACTIONS(124), - [sym_keyword_assert] = ACTIONS(124), - [sym_keyword_permissions] = ACTIONS(124), - [sym_keyword_for] = ACTIONS(124), - [sym_keyword_comment] = ACTIONS(124), - [sym_keyword_set] = ACTIONS(124), - [sym_keyword_unset] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_DASH_GT] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(124), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_LT_DASH] = ACTIONS(126), - [anon_sym_LT_DASH_GT] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_LT] = ACTIONS(126), - [anon_sym_GT] = ACTIONS(126), - [anon_sym_DOT_DOT] = ACTIONS(124), - [anon_sym_EQ] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), - [anon_sym_AT] = ACTIONS(126), - [anon_sym_LT_PIPE] = ACTIONS(124), - [anon_sym_AMP_AMP] = ACTIONS(124), - [anon_sym_PIPE_PIPE] = ACTIONS(124), - [anon_sym_QMARK_QMARK] = ACTIONS(124), - [anon_sym_QMARK_COLON] = ACTIONS(124), - [anon_sym_BANG_EQ] = ACTIONS(124), - [anon_sym_EQ_EQ] = ACTIONS(124), - [anon_sym_QMARK_EQ] = ACTIONS(124), - [anon_sym_STAR_EQ] = ACTIONS(124), - [anon_sym_TILDE] = ACTIONS(124), - [anon_sym_BANG_TILDE] = ACTIONS(124), - [anon_sym_STAR_TILDE] = ACTIONS(124), - [anon_sym_LT_EQ] = ACTIONS(124), - [anon_sym_GT_EQ] = ACTIONS(124), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_PLUS_EQ] = ACTIONS(124), - [anon_sym_DASH_EQ] = ACTIONS(124), - [anon_sym_u00d7] = ACTIONS(124), - [anon_sym_SLASH] = ACTIONS(126), - [anon_sym_u00f7] = ACTIONS(124), - [anon_sym_STAR_STAR] = ACTIONS(124), - [anon_sym_u220b] = ACTIONS(124), - [anon_sym_u220c] = ACTIONS(124), - [anon_sym_u2287] = ACTIONS(124), - [anon_sym_u2283] = ACTIONS(124), - [anon_sym_u2285] = ACTIONS(124), - [anon_sym_u2208] = ACTIONS(124), - [anon_sym_u2209] = ACTIONS(124), - [anon_sym_u2286] = ACTIONS(124), - [anon_sym_u2282] = ACTIONS(124), - [anon_sym_u2284] = ACTIONS(124), - [anon_sym_AT_AT] = ACTIONS(124), - }, [45] = { - [ts_builtin_sym_end] = ACTIONS(136), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(136), - [sym_keyword_return] = ACTIONS(136), - [sym_keyword_value] = ACTIONS(136), - [sym_keyword_explain] = ACTIONS(136), - [sym_keyword_parallel] = ACTIONS(136), - [sym_keyword_timeout] = ACTIONS(136), - [sym_keyword_fetch] = ACTIONS(136), - [sym_keyword_limit] = ACTIONS(136), - [sym_keyword_rand] = ACTIONS(136), - [sym_keyword_collate] = ACTIONS(136), - [sym_keyword_numeric] = ACTIONS(136), - [sym_keyword_asc] = ACTIONS(136), - [sym_keyword_desc] = ACTIONS(136), - [sym_keyword_where] = ACTIONS(136), - [sym_keyword_and] = ACTIONS(136), - [sym_keyword_or] = ACTIONS(136), - [sym_keyword_is] = ACTIONS(136), - [sym_keyword_not] = ACTIONS(138), - [sym_keyword_contains] = ACTIONS(136), - [sym_keyword_contains_not] = ACTIONS(136), - [sym_keyword_contains_all] = ACTIONS(136), - [sym_keyword_contains_any] = ACTIONS(136), - [sym_keyword_contains_none] = ACTIONS(136), - [sym_keyword_inside] = ACTIONS(136), - [sym_keyword_in] = ACTIONS(138), - [sym_keyword_not_inside] = ACTIONS(136), - [sym_keyword_all_inside] = ACTIONS(136), - [sym_keyword_any_inside] = ACTIONS(136), - [sym_keyword_none_inside] = ACTIONS(136), - [sym_keyword_outside] = ACTIONS(136), - [sym_keyword_intersects] = ACTIONS(136), - [sym_keyword_flexible] = ACTIONS(136), - [sym_keyword_readonly] = ACTIONS(136), - [sym_keyword_content] = ACTIONS(136), - [sym_keyword_merge] = ACTIONS(136), - [sym_keyword_patch] = ACTIONS(136), - [sym_keyword_type] = ACTIONS(136), - [sym_keyword_default] = ACTIONS(136), - [sym_keyword_assert] = ACTIONS(136), - [sym_keyword_permissions] = ACTIONS(136), - [sym_keyword_for] = ACTIONS(136), - [sym_keyword_comment] = ACTIONS(136), - [sym_keyword_set] = ACTIONS(136), - [sym_keyword_unset] = ACTIONS(136), - [anon_sym_COMMA] = ACTIONS(136), - [anon_sym_DASH_GT] = ACTIONS(136), - [anon_sym_LBRACK] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(136), - [anon_sym_RBRACE] = ACTIONS(136), - [anon_sym_LT_DASH] = ACTIONS(138), - [anon_sym_LT_DASH_GT] = ACTIONS(136), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_DOT] = ACTIONS(138), - [anon_sym_LT] = ACTIONS(138), - [anon_sym_GT] = ACTIONS(138), - [anon_sym_DOT_DOT] = ACTIONS(136), - [anon_sym_EQ] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_LT_PIPE] = ACTIONS(136), - [anon_sym_AMP_AMP] = ACTIONS(136), - [anon_sym_PIPE_PIPE] = ACTIONS(136), - [anon_sym_QMARK_QMARK] = ACTIONS(136), - [anon_sym_QMARK_COLON] = ACTIONS(136), - [anon_sym_BANG_EQ] = ACTIONS(136), - [anon_sym_EQ_EQ] = ACTIONS(136), - [anon_sym_QMARK_EQ] = ACTIONS(136), - [anon_sym_STAR_EQ] = ACTIONS(136), - [anon_sym_TILDE] = ACTIONS(136), - [anon_sym_BANG_TILDE] = ACTIONS(136), - [anon_sym_STAR_TILDE] = ACTIONS(136), - [anon_sym_LT_EQ] = ACTIONS(136), - [anon_sym_GT_EQ] = ACTIONS(136), - [anon_sym_PLUS] = ACTIONS(138), - [anon_sym_PLUS_EQ] = ACTIONS(136), - [anon_sym_DASH_EQ] = ACTIONS(136), - [anon_sym_u00d7] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(138), - [anon_sym_u00f7] = ACTIONS(136), - [anon_sym_STAR_STAR] = ACTIONS(136), - [anon_sym_u220b] = ACTIONS(136), - [anon_sym_u220c] = ACTIONS(136), - [anon_sym_u2287] = ACTIONS(136), - [anon_sym_u2283] = ACTIONS(136), - [anon_sym_u2285] = ACTIONS(136), - [anon_sym_u2208] = ACTIONS(136), - [anon_sym_u2209] = ACTIONS(136), - [anon_sym_u2286] = ACTIONS(136), - [anon_sym_u2282] = ACTIONS(136), - [anon_sym_u2284] = ACTIONS(136), - [anon_sym_AT_AT] = ACTIONS(136), - }, - [46] = { - [ts_builtin_sym_end] = ACTIONS(192), + [ts_builtin_sym_end] = ACTIONS(132), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_return] = ACTIONS(192), - [sym_keyword_value] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_rand] = ACTIONS(192), - [sym_keyword_collate] = ACTIONS(192), - [sym_keyword_numeric] = ACTIONS(192), - [sym_keyword_asc] = ACTIONS(192), - [sym_keyword_desc] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_flexible] = ACTIONS(192), - [sym_keyword_readonly] = ACTIONS(192), - [sym_keyword_content] = ACTIONS(192), - [sym_keyword_merge] = ACTIONS(192), - [sym_keyword_patch] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_default] = ACTIONS(192), - [sym_keyword_assert] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_for] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [sym_keyword_set] = ACTIONS(192), - [sym_keyword_unset] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(132), + [sym_keyword_return] = ACTIONS(132), + [sym_keyword_value] = ACTIONS(132), + [sym_keyword_explain] = ACTIONS(132), + [sym_keyword_parallel] = ACTIONS(132), + [sym_keyword_timeout] = ACTIONS(132), + [sym_keyword_fetch] = ACTIONS(132), + [sym_keyword_limit] = ACTIONS(132), + [sym_keyword_rand] = ACTIONS(132), + [sym_keyword_collate] = ACTIONS(132), + [sym_keyword_numeric] = ACTIONS(132), + [sym_keyword_asc] = ACTIONS(132), + [sym_keyword_desc] = ACTIONS(132), + [sym_keyword_where] = ACTIONS(132), + [sym_keyword_and] = ACTIONS(132), + [sym_keyword_or] = ACTIONS(132), + [sym_keyword_is] = ACTIONS(132), + [sym_keyword_not] = ACTIONS(134), + [sym_keyword_contains] = ACTIONS(132), + [sym_keyword_contains_not] = ACTIONS(132), + [sym_keyword_contains_all] = ACTIONS(132), + [sym_keyword_contains_any] = ACTIONS(132), + [sym_keyword_contains_none] = ACTIONS(132), + [sym_keyword_inside] = ACTIONS(132), + [sym_keyword_in] = ACTIONS(134), + [sym_keyword_not_inside] = ACTIONS(132), + [sym_keyword_all_inside] = ACTIONS(132), + [sym_keyword_any_inside] = ACTIONS(132), + [sym_keyword_none_inside] = ACTIONS(132), + [sym_keyword_outside] = ACTIONS(132), + [sym_keyword_intersects] = ACTIONS(132), + [sym_keyword_flexible] = ACTIONS(132), + [sym_keyword_readonly] = ACTIONS(132), + [sym_keyword_content] = ACTIONS(132), + [sym_keyword_merge] = ACTIONS(132), + [sym_keyword_patch] = ACTIONS(132), + [sym_keyword_type] = ACTIONS(132), + [sym_keyword_default] = ACTIONS(132), + [sym_keyword_assert] = ACTIONS(132), + [sym_keyword_permissions] = ACTIONS(132), + [sym_keyword_for] = ACTIONS(132), + [sym_keyword_comment] = ACTIONS(132), + [sym_keyword_set] = ACTIONS(132), + [sym_keyword_unset] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_DASH_GT] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_RPAREN] = ACTIONS(132), + [anon_sym_RBRACE] = ACTIONS(132), + [anon_sym_LT_DASH] = ACTIONS(134), + [anon_sym_LT_DASH_GT] = ACTIONS(132), + [anon_sym_STAR] = ACTIONS(134), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_LT] = ACTIONS(134), + [anon_sym_GT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(132), + [anon_sym_EQ] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_AT] = ACTIONS(134), + [anon_sym_LT_PIPE] = ACTIONS(132), + [anon_sym_AMP_AMP] = ACTIONS(132), + [anon_sym_PIPE_PIPE] = ACTIONS(132), + [anon_sym_QMARK_QMARK] = ACTIONS(132), + [anon_sym_QMARK_COLON] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_QMARK_EQ] = ACTIONS(132), + [anon_sym_STAR_EQ] = ACTIONS(132), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_STAR_TILDE] = ACTIONS(132), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_PLUS_EQ] = ACTIONS(132), + [anon_sym_DASH_EQ] = ACTIONS(132), + [anon_sym_u00d7] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(134), + [anon_sym_u00f7] = ACTIONS(132), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_u220b] = ACTIONS(132), + [anon_sym_u220c] = ACTIONS(132), + [anon_sym_u2287] = ACTIONS(132), + [anon_sym_u2283] = ACTIONS(132), + [anon_sym_u2285] = ACTIONS(132), + [anon_sym_u2208] = ACTIONS(132), + [anon_sym_u2209] = ACTIONS(132), + [anon_sym_u2286] = ACTIONS(132), + [anon_sym_u2282] = ACTIONS(132), + [anon_sym_u2284] = ACTIONS(132), + [anon_sym_AT_AT] = ACTIONS(132), }, - [47] = { - [ts_builtin_sym_end] = ACTIONS(152), + [46] = { + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(152), - [sym_keyword_return] = ACTIONS(152), - [sym_keyword_value] = ACTIONS(152), - [sym_keyword_explain] = ACTIONS(152), - [sym_keyword_parallel] = ACTIONS(152), - [sym_keyword_timeout] = ACTIONS(152), - [sym_keyword_fetch] = ACTIONS(152), - [sym_keyword_limit] = ACTIONS(152), - [sym_keyword_rand] = ACTIONS(152), - [sym_keyword_collate] = ACTIONS(152), - [sym_keyword_numeric] = ACTIONS(152), - [sym_keyword_asc] = ACTIONS(152), - [sym_keyword_desc] = ACTIONS(152), - [sym_keyword_where] = ACTIONS(152), - [sym_keyword_and] = ACTIONS(152), - [sym_keyword_or] = ACTIONS(152), - [sym_keyword_is] = ACTIONS(152), - [sym_keyword_not] = ACTIONS(154), - [sym_keyword_contains] = ACTIONS(152), - [sym_keyword_contains_not] = ACTIONS(152), - [sym_keyword_contains_all] = ACTIONS(152), - [sym_keyword_contains_any] = ACTIONS(152), - [sym_keyword_contains_none] = ACTIONS(152), - [sym_keyword_inside] = ACTIONS(152), - [sym_keyword_in] = ACTIONS(154), - [sym_keyword_not_inside] = ACTIONS(152), - [sym_keyword_all_inside] = ACTIONS(152), - [sym_keyword_any_inside] = ACTIONS(152), - [sym_keyword_none_inside] = ACTIONS(152), - [sym_keyword_outside] = ACTIONS(152), - [sym_keyword_intersects] = ACTIONS(152), - [sym_keyword_flexible] = ACTIONS(152), - [sym_keyword_readonly] = ACTIONS(152), - [sym_keyword_content] = ACTIONS(152), - [sym_keyword_merge] = ACTIONS(152), - [sym_keyword_patch] = ACTIONS(152), - [sym_keyword_type] = ACTIONS(152), - [sym_keyword_default] = ACTIONS(152), - [sym_keyword_assert] = ACTIONS(152), - [sym_keyword_permissions] = ACTIONS(152), - [sym_keyword_for] = ACTIONS(152), - [sym_keyword_comment] = ACTIONS(152), - [sym_keyword_set] = ACTIONS(152), - [sym_keyword_unset] = ACTIONS(152), - [anon_sym_COMMA] = ACTIONS(152), - [anon_sym_DASH_GT] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(152), - [anon_sym_RPAREN] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(152), - [anon_sym_LT_DASH] = ACTIONS(154), - [anon_sym_LT_DASH_GT] = ACTIONS(152), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LT] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_AT] = ACTIONS(154), - [anon_sym_LT_PIPE] = ACTIONS(152), - [anon_sym_AMP_AMP] = ACTIONS(152), - [anon_sym_PIPE_PIPE] = ACTIONS(152), - [anon_sym_QMARK_QMARK] = ACTIONS(152), - [anon_sym_QMARK_COLON] = ACTIONS(152), - [anon_sym_BANG_EQ] = ACTIONS(152), - [anon_sym_EQ_EQ] = ACTIONS(152), - [anon_sym_QMARK_EQ] = ACTIONS(152), - [anon_sym_STAR_EQ] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_BANG_TILDE] = ACTIONS(152), - [anon_sym_STAR_TILDE] = ACTIONS(152), - [anon_sym_LT_EQ] = ACTIONS(152), - [anon_sym_GT_EQ] = ACTIONS(152), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(152), - [anon_sym_DASH_EQ] = ACTIONS(152), - [anon_sym_u00d7] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(154), - [anon_sym_u00f7] = ACTIONS(152), - [anon_sym_STAR_STAR] = ACTIONS(152), - [anon_sym_u220b] = ACTIONS(152), - [anon_sym_u220c] = ACTIONS(152), - [anon_sym_u2287] = ACTIONS(152), - [anon_sym_u2283] = ACTIONS(152), - [anon_sym_u2285] = ACTIONS(152), - [anon_sym_u2208] = ACTIONS(152), - [anon_sym_u2209] = ACTIONS(152), - [anon_sym_u2286] = ACTIONS(152), - [anon_sym_u2282] = ACTIONS(152), - [anon_sym_u2284] = ACTIONS(152), - [anon_sym_AT_AT] = ACTIONS(152), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_return] = ACTIONS(140), + [sym_keyword_value] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(140), + [sym_keyword_parallel] = ACTIONS(140), + [sym_keyword_timeout] = ACTIONS(140), + [sym_keyword_fetch] = ACTIONS(140), + [sym_keyword_limit] = ACTIONS(140), + [sym_keyword_rand] = ACTIONS(140), + [sym_keyword_collate] = ACTIONS(140), + [sym_keyword_numeric] = ACTIONS(140), + [sym_keyword_asc] = ACTIONS(140), + [sym_keyword_desc] = ACTIONS(140), + [sym_keyword_where] = ACTIONS(140), + [sym_keyword_and] = ACTIONS(140), + [sym_keyword_or] = ACTIONS(140), + [sym_keyword_is] = ACTIONS(140), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(140), + [sym_keyword_contains_not] = ACTIONS(140), + [sym_keyword_contains_all] = ACTIONS(140), + [sym_keyword_contains_any] = ACTIONS(140), + [sym_keyword_contains_none] = ACTIONS(140), + [sym_keyword_inside] = ACTIONS(140), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(140), + [sym_keyword_all_inside] = ACTIONS(140), + [sym_keyword_any_inside] = ACTIONS(140), + [sym_keyword_none_inside] = ACTIONS(140), + [sym_keyword_outside] = ACTIONS(140), + [sym_keyword_intersects] = ACTIONS(140), + [sym_keyword_flexible] = ACTIONS(140), + [sym_keyword_readonly] = ACTIONS(140), + [sym_keyword_content] = ACTIONS(140), + [sym_keyword_merge] = ACTIONS(140), + [sym_keyword_patch] = ACTIONS(140), + [sym_keyword_type] = ACTIONS(140), + [sym_keyword_default] = ACTIONS(140), + [sym_keyword_assert] = ACTIONS(140), + [sym_keyword_permissions] = ACTIONS(140), + [sym_keyword_for] = ACTIONS(140), + [sym_keyword_comment] = ACTIONS(140), + [sym_keyword_set] = ACTIONS(140), + [sym_keyword_unset] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [48] = { + [47] = { [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(160), @@ -21003,289 +20929,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, + [48] = { + [ts_builtin_sym_end] = ACTIONS(208), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(208), + [sym_keyword_return] = ACTIONS(208), + [sym_keyword_value] = ACTIONS(208), + [sym_keyword_explain] = ACTIONS(208), + [sym_keyword_parallel] = ACTIONS(208), + [sym_keyword_timeout] = ACTIONS(208), + [sym_keyword_fetch] = ACTIONS(208), + [sym_keyword_limit] = ACTIONS(208), + [sym_keyword_rand] = ACTIONS(208), + [sym_keyword_collate] = ACTIONS(208), + [sym_keyword_numeric] = ACTIONS(208), + [sym_keyword_asc] = ACTIONS(208), + [sym_keyword_desc] = ACTIONS(208), + [sym_keyword_where] = ACTIONS(208), + [sym_keyword_and] = ACTIONS(208), + [sym_keyword_or] = ACTIONS(208), + [sym_keyword_is] = ACTIONS(208), + [sym_keyword_not] = ACTIONS(210), + [sym_keyword_contains] = ACTIONS(208), + [sym_keyword_contains_not] = ACTIONS(208), + [sym_keyword_contains_all] = ACTIONS(208), + [sym_keyword_contains_any] = ACTIONS(208), + [sym_keyword_contains_none] = ACTIONS(208), + [sym_keyword_inside] = ACTIONS(208), + [sym_keyword_in] = ACTIONS(210), + [sym_keyword_not_inside] = ACTIONS(208), + [sym_keyword_all_inside] = ACTIONS(208), + [sym_keyword_any_inside] = ACTIONS(208), + [sym_keyword_none_inside] = ACTIONS(208), + [sym_keyword_outside] = ACTIONS(208), + [sym_keyword_intersects] = ACTIONS(208), + [sym_keyword_flexible] = ACTIONS(208), + [sym_keyword_readonly] = ACTIONS(208), + [sym_keyword_content] = ACTIONS(208), + [sym_keyword_merge] = ACTIONS(208), + [sym_keyword_patch] = ACTIONS(208), + [sym_keyword_type] = ACTIONS(208), + [sym_keyword_default] = ACTIONS(208), + [sym_keyword_assert] = ACTIONS(208), + [sym_keyword_permissions] = ACTIONS(208), + [sym_keyword_for] = ACTIONS(208), + [sym_keyword_comment] = ACTIONS(208), + [sym_keyword_set] = ACTIONS(208), + [sym_keyword_unset] = ACTIONS(208), + [anon_sym_COMMA] = ACTIONS(208), + [anon_sym_DASH_GT] = ACTIONS(208), + [anon_sym_LBRACK] = ACTIONS(208), + [anon_sym_RPAREN] = ACTIONS(208), + [anon_sym_RBRACE] = ACTIONS(208), + [anon_sym_LT_DASH] = ACTIONS(210), + [anon_sym_LT_DASH_GT] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(208), + [anon_sym_LT] = ACTIONS(210), + [anon_sym_GT] = ACTIONS(210), + [anon_sym_EQ] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(210), + [anon_sym_LT_PIPE] = ACTIONS(208), + [anon_sym_AMP_AMP] = ACTIONS(208), + [anon_sym_PIPE_PIPE] = ACTIONS(208), + [anon_sym_QMARK_QMARK] = ACTIONS(208), + [anon_sym_QMARK_COLON] = ACTIONS(208), + [anon_sym_BANG_EQ] = ACTIONS(208), + [anon_sym_EQ_EQ] = ACTIONS(208), + [anon_sym_QMARK_EQ] = ACTIONS(208), + [anon_sym_STAR_EQ] = ACTIONS(208), + [anon_sym_TILDE] = ACTIONS(208), + [anon_sym_BANG_TILDE] = ACTIONS(208), + [anon_sym_STAR_TILDE] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(208), + [anon_sym_GT_EQ] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_PLUS_EQ] = ACTIONS(208), + [anon_sym_DASH_EQ] = ACTIONS(208), + [anon_sym_u00d7] = ACTIONS(208), + [anon_sym_SLASH] = ACTIONS(210), + [anon_sym_u00f7] = ACTIONS(208), + [anon_sym_STAR_STAR] = ACTIONS(208), + [anon_sym_u220b] = ACTIONS(208), + [anon_sym_u220c] = ACTIONS(208), + [anon_sym_u2287] = ACTIONS(208), + [anon_sym_u2283] = ACTIONS(208), + [anon_sym_u2285] = ACTIONS(208), + [anon_sym_u2208] = ACTIONS(208), + [anon_sym_u2209] = ACTIONS(208), + [anon_sym_u2286] = ACTIONS(208), + [anon_sym_u2282] = ACTIONS(208), + [anon_sym_u2284] = ACTIONS(208), + [anon_sym_AT_AT] = ACTIONS(208), + }, [49] = { - [ts_builtin_sym_end] = ACTIONS(204), + [ts_builtin_sym_end] = ACTIONS(164), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(204), - [sym_keyword_return] = ACTIONS(204), - [sym_keyword_value] = ACTIONS(204), - [sym_keyword_explain] = ACTIONS(204), - [sym_keyword_parallel] = ACTIONS(204), - [sym_keyword_timeout] = ACTIONS(204), - [sym_keyword_fetch] = ACTIONS(204), - [sym_keyword_limit] = ACTIONS(204), - [sym_keyword_rand] = ACTIONS(204), - [sym_keyword_collate] = ACTIONS(204), - [sym_keyword_numeric] = ACTIONS(204), - [sym_keyword_asc] = ACTIONS(204), - [sym_keyword_desc] = ACTIONS(204), - [sym_keyword_where] = ACTIONS(204), - [sym_keyword_and] = ACTIONS(204), - [sym_keyword_or] = ACTIONS(204), - [sym_keyword_is] = ACTIONS(204), - [sym_keyword_not] = ACTIONS(206), - [sym_keyword_contains] = ACTIONS(204), - [sym_keyword_contains_not] = ACTIONS(204), - [sym_keyword_contains_all] = ACTIONS(204), - [sym_keyword_contains_any] = ACTIONS(204), - [sym_keyword_contains_none] = ACTIONS(204), - [sym_keyword_inside] = ACTIONS(204), - [sym_keyword_in] = ACTIONS(206), - [sym_keyword_not_inside] = ACTIONS(204), - [sym_keyword_all_inside] = ACTIONS(204), - [sym_keyword_any_inside] = ACTIONS(204), - [sym_keyword_none_inside] = ACTIONS(204), - [sym_keyword_outside] = ACTIONS(204), - [sym_keyword_intersects] = ACTIONS(204), - [sym_keyword_flexible] = ACTIONS(204), - [sym_keyword_readonly] = ACTIONS(204), - [sym_keyword_content] = ACTIONS(204), - [sym_keyword_merge] = ACTIONS(204), - [sym_keyword_patch] = ACTIONS(204), - [sym_keyword_type] = ACTIONS(204), - [sym_keyword_default] = ACTIONS(204), - [sym_keyword_assert] = ACTIONS(204), - [sym_keyword_permissions] = ACTIONS(204), - [sym_keyword_for] = ACTIONS(204), - [sym_keyword_comment] = ACTIONS(204), - [sym_keyword_set] = ACTIONS(204), - [sym_keyword_unset] = ACTIONS(204), - [anon_sym_COMMA] = ACTIONS(204), - [anon_sym_DASH_GT] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_RPAREN] = ACTIONS(204), - [anon_sym_RBRACE] = ACTIONS(204), - [anon_sym_LT_DASH] = ACTIONS(206), - [anon_sym_LT_DASH_GT] = ACTIONS(204), - [anon_sym_STAR] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(206), - [anon_sym_GT] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_AT] = ACTIONS(206), - [anon_sym_LT_PIPE] = ACTIONS(204), - [anon_sym_AMP_AMP] = ACTIONS(204), - [anon_sym_PIPE_PIPE] = ACTIONS(204), - [anon_sym_QMARK_QMARK] = ACTIONS(204), - [anon_sym_QMARK_COLON] = ACTIONS(204), - [anon_sym_BANG_EQ] = ACTIONS(204), - [anon_sym_EQ_EQ] = ACTIONS(204), - [anon_sym_QMARK_EQ] = ACTIONS(204), - [anon_sym_STAR_EQ] = ACTIONS(204), - [anon_sym_TILDE] = ACTIONS(204), - [anon_sym_BANG_TILDE] = ACTIONS(204), - [anon_sym_STAR_TILDE] = ACTIONS(204), - [anon_sym_LT_EQ] = ACTIONS(204), - [anon_sym_GT_EQ] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(206), - [anon_sym_PLUS_EQ] = ACTIONS(204), - [anon_sym_DASH_EQ] = ACTIONS(204), - [anon_sym_u00d7] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(206), - [anon_sym_u00f7] = ACTIONS(204), - [anon_sym_STAR_STAR] = ACTIONS(204), - [anon_sym_u220b] = ACTIONS(204), - [anon_sym_u220c] = ACTIONS(204), - [anon_sym_u2287] = ACTIONS(204), - [anon_sym_u2283] = ACTIONS(204), - [anon_sym_u2285] = ACTIONS(204), - [anon_sym_u2208] = ACTIONS(204), - [anon_sym_u2209] = ACTIONS(204), - [anon_sym_u2286] = ACTIONS(204), - [anon_sym_u2282] = ACTIONS(204), - [anon_sym_u2284] = ACTIONS(204), - [anon_sym_AT_AT] = ACTIONS(204), + [sym_semi_colon] = ACTIONS(164), + [sym_keyword_return] = ACTIONS(164), + [sym_keyword_value] = ACTIONS(164), + [sym_keyword_explain] = ACTIONS(164), + [sym_keyword_parallel] = ACTIONS(164), + [sym_keyword_timeout] = ACTIONS(164), + [sym_keyword_fetch] = ACTIONS(164), + [sym_keyword_limit] = ACTIONS(164), + [sym_keyword_rand] = ACTIONS(164), + [sym_keyword_collate] = ACTIONS(164), + [sym_keyword_numeric] = ACTIONS(164), + [sym_keyword_asc] = ACTIONS(164), + [sym_keyword_desc] = ACTIONS(164), + [sym_keyword_where] = ACTIONS(164), + [sym_keyword_and] = ACTIONS(164), + [sym_keyword_or] = ACTIONS(164), + [sym_keyword_is] = ACTIONS(164), + [sym_keyword_not] = ACTIONS(166), + [sym_keyword_contains] = ACTIONS(164), + [sym_keyword_contains_not] = ACTIONS(164), + [sym_keyword_contains_all] = ACTIONS(164), + [sym_keyword_contains_any] = ACTIONS(164), + [sym_keyword_contains_none] = ACTIONS(164), + [sym_keyword_inside] = ACTIONS(164), + [sym_keyword_in] = ACTIONS(166), + [sym_keyword_not_inside] = ACTIONS(164), + [sym_keyword_all_inside] = ACTIONS(164), + [sym_keyword_any_inside] = ACTIONS(164), + [sym_keyword_none_inside] = ACTIONS(164), + [sym_keyword_outside] = ACTIONS(164), + [sym_keyword_intersects] = ACTIONS(164), + [sym_keyword_flexible] = ACTIONS(164), + [sym_keyword_readonly] = ACTIONS(164), + [sym_keyword_content] = ACTIONS(164), + [sym_keyword_merge] = ACTIONS(164), + [sym_keyword_patch] = ACTIONS(164), + [sym_keyword_type] = ACTIONS(164), + [sym_keyword_default] = ACTIONS(164), + [sym_keyword_assert] = ACTIONS(164), + [sym_keyword_permissions] = ACTIONS(164), + [sym_keyword_for] = ACTIONS(164), + [sym_keyword_comment] = ACTIONS(164), + [sym_keyword_set] = ACTIONS(164), + [sym_keyword_unset] = ACTIONS(164), + [anon_sym_COMMA] = ACTIONS(164), + [anon_sym_DASH_GT] = ACTIONS(164), + [anon_sym_LBRACK] = ACTIONS(164), + [anon_sym_RPAREN] = ACTIONS(164), + [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_LT_DASH] = ACTIONS(166), + [anon_sym_LT_DASH_GT] = ACTIONS(164), + [anon_sym_STAR] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(164), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(166), + [anon_sym_DASH] = ACTIONS(166), + [anon_sym_AT] = ACTIONS(166), + [anon_sym_LT_PIPE] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(164), + [anon_sym_PIPE_PIPE] = ACTIONS(164), + [anon_sym_QMARK_QMARK] = ACTIONS(164), + [anon_sym_QMARK_COLON] = ACTIONS(164), + [anon_sym_BANG_EQ] = ACTIONS(164), + [anon_sym_EQ_EQ] = ACTIONS(164), + [anon_sym_QMARK_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_TILDE] = ACTIONS(164), + [anon_sym_BANG_TILDE] = ACTIONS(164), + [anon_sym_STAR_TILDE] = ACTIONS(164), + [anon_sym_LT_EQ] = ACTIONS(164), + [anon_sym_GT_EQ] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_u00d7] = ACTIONS(164), + [anon_sym_SLASH] = ACTIONS(166), + [anon_sym_u00f7] = ACTIONS(164), + [anon_sym_STAR_STAR] = ACTIONS(164), + [anon_sym_u220b] = ACTIONS(164), + [anon_sym_u220c] = ACTIONS(164), + [anon_sym_u2287] = ACTIONS(164), + [anon_sym_u2283] = ACTIONS(164), + [anon_sym_u2285] = ACTIONS(164), + [anon_sym_u2208] = ACTIONS(164), + [anon_sym_u2209] = ACTIONS(164), + [anon_sym_u2286] = ACTIONS(164), + [anon_sym_u2282] = ACTIONS(164), + [anon_sym_u2284] = ACTIONS(164), + [anon_sym_AT_AT] = ACTIONS(164), }, [50] = { - [ts_builtin_sym_end] = ACTIONS(212), + [ts_builtin_sym_end] = ACTIONS(200), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_return] = ACTIONS(212), - [sym_keyword_value] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(212), - [sym_keyword_parallel] = ACTIONS(212), - [sym_keyword_timeout] = ACTIONS(212), - [sym_keyword_fetch] = ACTIONS(212), - [sym_keyword_limit] = ACTIONS(212), - [sym_keyword_rand] = ACTIONS(212), - [sym_keyword_collate] = ACTIONS(212), - [sym_keyword_numeric] = ACTIONS(212), - [sym_keyword_asc] = ACTIONS(212), - [sym_keyword_desc] = ACTIONS(212), - [sym_keyword_where] = ACTIONS(212), - [sym_keyword_and] = ACTIONS(212), - [sym_keyword_or] = ACTIONS(212), - [sym_keyword_is] = ACTIONS(212), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(212), - [sym_keyword_contains_not] = ACTIONS(212), - [sym_keyword_contains_all] = ACTIONS(212), - [sym_keyword_contains_any] = ACTIONS(212), - [sym_keyword_contains_none] = ACTIONS(212), - [sym_keyword_inside] = ACTIONS(212), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(212), - [sym_keyword_all_inside] = ACTIONS(212), - [sym_keyword_any_inside] = ACTIONS(212), - [sym_keyword_none_inside] = ACTIONS(212), - [sym_keyword_outside] = ACTIONS(212), - [sym_keyword_intersects] = ACTIONS(212), - [sym_keyword_flexible] = ACTIONS(212), - [sym_keyword_readonly] = ACTIONS(212), - [sym_keyword_content] = ACTIONS(212), - [sym_keyword_merge] = ACTIONS(212), - [sym_keyword_patch] = ACTIONS(212), - [sym_keyword_type] = ACTIONS(212), - [sym_keyword_default] = ACTIONS(212), - [sym_keyword_assert] = ACTIONS(212), - [sym_keyword_permissions] = ACTIONS(212), - [sym_keyword_for] = ACTIONS(212), - [sym_keyword_comment] = ACTIONS(212), - [sym_keyword_set] = ACTIONS(212), - [sym_keyword_unset] = ACTIONS(212), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_return] = ACTIONS(200), + [sym_keyword_value] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(200), + [sym_keyword_parallel] = ACTIONS(200), + [sym_keyword_timeout] = ACTIONS(200), + [sym_keyword_fetch] = ACTIONS(200), + [sym_keyword_limit] = ACTIONS(200), + [sym_keyword_rand] = ACTIONS(200), + [sym_keyword_collate] = ACTIONS(200), + [sym_keyword_numeric] = ACTIONS(200), + [sym_keyword_asc] = ACTIONS(200), + [sym_keyword_desc] = ACTIONS(200), + [sym_keyword_where] = ACTIONS(200), + [sym_keyword_and] = ACTIONS(200), + [sym_keyword_or] = ACTIONS(200), + [sym_keyword_is] = ACTIONS(200), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(200), + [sym_keyword_contains_not] = ACTIONS(200), + [sym_keyword_contains_all] = ACTIONS(200), + [sym_keyword_contains_any] = ACTIONS(200), + [sym_keyword_contains_none] = ACTIONS(200), + [sym_keyword_inside] = ACTIONS(200), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(200), + [sym_keyword_all_inside] = ACTIONS(200), + [sym_keyword_any_inside] = ACTIONS(200), + [sym_keyword_none_inside] = ACTIONS(200), + [sym_keyword_outside] = ACTIONS(200), + [sym_keyword_intersects] = ACTIONS(200), + [sym_keyword_flexible] = ACTIONS(200), + [sym_keyword_readonly] = ACTIONS(200), + [sym_keyword_content] = ACTIONS(200), + [sym_keyword_merge] = ACTIONS(200), + [sym_keyword_patch] = ACTIONS(200), + [sym_keyword_type] = ACTIONS(200), + [sym_keyword_default] = ACTIONS(200), + [sym_keyword_assert] = ACTIONS(200), + [sym_keyword_permissions] = ACTIONS(200), + [sym_keyword_for] = ACTIONS(200), + [sym_keyword_comment] = ACTIONS(200), + [sym_keyword_set] = ACTIONS(200), + [sym_keyword_unset] = ACTIONS(200), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [51] = { - [aux_sym_duration_repeat1] = STATE(51), - [ts_builtin_sym_end] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(103), - [sym_keyword_return] = ACTIONS(103), - [sym_keyword_as] = ACTIONS(103), - [sym_keyword_explain] = ACTIONS(103), - [sym_keyword_parallel] = ACTIONS(103), - [sym_keyword_timeout] = ACTIONS(103), - [sym_keyword_where] = ACTIONS(103), - [sym_keyword_group] = ACTIONS(103), - [sym_keyword_and] = ACTIONS(103), - [sym_keyword_or] = ACTIONS(103), - [sym_keyword_is] = ACTIONS(103), - [sym_keyword_not] = ACTIONS(105), - [sym_keyword_contains] = ACTIONS(103), - [sym_keyword_contains_not] = ACTIONS(103), - [sym_keyword_contains_all] = ACTIONS(103), - [sym_keyword_contains_any] = ACTIONS(103), - [sym_keyword_contains_none] = ACTIONS(103), - [sym_keyword_inside] = ACTIONS(103), - [sym_keyword_in] = ACTIONS(105), - [sym_keyword_not_inside] = ACTIONS(103), - [sym_keyword_all_inside] = ACTIONS(103), - [sym_keyword_any_inside] = ACTIONS(103), - [sym_keyword_none_inside] = ACTIONS(103), - [sym_keyword_outside] = ACTIONS(103), - [sym_keyword_intersects] = ACTIONS(103), - [sym_keyword_drop] = ACTIONS(103), - [sym_keyword_schemafull] = ACTIONS(103), - [sym_keyword_schemaless] = ACTIONS(103), - [sym_keyword_changefeed] = ACTIONS(103), - [sym_keyword_content] = ACTIONS(103), - [sym_keyword_merge] = ACTIONS(103), - [sym_keyword_patch] = ACTIONS(103), - [sym_keyword_type] = ACTIONS(103), - [sym_keyword_permissions] = ACTIONS(103), - [sym_keyword_for] = ACTIONS(103), - [sym_keyword_comment] = ACTIONS(103), - [sym_keyword_session] = ACTIONS(103), - [sym_keyword_signin] = ACTIONS(103), - [sym_keyword_signup] = ACTIONS(103), - [sym_keyword_set] = ACTIONS(103), - [sym_keyword_unset] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_DASH_GT] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(105), - [anon_sym_LT_DASH_GT] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_EQ] = ACTIONS(105), + [aux_sym_duration_repeat1] = STATE(52), + [ts_builtin_sym_end] = ACTIONS(104), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(104), + [sym_keyword_return] = ACTIONS(104), + [sym_keyword_as] = ACTIONS(104), + [sym_keyword_explain] = ACTIONS(104), + [sym_keyword_parallel] = ACTIONS(104), + [sym_keyword_timeout] = ACTIONS(104), + [sym_keyword_where] = ACTIONS(104), + [sym_keyword_group] = ACTIONS(104), + [sym_keyword_and] = ACTIONS(104), + [sym_keyword_or] = ACTIONS(104), + [sym_keyword_is] = ACTIONS(104), + [sym_keyword_not] = ACTIONS(106), + [sym_keyword_contains] = ACTIONS(104), + [sym_keyword_contains_not] = ACTIONS(104), + [sym_keyword_contains_all] = ACTIONS(104), + [sym_keyword_contains_any] = ACTIONS(104), + [sym_keyword_contains_none] = ACTIONS(104), + [sym_keyword_inside] = ACTIONS(104), + [sym_keyword_in] = ACTIONS(106), + [sym_keyword_not_inside] = ACTIONS(104), + [sym_keyword_all_inside] = ACTIONS(104), + [sym_keyword_any_inside] = ACTIONS(104), + [sym_keyword_none_inside] = ACTIONS(104), + [sym_keyword_outside] = ACTIONS(104), + [sym_keyword_intersects] = ACTIONS(104), + [sym_keyword_drop] = ACTIONS(104), + [sym_keyword_schemafull] = ACTIONS(104), + [sym_keyword_schemaless] = ACTIONS(104), + [sym_keyword_changefeed] = ACTIONS(104), + [sym_keyword_content] = ACTIONS(104), + [sym_keyword_merge] = ACTIONS(104), + [sym_keyword_patch] = ACTIONS(104), + [sym_keyword_type] = ACTIONS(104), + [sym_keyword_permissions] = ACTIONS(104), + [sym_keyword_for] = ACTIONS(104), + [sym_keyword_comment] = ACTIONS(104), + [sym_keyword_session] = ACTIONS(104), + [sym_keyword_signin] = ACTIONS(104), + [sym_keyword_signup] = ACTIONS(104), + [sym_keyword_set] = ACTIONS(104), + [sym_keyword_unset] = ACTIONS(104), + [anon_sym_COMMA] = ACTIONS(104), + [anon_sym_DASH_GT] = ACTIONS(104), + [anon_sym_LBRACK] = ACTIONS(104), + [anon_sym_RPAREN] = ACTIONS(104), + [anon_sym_RBRACE] = ACTIONS(104), + [anon_sym_LT_DASH] = ACTIONS(106), + [anon_sym_LT_DASH_GT] = ACTIONS(104), + [anon_sym_STAR] = ACTIONS(106), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LT] = ACTIONS(106), + [anon_sym_GT] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(106), [sym_duration_part] = ACTIONS(216), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_AT] = ACTIONS(105), - [anon_sym_LT_PIPE] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_PIPE_PIPE] = ACTIONS(103), - [anon_sym_QMARK_QMARK] = ACTIONS(103), - [anon_sym_QMARK_COLON] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_QMARK_EQ] = ACTIONS(103), - [anon_sym_STAR_EQ] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_STAR_TILDE] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_PLUS_EQ] = ACTIONS(103), - [anon_sym_DASH_EQ] = ACTIONS(103), - [anon_sym_u00d7] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(105), - [anon_sym_u00f7] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_u220b] = ACTIONS(103), - [anon_sym_u220c] = ACTIONS(103), - [anon_sym_u2287] = ACTIONS(103), - [anon_sym_u2283] = ACTIONS(103), - [anon_sym_u2285] = ACTIONS(103), - [anon_sym_u2208] = ACTIONS(103), - [anon_sym_u2209] = ACTIONS(103), - [anon_sym_u2286] = ACTIONS(103), - [anon_sym_u2282] = ACTIONS(103), - [anon_sym_u2284] = ACTIONS(103), - [anon_sym_AT_AT] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(106), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_LT_PIPE] = ACTIONS(104), + [anon_sym_AMP_AMP] = ACTIONS(104), + [anon_sym_PIPE_PIPE] = ACTIONS(104), + [anon_sym_QMARK_QMARK] = ACTIONS(104), + [anon_sym_QMARK_COLON] = ACTIONS(104), + [anon_sym_BANG_EQ] = ACTIONS(104), + [anon_sym_EQ_EQ] = ACTIONS(104), + [anon_sym_QMARK_EQ] = ACTIONS(104), + [anon_sym_STAR_EQ] = ACTIONS(104), + [anon_sym_TILDE] = ACTIONS(104), + [anon_sym_BANG_TILDE] = ACTIONS(104), + [anon_sym_STAR_TILDE] = ACTIONS(104), + [anon_sym_LT_EQ] = ACTIONS(104), + [anon_sym_GT_EQ] = ACTIONS(104), + [anon_sym_PLUS] = ACTIONS(106), + [anon_sym_PLUS_EQ] = ACTIONS(104), + [anon_sym_DASH_EQ] = ACTIONS(104), + [anon_sym_u00d7] = ACTIONS(104), + [anon_sym_SLASH] = ACTIONS(106), + [anon_sym_u00f7] = ACTIONS(104), + [anon_sym_STAR_STAR] = ACTIONS(104), + [anon_sym_u220b] = ACTIONS(104), + [anon_sym_u220c] = ACTIONS(104), + [anon_sym_u2287] = ACTIONS(104), + [anon_sym_u2283] = ACTIONS(104), + [anon_sym_u2285] = ACTIONS(104), + [anon_sym_u2208] = ACTIONS(104), + [anon_sym_u2209] = ACTIONS(104), + [anon_sym_u2286] = ACTIONS(104), + [anon_sym_u2282] = ACTIONS(104), + [anon_sym_u2284] = ACTIONS(104), + [anon_sym_AT_AT] = ACTIONS(104), }, [52] = { - [aux_sym_duration_repeat1] = STATE(51), + [aux_sym_duration_repeat1] = STATE(52), [ts_builtin_sym_end] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(97), @@ -21341,7 +21361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_GT] = ACTIONS(99), [anon_sym_EQ] = ACTIONS(99), - [sym_duration_part] = ACTIONS(219), + [sym_duration_part] = ACTIONS(218), [anon_sym_DASH] = ACTIONS(99), [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_PIPE] = ACTIONS(97), @@ -21378,96 +21398,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(97), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(188), + [ts_builtin_sym_end] = ACTIONS(172), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(188), - [sym_keyword_return] = ACTIONS(188), - [sym_keyword_value] = ACTIONS(188), - [sym_keyword_explain] = ACTIONS(188), - [sym_keyword_parallel] = ACTIONS(188), - [sym_keyword_timeout] = ACTIONS(188), - [sym_keyword_fetch] = ACTIONS(188), - [sym_keyword_limit] = ACTIONS(188), - [sym_keyword_rand] = ACTIONS(188), - [sym_keyword_collate] = ACTIONS(188), - [sym_keyword_numeric] = ACTIONS(188), - [sym_keyword_asc] = ACTIONS(188), - [sym_keyword_desc] = ACTIONS(188), - [sym_keyword_where] = ACTIONS(188), - [sym_keyword_and] = ACTIONS(188), - [sym_keyword_or] = ACTIONS(188), - [sym_keyword_is] = ACTIONS(188), - [sym_keyword_not] = ACTIONS(190), - [sym_keyword_contains] = ACTIONS(188), - [sym_keyword_contains_not] = ACTIONS(188), - [sym_keyword_contains_all] = ACTIONS(188), - [sym_keyword_contains_any] = ACTIONS(188), - [sym_keyword_contains_none] = ACTIONS(188), - [sym_keyword_inside] = ACTIONS(188), - [sym_keyword_in] = ACTIONS(190), - [sym_keyword_not_inside] = ACTIONS(188), - [sym_keyword_all_inside] = ACTIONS(188), - [sym_keyword_any_inside] = ACTIONS(188), - [sym_keyword_none_inside] = ACTIONS(188), - [sym_keyword_outside] = ACTIONS(188), - [sym_keyword_intersects] = ACTIONS(188), - [sym_keyword_flexible] = ACTIONS(188), - [sym_keyword_readonly] = ACTIONS(188), - [sym_keyword_content] = ACTIONS(188), - [sym_keyword_merge] = ACTIONS(188), - [sym_keyword_patch] = ACTIONS(188), - [sym_keyword_type] = ACTIONS(188), - [sym_keyword_default] = ACTIONS(188), - [sym_keyword_assert] = ACTIONS(188), - [sym_keyword_permissions] = ACTIONS(188), - [sym_keyword_for] = ACTIONS(188), - [sym_keyword_comment] = ACTIONS(188), - [sym_keyword_set] = ACTIONS(188), - [sym_keyword_unset] = ACTIONS(188), - [anon_sym_COMMA] = ACTIONS(188), - [anon_sym_DASH_GT] = ACTIONS(188), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT_DASH] = ACTIONS(190), - [anon_sym_LT_DASH_GT] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(190), - [anon_sym_DOT] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(190), - [anon_sym_GT] = ACTIONS(190), - [anon_sym_EQ] = ACTIONS(190), - [anon_sym_DASH] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(190), - [anon_sym_LT_PIPE] = ACTIONS(188), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_QMARK_QMARK] = ACTIONS(188), - [anon_sym_QMARK_COLON] = ACTIONS(188), - [anon_sym_BANG_EQ] = ACTIONS(188), - [anon_sym_EQ_EQ] = ACTIONS(188), - [anon_sym_QMARK_EQ] = ACTIONS(188), - [anon_sym_STAR_EQ] = ACTIONS(188), - [anon_sym_TILDE] = ACTIONS(188), - [anon_sym_BANG_TILDE] = ACTIONS(188), - [anon_sym_STAR_TILDE] = ACTIONS(188), - [anon_sym_LT_EQ] = ACTIONS(188), - [anon_sym_GT_EQ] = ACTIONS(188), - [anon_sym_PLUS] = ACTIONS(190), - [anon_sym_PLUS_EQ] = ACTIONS(188), - [anon_sym_DASH_EQ] = ACTIONS(188), - [anon_sym_u00d7] = ACTIONS(188), - [anon_sym_SLASH] = ACTIONS(190), - [anon_sym_u00f7] = ACTIONS(188), - [anon_sym_STAR_STAR] = ACTIONS(188), - [anon_sym_u220b] = ACTIONS(188), - [anon_sym_u220c] = ACTIONS(188), - [anon_sym_u2287] = ACTIONS(188), - [anon_sym_u2283] = ACTIONS(188), - [anon_sym_u2285] = ACTIONS(188), - [anon_sym_u2208] = ACTIONS(188), - [anon_sym_u2209] = ACTIONS(188), - [anon_sym_u2286] = ACTIONS(188), - [anon_sym_u2282] = ACTIONS(188), - [anon_sym_u2284] = ACTIONS(188), - [anon_sym_AT_AT] = ACTIONS(188), + [sym_semi_colon] = ACTIONS(172), + [sym_keyword_return] = ACTIONS(172), + [sym_keyword_value] = ACTIONS(172), + [sym_keyword_explain] = ACTIONS(172), + [sym_keyword_parallel] = ACTIONS(172), + [sym_keyword_timeout] = ACTIONS(172), + [sym_keyword_fetch] = ACTIONS(172), + [sym_keyword_limit] = ACTIONS(172), + [sym_keyword_rand] = ACTIONS(172), + [sym_keyword_collate] = ACTIONS(172), + [sym_keyword_numeric] = ACTIONS(172), + [sym_keyword_asc] = ACTIONS(172), + [sym_keyword_desc] = ACTIONS(172), + [sym_keyword_where] = ACTIONS(172), + [sym_keyword_and] = ACTIONS(172), + [sym_keyword_or] = ACTIONS(172), + [sym_keyword_is] = ACTIONS(172), + [sym_keyword_not] = ACTIONS(174), + [sym_keyword_contains] = ACTIONS(172), + [sym_keyword_contains_not] = ACTIONS(172), + [sym_keyword_contains_all] = ACTIONS(172), + [sym_keyword_contains_any] = ACTIONS(172), + [sym_keyword_contains_none] = ACTIONS(172), + [sym_keyword_inside] = ACTIONS(172), + [sym_keyword_in] = ACTIONS(174), + [sym_keyword_not_inside] = ACTIONS(172), + [sym_keyword_all_inside] = ACTIONS(172), + [sym_keyword_any_inside] = ACTIONS(172), + [sym_keyword_none_inside] = ACTIONS(172), + [sym_keyword_outside] = ACTIONS(172), + [sym_keyword_intersects] = ACTIONS(172), + [sym_keyword_flexible] = ACTIONS(172), + [sym_keyword_readonly] = ACTIONS(172), + [sym_keyword_content] = ACTIONS(172), + [sym_keyword_merge] = ACTIONS(172), + [sym_keyword_patch] = ACTIONS(172), + [sym_keyword_type] = ACTIONS(172), + [sym_keyword_default] = ACTIONS(172), + [sym_keyword_assert] = ACTIONS(172), + [sym_keyword_permissions] = ACTIONS(172), + [sym_keyword_for] = ACTIONS(172), + [sym_keyword_comment] = ACTIONS(172), + [sym_keyword_set] = ACTIONS(172), + [sym_keyword_unset] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_DASH_GT] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_LT_DASH] = ACTIONS(174), + [anon_sym_LT_DASH_GT] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_EQ] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_AT] = ACTIONS(174), + [anon_sym_LT_PIPE] = ACTIONS(172), + [anon_sym_AMP_AMP] = ACTIONS(172), + [anon_sym_PIPE_PIPE] = ACTIONS(172), + [anon_sym_QMARK_QMARK] = ACTIONS(172), + [anon_sym_QMARK_COLON] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_EQ_EQ] = ACTIONS(172), + [anon_sym_QMARK_EQ] = ACTIONS(172), + [anon_sym_STAR_EQ] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_BANG_TILDE] = ACTIONS(172), + [anon_sym_STAR_TILDE] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_PLUS_EQ] = ACTIONS(172), + [anon_sym_DASH_EQ] = ACTIONS(172), + [anon_sym_u00d7] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_u00f7] = ACTIONS(172), + [anon_sym_STAR_STAR] = ACTIONS(172), + [anon_sym_u220b] = ACTIONS(172), + [anon_sym_u220c] = ACTIONS(172), + [anon_sym_u2287] = ACTIONS(172), + [anon_sym_u2283] = ACTIONS(172), + [anon_sym_u2285] = ACTIONS(172), + [anon_sym_u2208] = ACTIONS(172), + [anon_sym_u2209] = ACTIONS(172), + [anon_sym_u2286] = ACTIONS(172), + [anon_sym_u2282] = ACTIONS(172), + [anon_sym_u2284] = ACTIONS(172), + [anon_sym_AT_AT] = ACTIONS(172), }, [54] = { [ts_builtin_sym_end] = ACTIONS(168), @@ -21562,556 +21582,556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(168), }, [55] = { - [ts_builtin_sym_end] = ACTIONS(200), + [ts_builtin_sym_end] = ACTIONS(180), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(200), - [sym_keyword_return] = ACTIONS(200), - [sym_keyword_value] = ACTIONS(200), - [sym_keyword_explain] = ACTIONS(200), - [sym_keyword_parallel] = ACTIONS(200), - [sym_keyword_timeout] = ACTIONS(200), - [sym_keyword_fetch] = ACTIONS(200), - [sym_keyword_limit] = ACTIONS(200), - [sym_keyword_rand] = ACTIONS(200), - [sym_keyword_collate] = ACTIONS(200), - [sym_keyword_numeric] = ACTIONS(200), - [sym_keyword_asc] = ACTIONS(200), - [sym_keyword_desc] = ACTIONS(200), - [sym_keyword_where] = ACTIONS(200), - [sym_keyword_and] = ACTIONS(200), - [sym_keyword_or] = ACTIONS(200), - [sym_keyword_is] = ACTIONS(200), - [sym_keyword_not] = ACTIONS(202), - [sym_keyword_contains] = ACTIONS(200), - [sym_keyword_contains_not] = ACTIONS(200), - [sym_keyword_contains_all] = ACTIONS(200), - [sym_keyword_contains_any] = ACTIONS(200), - [sym_keyword_contains_none] = ACTIONS(200), - [sym_keyword_inside] = ACTIONS(200), - [sym_keyword_in] = ACTIONS(202), - [sym_keyword_not_inside] = ACTIONS(200), - [sym_keyword_all_inside] = ACTIONS(200), - [sym_keyword_any_inside] = ACTIONS(200), - [sym_keyword_none_inside] = ACTIONS(200), - [sym_keyword_outside] = ACTIONS(200), - [sym_keyword_intersects] = ACTIONS(200), - [sym_keyword_flexible] = ACTIONS(200), - [sym_keyword_readonly] = ACTIONS(200), - [sym_keyword_content] = ACTIONS(200), - [sym_keyword_merge] = ACTIONS(200), - [sym_keyword_patch] = ACTIONS(200), - [sym_keyword_type] = ACTIONS(200), - [sym_keyword_default] = ACTIONS(200), - [sym_keyword_assert] = ACTIONS(200), - [sym_keyword_permissions] = ACTIONS(200), - [sym_keyword_for] = ACTIONS(200), - [sym_keyword_comment] = ACTIONS(200), - [sym_keyword_set] = ACTIONS(200), - [sym_keyword_unset] = ACTIONS(200), - [anon_sym_COMMA] = ACTIONS(200), - [anon_sym_DASH_GT] = ACTIONS(200), - [anon_sym_LBRACK] = ACTIONS(200), - [anon_sym_LT_DASH] = ACTIONS(202), - [anon_sym_LT_DASH_GT] = ACTIONS(200), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_DOT] = ACTIONS(200), - [anon_sym_LT] = ACTIONS(202), - [anon_sym_GT] = ACTIONS(202), - [anon_sym_EQ] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_LT_PIPE] = ACTIONS(200), - [anon_sym_AMP_AMP] = ACTIONS(200), - [anon_sym_PIPE_PIPE] = ACTIONS(200), - [anon_sym_QMARK_QMARK] = ACTIONS(200), - [anon_sym_QMARK_COLON] = ACTIONS(200), - [anon_sym_BANG_EQ] = ACTIONS(200), - [anon_sym_EQ_EQ] = ACTIONS(200), - [anon_sym_QMARK_EQ] = ACTIONS(200), - [anon_sym_STAR_EQ] = ACTIONS(200), - [anon_sym_TILDE] = ACTIONS(200), - [anon_sym_BANG_TILDE] = ACTIONS(200), - [anon_sym_STAR_TILDE] = ACTIONS(200), - [anon_sym_LT_EQ] = ACTIONS(200), - [anon_sym_GT_EQ] = ACTIONS(200), - [anon_sym_PLUS] = ACTIONS(202), - [anon_sym_PLUS_EQ] = ACTIONS(200), - [anon_sym_DASH_EQ] = ACTIONS(200), - [anon_sym_u00d7] = ACTIONS(200), - [anon_sym_SLASH] = ACTIONS(202), - [anon_sym_u00f7] = ACTIONS(200), - [anon_sym_STAR_STAR] = ACTIONS(200), - [anon_sym_u220b] = ACTIONS(200), - [anon_sym_u220c] = ACTIONS(200), - [anon_sym_u2287] = ACTIONS(200), - [anon_sym_u2283] = ACTIONS(200), - [anon_sym_u2285] = ACTIONS(200), - [anon_sym_u2208] = ACTIONS(200), - [anon_sym_u2209] = ACTIONS(200), - [anon_sym_u2286] = ACTIONS(200), - [anon_sym_u2282] = ACTIONS(200), - [anon_sym_u2284] = ACTIONS(200), - [anon_sym_AT_AT] = ACTIONS(200), + [sym_semi_colon] = ACTIONS(180), + [sym_keyword_return] = ACTIONS(180), + [sym_keyword_value] = ACTIONS(180), + [sym_keyword_explain] = ACTIONS(180), + [sym_keyword_parallel] = ACTIONS(180), + [sym_keyword_timeout] = ACTIONS(180), + [sym_keyword_fetch] = ACTIONS(180), + [sym_keyword_limit] = ACTIONS(180), + [sym_keyword_rand] = ACTIONS(180), + [sym_keyword_collate] = ACTIONS(180), + [sym_keyword_numeric] = ACTIONS(180), + [sym_keyword_asc] = ACTIONS(180), + [sym_keyword_desc] = ACTIONS(180), + [sym_keyword_where] = ACTIONS(180), + [sym_keyword_and] = ACTIONS(180), + [sym_keyword_or] = ACTIONS(180), + [sym_keyword_is] = ACTIONS(180), + [sym_keyword_not] = ACTIONS(182), + [sym_keyword_contains] = ACTIONS(180), + [sym_keyword_contains_not] = ACTIONS(180), + [sym_keyword_contains_all] = ACTIONS(180), + [sym_keyword_contains_any] = ACTIONS(180), + [sym_keyword_contains_none] = ACTIONS(180), + [sym_keyword_inside] = ACTIONS(180), + [sym_keyword_in] = ACTIONS(182), + [sym_keyword_not_inside] = ACTIONS(180), + [sym_keyword_all_inside] = ACTIONS(180), + [sym_keyword_any_inside] = ACTIONS(180), + [sym_keyword_none_inside] = ACTIONS(180), + [sym_keyword_outside] = ACTIONS(180), + [sym_keyword_intersects] = ACTIONS(180), + [sym_keyword_flexible] = ACTIONS(180), + [sym_keyword_readonly] = ACTIONS(180), + [sym_keyword_content] = ACTIONS(180), + [sym_keyword_merge] = ACTIONS(180), + [sym_keyword_patch] = ACTIONS(180), + [sym_keyword_type] = ACTIONS(180), + [sym_keyword_default] = ACTIONS(180), + [sym_keyword_assert] = ACTIONS(180), + [sym_keyword_permissions] = ACTIONS(180), + [sym_keyword_for] = ACTIONS(180), + [sym_keyword_comment] = ACTIONS(180), + [sym_keyword_set] = ACTIONS(180), + [sym_keyword_unset] = ACTIONS(180), + [anon_sym_COMMA] = ACTIONS(180), + [anon_sym_DASH_GT] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_LT_DASH] = ACTIONS(182), + [anon_sym_LT_DASH_GT] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(182), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(182), + [anon_sym_GT] = ACTIONS(182), + [anon_sym_EQ] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_AT] = ACTIONS(182), + [anon_sym_LT_PIPE] = ACTIONS(180), + [anon_sym_AMP_AMP] = ACTIONS(180), + [anon_sym_PIPE_PIPE] = ACTIONS(180), + [anon_sym_QMARK_QMARK] = ACTIONS(180), + [anon_sym_QMARK_COLON] = ACTIONS(180), + [anon_sym_BANG_EQ] = ACTIONS(180), + [anon_sym_EQ_EQ] = ACTIONS(180), + [anon_sym_QMARK_EQ] = ACTIONS(180), + [anon_sym_STAR_EQ] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_BANG_TILDE] = ACTIONS(180), + [anon_sym_STAR_TILDE] = ACTIONS(180), + [anon_sym_LT_EQ] = ACTIONS(180), + [anon_sym_GT_EQ] = ACTIONS(180), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_PLUS_EQ] = ACTIONS(180), + [anon_sym_DASH_EQ] = ACTIONS(180), + [anon_sym_u00d7] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(182), + [anon_sym_u00f7] = ACTIONS(180), + [anon_sym_STAR_STAR] = ACTIONS(180), + [anon_sym_u220b] = ACTIONS(180), + [anon_sym_u220c] = ACTIONS(180), + [anon_sym_u2287] = ACTIONS(180), + [anon_sym_u2283] = ACTIONS(180), + [anon_sym_u2285] = ACTIONS(180), + [anon_sym_u2208] = ACTIONS(180), + [anon_sym_u2209] = ACTIONS(180), + [anon_sym_u2286] = ACTIONS(180), + [anon_sym_u2282] = ACTIONS(180), + [anon_sym_u2284] = ACTIONS(180), + [anon_sym_AT_AT] = ACTIONS(180), }, [56] = { - [ts_builtin_sym_end] = ACTIONS(164), + [ts_builtin_sym_end] = ACTIONS(196), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(164), - [sym_keyword_return] = ACTIONS(164), - [sym_keyword_value] = ACTIONS(164), - [sym_keyword_explain] = ACTIONS(164), - [sym_keyword_parallel] = ACTIONS(164), - [sym_keyword_timeout] = ACTIONS(164), - [sym_keyword_fetch] = ACTIONS(164), - [sym_keyword_limit] = ACTIONS(164), - [sym_keyword_rand] = ACTIONS(164), - [sym_keyword_collate] = ACTIONS(164), - [sym_keyword_numeric] = ACTIONS(164), - [sym_keyword_asc] = ACTIONS(164), - [sym_keyword_desc] = ACTIONS(164), - [sym_keyword_where] = ACTIONS(164), - [sym_keyword_and] = ACTIONS(164), - [sym_keyword_or] = ACTIONS(164), - [sym_keyword_is] = ACTIONS(164), - [sym_keyword_not] = ACTIONS(166), - [sym_keyword_contains] = ACTIONS(164), - [sym_keyword_contains_not] = ACTIONS(164), - [sym_keyword_contains_all] = ACTIONS(164), - [sym_keyword_contains_any] = ACTIONS(164), - [sym_keyword_contains_none] = ACTIONS(164), - [sym_keyword_inside] = ACTIONS(164), - [sym_keyword_in] = ACTIONS(166), - [sym_keyword_not_inside] = ACTIONS(164), - [sym_keyword_all_inside] = ACTIONS(164), - [sym_keyword_any_inside] = ACTIONS(164), - [sym_keyword_none_inside] = ACTIONS(164), - [sym_keyword_outside] = ACTIONS(164), - [sym_keyword_intersects] = ACTIONS(164), - [sym_keyword_flexible] = ACTIONS(164), - [sym_keyword_readonly] = ACTIONS(164), - [sym_keyword_content] = ACTIONS(164), - [sym_keyword_merge] = ACTIONS(164), - [sym_keyword_patch] = ACTIONS(164), - [sym_keyword_type] = ACTIONS(164), - [sym_keyword_default] = ACTIONS(164), - [sym_keyword_assert] = ACTIONS(164), - [sym_keyword_permissions] = ACTIONS(164), - [sym_keyword_for] = ACTIONS(164), - [sym_keyword_comment] = ACTIONS(164), - [sym_keyword_set] = ACTIONS(164), - [sym_keyword_unset] = ACTIONS(164), - [anon_sym_COMMA] = ACTIONS(164), - [anon_sym_DASH_GT] = ACTIONS(164), - [anon_sym_LBRACK] = ACTIONS(164), - [anon_sym_LT_DASH] = ACTIONS(166), - [anon_sym_LT_DASH_GT] = ACTIONS(164), - [anon_sym_STAR] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(164), - [anon_sym_LT] = ACTIONS(166), - [anon_sym_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_AT] = ACTIONS(166), - [anon_sym_LT_PIPE] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(164), - [anon_sym_PIPE_PIPE] = ACTIONS(164), - [anon_sym_QMARK_QMARK] = ACTIONS(164), - [anon_sym_QMARK_COLON] = ACTIONS(164), - [anon_sym_BANG_EQ] = ACTIONS(164), - [anon_sym_EQ_EQ] = ACTIONS(164), - [anon_sym_QMARK_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_BANG_TILDE] = ACTIONS(164), - [anon_sym_STAR_TILDE] = ACTIONS(164), - [anon_sym_LT_EQ] = ACTIONS(164), - [anon_sym_GT_EQ] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_u00d7] = ACTIONS(164), - [anon_sym_SLASH] = ACTIONS(166), - [anon_sym_u00f7] = ACTIONS(164), - [anon_sym_STAR_STAR] = ACTIONS(164), - [anon_sym_u220b] = ACTIONS(164), - [anon_sym_u220c] = ACTIONS(164), - [anon_sym_u2287] = ACTIONS(164), - [anon_sym_u2283] = ACTIONS(164), - [anon_sym_u2285] = ACTIONS(164), - [anon_sym_u2208] = ACTIONS(164), - [anon_sym_u2209] = ACTIONS(164), - [anon_sym_u2286] = ACTIONS(164), - [anon_sym_u2282] = ACTIONS(164), - [anon_sym_u2284] = ACTIONS(164), - [anon_sym_AT_AT] = ACTIONS(164), + [sym_semi_colon] = ACTIONS(196), + [sym_keyword_return] = ACTIONS(196), + [sym_keyword_value] = ACTIONS(196), + [sym_keyword_explain] = ACTIONS(196), + [sym_keyword_parallel] = ACTIONS(196), + [sym_keyword_timeout] = ACTIONS(196), + [sym_keyword_fetch] = ACTIONS(196), + [sym_keyword_limit] = ACTIONS(196), + [sym_keyword_rand] = ACTIONS(196), + [sym_keyword_collate] = ACTIONS(196), + [sym_keyword_numeric] = ACTIONS(196), + [sym_keyword_asc] = ACTIONS(196), + [sym_keyword_desc] = ACTIONS(196), + [sym_keyword_where] = ACTIONS(196), + [sym_keyword_and] = ACTIONS(196), + [sym_keyword_or] = ACTIONS(196), + [sym_keyword_is] = ACTIONS(196), + [sym_keyword_not] = ACTIONS(198), + [sym_keyword_contains] = ACTIONS(196), + [sym_keyword_contains_not] = ACTIONS(196), + [sym_keyword_contains_all] = ACTIONS(196), + [sym_keyword_contains_any] = ACTIONS(196), + [sym_keyword_contains_none] = ACTIONS(196), + [sym_keyword_inside] = ACTIONS(196), + [sym_keyword_in] = ACTIONS(198), + [sym_keyword_not_inside] = ACTIONS(196), + [sym_keyword_all_inside] = ACTIONS(196), + [sym_keyword_any_inside] = ACTIONS(196), + [sym_keyword_none_inside] = ACTIONS(196), + [sym_keyword_outside] = ACTIONS(196), + [sym_keyword_intersects] = ACTIONS(196), + [sym_keyword_flexible] = ACTIONS(196), + [sym_keyword_readonly] = ACTIONS(196), + [sym_keyword_content] = ACTIONS(196), + [sym_keyword_merge] = ACTIONS(196), + [sym_keyword_patch] = ACTIONS(196), + [sym_keyword_type] = ACTIONS(196), + [sym_keyword_default] = ACTIONS(196), + [sym_keyword_assert] = ACTIONS(196), + [sym_keyword_permissions] = ACTIONS(196), + [sym_keyword_for] = ACTIONS(196), + [sym_keyword_comment] = ACTIONS(196), + [sym_keyword_set] = ACTIONS(196), + [sym_keyword_unset] = ACTIONS(196), + [anon_sym_COMMA] = ACTIONS(196), + [anon_sym_DASH_GT] = ACTIONS(196), + [anon_sym_LBRACK] = ACTIONS(196), + [anon_sym_LT_DASH] = ACTIONS(198), + [anon_sym_LT_DASH_GT] = ACTIONS(196), + [anon_sym_STAR] = ACTIONS(198), + [anon_sym_DOT] = ACTIONS(196), + [anon_sym_LT] = ACTIONS(198), + [anon_sym_GT] = ACTIONS(198), + [anon_sym_EQ] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(198), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_LT_PIPE] = ACTIONS(196), + [anon_sym_AMP_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(196), + [anon_sym_QMARK_QMARK] = ACTIONS(196), + [anon_sym_QMARK_COLON] = ACTIONS(196), + [anon_sym_BANG_EQ] = ACTIONS(196), + [anon_sym_EQ_EQ] = ACTIONS(196), + [anon_sym_QMARK_EQ] = ACTIONS(196), + [anon_sym_STAR_EQ] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_BANG_TILDE] = ACTIONS(196), + [anon_sym_STAR_TILDE] = ACTIONS(196), + [anon_sym_LT_EQ] = ACTIONS(196), + [anon_sym_GT_EQ] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(198), + [anon_sym_PLUS_EQ] = ACTIONS(196), + [anon_sym_DASH_EQ] = ACTIONS(196), + [anon_sym_u00d7] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(198), + [anon_sym_u00f7] = ACTIONS(196), + [anon_sym_STAR_STAR] = ACTIONS(196), + [anon_sym_u220b] = ACTIONS(196), + [anon_sym_u220c] = ACTIONS(196), + [anon_sym_u2287] = ACTIONS(196), + [anon_sym_u2283] = ACTIONS(196), + [anon_sym_u2285] = ACTIONS(196), + [anon_sym_u2208] = ACTIONS(196), + [anon_sym_u2209] = ACTIONS(196), + [anon_sym_u2286] = ACTIONS(196), + [anon_sym_u2282] = ACTIONS(196), + [anon_sym_u2284] = ACTIONS(196), + [anon_sym_AT_AT] = ACTIONS(196), }, [57] = { - [ts_builtin_sym_end] = ACTIONS(140), + [ts_builtin_sym_end] = ACTIONS(144), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(140), - [sym_keyword_return] = ACTIONS(140), - [sym_keyword_value] = ACTIONS(140), - [sym_keyword_explain] = ACTIONS(140), - [sym_keyword_parallel] = ACTIONS(140), - [sym_keyword_timeout] = ACTIONS(140), - [sym_keyword_fetch] = ACTIONS(140), - [sym_keyword_limit] = ACTIONS(140), - [sym_keyword_rand] = ACTIONS(140), - [sym_keyword_collate] = ACTIONS(140), - [sym_keyword_numeric] = ACTIONS(140), - [sym_keyword_asc] = ACTIONS(140), - [sym_keyword_desc] = ACTIONS(140), - [sym_keyword_where] = ACTIONS(140), - [sym_keyword_and] = ACTIONS(140), - [sym_keyword_or] = ACTIONS(140), - [sym_keyword_is] = ACTIONS(140), - [sym_keyword_not] = ACTIONS(142), - [sym_keyword_contains] = ACTIONS(140), - [sym_keyword_contains_not] = ACTIONS(140), - [sym_keyword_contains_all] = ACTIONS(140), - [sym_keyword_contains_any] = ACTIONS(140), - [sym_keyword_contains_none] = ACTIONS(140), - [sym_keyword_inside] = ACTIONS(140), - [sym_keyword_in] = ACTIONS(142), - [sym_keyword_not_inside] = ACTIONS(140), - [sym_keyword_all_inside] = ACTIONS(140), - [sym_keyword_any_inside] = ACTIONS(140), - [sym_keyword_none_inside] = ACTIONS(140), - [sym_keyword_outside] = ACTIONS(140), - [sym_keyword_intersects] = ACTIONS(140), - [sym_keyword_flexible] = ACTIONS(140), - [sym_keyword_readonly] = ACTIONS(140), - [sym_keyword_content] = ACTIONS(140), - [sym_keyword_merge] = ACTIONS(140), - [sym_keyword_patch] = ACTIONS(140), - [sym_keyword_type] = ACTIONS(140), - [sym_keyword_default] = ACTIONS(140), - [sym_keyword_assert] = ACTIONS(140), - [sym_keyword_permissions] = ACTIONS(140), - [sym_keyword_for] = ACTIONS(140), - [sym_keyword_comment] = ACTIONS(140), - [sym_keyword_set] = ACTIONS(140), - [sym_keyword_unset] = ACTIONS(140), - [anon_sym_COMMA] = ACTIONS(140), - [anon_sym_DASH_GT] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(140), - [anon_sym_LT_DASH] = ACTIONS(142), - [anon_sym_LT_DASH_GT] = ACTIONS(140), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_DOT] = ACTIONS(140), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_GT] = ACTIONS(142), - [anon_sym_EQ] = ACTIONS(142), - [anon_sym_DASH] = ACTIONS(142), - [anon_sym_AT] = ACTIONS(142), - [anon_sym_LT_PIPE] = ACTIONS(140), - [anon_sym_AMP_AMP] = ACTIONS(140), - [anon_sym_PIPE_PIPE] = ACTIONS(140), - [anon_sym_QMARK_QMARK] = ACTIONS(140), - [anon_sym_QMARK_COLON] = ACTIONS(140), - [anon_sym_BANG_EQ] = ACTIONS(140), - [anon_sym_EQ_EQ] = ACTIONS(140), - [anon_sym_QMARK_EQ] = ACTIONS(140), - [anon_sym_STAR_EQ] = ACTIONS(140), - [anon_sym_TILDE] = ACTIONS(140), - [anon_sym_BANG_TILDE] = ACTIONS(140), - [anon_sym_STAR_TILDE] = ACTIONS(140), - [anon_sym_LT_EQ] = ACTIONS(140), - [anon_sym_GT_EQ] = ACTIONS(140), - [anon_sym_PLUS] = ACTIONS(142), - [anon_sym_PLUS_EQ] = ACTIONS(140), - [anon_sym_DASH_EQ] = ACTIONS(140), - [anon_sym_u00d7] = ACTIONS(140), - [anon_sym_SLASH] = ACTIONS(142), - [anon_sym_u00f7] = ACTIONS(140), - [anon_sym_STAR_STAR] = ACTIONS(140), - [anon_sym_u220b] = ACTIONS(140), - [anon_sym_u220c] = ACTIONS(140), - [anon_sym_u2287] = ACTIONS(140), - [anon_sym_u2283] = ACTIONS(140), - [anon_sym_u2285] = ACTIONS(140), - [anon_sym_u2208] = ACTIONS(140), - [anon_sym_u2209] = ACTIONS(140), - [anon_sym_u2286] = ACTIONS(140), - [anon_sym_u2282] = ACTIONS(140), - [anon_sym_u2284] = ACTIONS(140), - [anon_sym_AT_AT] = ACTIONS(140), + [sym_semi_colon] = ACTIONS(144), + [sym_keyword_return] = ACTIONS(144), + [sym_keyword_value] = ACTIONS(144), + [sym_keyword_explain] = ACTIONS(144), + [sym_keyword_parallel] = ACTIONS(144), + [sym_keyword_timeout] = ACTIONS(144), + [sym_keyword_fetch] = ACTIONS(144), + [sym_keyword_limit] = ACTIONS(144), + [sym_keyword_rand] = ACTIONS(144), + [sym_keyword_collate] = ACTIONS(144), + [sym_keyword_numeric] = ACTIONS(144), + [sym_keyword_asc] = ACTIONS(144), + [sym_keyword_desc] = ACTIONS(144), + [sym_keyword_where] = ACTIONS(144), + [sym_keyword_and] = ACTIONS(144), + [sym_keyword_or] = ACTIONS(144), + [sym_keyword_is] = ACTIONS(144), + [sym_keyword_not] = ACTIONS(146), + [sym_keyword_contains] = ACTIONS(144), + [sym_keyword_contains_not] = ACTIONS(144), + [sym_keyword_contains_all] = ACTIONS(144), + [sym_keyword_contains_any] = ACTIONS(144), + [sym_keyword_contains_none] = ACTIONS(144), + [sym_keyword_inside] = ACTIONS(144), + [sym_keyword_in] = ACTIONS(146), + [sym_keyword_not_inside] = ACTIONS(144), + [sym_keyword_all_inside] = ACTIONS(144), + [sym_keyword_any_inside] = ACTIONS(144), + [sym_keyword_none_inside] = ACTIONS(144), + [sym_keyword_outside] = ACTIONS(144), + [sym_keyword_intersects] = ACTIONS(144), + [sym_keyword_flexible] = ACTIONS(144), + [sym_keyword_readonly] = ACTIONS(144), + [sym_keyword_content] = ACTIONS(144), + [sym_keyword_merge] = ACTIONS(144), + [sym_keyword_patch] = ACTIONS(144), + [sym_keyword_type] = ACTIONS(144), + [sym_keyword_default] = ACTIONS(144), + [sym_keyword_assert] = ACTIONS(144), + [sym_keyword_permissions] = ACTIONS(144), + [sym_keyword_for] = ACTIONS(144), + [sym_keyword_comment] = ACTIONS(144), + [sym_keyword_set] = ACTIONS(144), + [sym_keyword_unset] = ACTIONS(144), + [anon_sym_COMMA] = ACTIONS(144), + [anon_sym_DASH_GT] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_LT_DASH] = ACTIONS(146), + [anon_sym_LT_DASH_GT] = ACTIONS(144), + [anon_sym_STAR] = ACTIONS(146), + [anon_sym_DOT] = ACTIONS(144), + [anon_sym_LT] = ACTIONS(146), + [anon_sym_GT] = ACTIONS(146), + [anon_sym_EQ] = ACTIONS(146), + [anon_sym_DASH] = ACTIONS(146), + [anon_sym_AT] = ACTIONS(146), + [anon_sym_LT_PIPE] = ACTIONS(144), + [anon_sym_AMP_AMP] = ACTIONS(144), + [anon_sym_PIPE_PIPE] = ACTIONS(144), + [anon_sym_QMARK_QMARK] = ACTIONS(144), + [anon_sym_QMARK_COLON] = ACTIONS(144), + [anon_sym_BANG_EQ] = ACTIONS(144), + [anon_sym_EQ_EQ] = ACTIONS(144), + [anon_sym_QMARK_EQ] = ACTIONS(144), + [anon_sym_STAR_EQ] = ACTIONS(144), + [anon_sym_TILDE] = ACTIONS(144), + [anon_sym_BANG_TILDE] = ACTIONS(144), + [anon_sym_STAR_TILDE] = ACTIONS(144), + [anon_sym_LT_EQ] = ACTIONS(144), + [anon_sym_GT_EQ] = ACTIONS(144), + [anon_sym_PLUS] = ACTIONS(146), + [anon_sym_PLUS_EQ] = ACTIONS(144), + [anon_sym_DASH_EQ] = ACTIONS(144), + [anon_sym_u00d7] = ACTIONS(144), + [anon_sym_SLASH] = ACTIONS(146), + [anon_sym_u00f7] = ACTIONS(144), + [anon_sym_STAR_STAR] = ACTIONS(144), + [anon_sym_u220b] = ACTIONS(144), + [anon_sym_u220c] = ACTIONS(144), + [anon_sym_u2287] = ACTIONS(144), + [anon_sym_u2283] = ACTIONS(144), + [anon_sym_u2285] = ACTIONS(144), + [anon_sym_u2208] = ACTIONS(144), + [anon_sym_u2209] = ACTIONS(144), + [anon_sym_u2286] = ACTIONS(144), + [anon_sym_u2282] = ACTIONS(144), + [anon_sym_u2284] = ACTIONS(144), + [anon_sym_AT_AT] = ACTIONS(144), }, [58] = { - [ts_builtin_sym_end] = ACTIONS(208), + [ts_builtin_sym_end] = ACTIONS(156), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(208), - [sym_keyword_return] = ACTIONS(208), - [sym_keyword_value] = ACTIONS(208), - [sym_keyword_explain] = ACTIONS(208), - [sym_keyword_parallel] = ACTIONS(208), - [sym_keyword_timeout] = ACTIONS(208), - [sym_keyword_fetch] = ACTIONS(208), - [sym_keyword_limit] = ACTIONS(208), - [sym_keyword_rand] = ACTIONS(208), - [sym_keyword_collate] = ACTIONS(208), - [sym_keyword_numeric] = ACTIONS(208), - [sym_keyword_asc] = ACTIONS(208), - [sym_keyword_desc] = ACTIONS(208), - [sym_keyword_where] = ACTIONS(208), - [sym_keyword_and] = ACTIONS(208), - [sym_keyword_or] = ACTIONS(208), - [sym_keyword_is] = ACTIONS(208), - [sym_keyword_not] = ACTIONS(210), - [sym_keyword_contains] = ACTIONS(208), - [sym_keyword_contains_not] = ACTIONS(208), - [sym_keyword_contains_all] = ACTIONS(208), - [sym_keyword_contains_any] = ACTIONS(208), - [sym_keyword_contains_none] = ACTIONS(208), - [sym_keyword_inside] = ACTIONS(208), - [sym_keyword_in] = ACTIONS(210), - [sym_keyword_not_inside] = ACTIONS(208), - [sym_keyword_all_inside] = ACTIONS(208), - [sym_keyword_any_inside] = ACTIONS(208), - [sym_keyword_none_inside] = ACTIONS(208), - [sym_keyword_outside] = ACTIONS(208), - [sym_keyword_intersects] = ACTIONS(208), - [sym_keyword_flexible] = ACTIONS(208), - [sym_keyword_readonly] = ACTIONS(208), - [sym_keyword_content] = ACTIONS(208), - [sym_keyword_merge] = ACTIONS(208), - [sym_keyword_patch] = ACTIONS(208), - [sym_keyword_type] = ACTIONS(208), - [sym_keyword_default] = ACTIONS(208), - [sym_keyword_assert] = ACTIONS(208), - [sym_keyword_permissions] = ACTIONS(208), - [sym_keyword_for] = ACTIONS(208), - [sym_keyword_comment] = ACTIONS(208), - [sym_keyword_set] = ACTIONS(208), - [sym_keyword_unset] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_DASH_GT] = ACTIONS(208), - [anon_sym_LBRACK] = ACTIONS(208), - [anon_sym_LT_DASH] = ACTIONS(210), - [anon_sym_LT_DASH_GT] = ACTIONS(208), - [anon_sym_STAR] = ACTIONS(210), - [anon_sym_DOT] = ACTIONS(208), - [anon_sym_LT] = ACTIONS(210), - [anon_sym_GT] = ACTIONS(210), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_DASH] = ACTIONS(210), - [anon_sym_AT] = ACTIONS(210), - [anon_sym_LT_PIPE] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(208), - [anon_sym_PIPE_PIPE] = ACTIONS(208), - [anon_sym_QMARK_QMARK] = ACTIONS(208), - [anon_sym_QMARK_COLON] = ACTIONS(208), - [anon_sym_BANG_EQ] = ACTIONS(208), - [anon_sym_EQ_EQ] = ACTIONS(208), - [anon_sym_QMARK_EQ] = ACTIONS(208), - [anon_sym_STAR_EQ] = ACTIONS(208), - [anon_sym_TILDE] = ACTIONS(208), - [anon_sym_BANG_TILDE] = ACTIONS(208), - [anon_sym_STAR_TILDE] = ACTIONS(208), - [anon_sym_LT_EQ] = ACTIONS(208), - [anon_sym_GT_EQ] = ACTIONS(208), - [anon_sym_PLUS] = ACTIONS(210), - [anon_sym_PLUS_EQ] = ACTIONS(208), - [anon_sym_DASH_EQ] = ACTIONS(208), - [anon_sym_u00d7] = ACTIONS(208), - [anon_sym_SLASH] = ACTIONS(210), - [anon_sym_u00f7] = ACTIONS(208), - [anon_sym_STAR_STAR] = ACTIONS(208), - [anon_sym_u220b] = ACTIONS(208), - [anon_sym_u220c] = ACTIONS(208), - [anon_sym_u2287] = ACTIONS(208), - [anon_sym_u2283] = ACTIONS(208), - [anon_sym_u2285] = ACTIONS(208), - [anon_sym_u2208] = ACTIONS(208), - [anon_sym_u2209] = ACTIONS(208), - [anon_sym_u2286] = ACTIONS(208), - [anon_sym_u2282] = ACTIONS(208), - [anon_sym_u2284] = ACTIONS(208), - [anon_sym_AT_AT] = ACTIONS(208), + [sym_semi_colon] = ACTIONS(156), + [sym_keyword_return] = ACTIONS(156), + [sym_keyword_value] = ACTIONS(156), + [sym_keyword_explain] = ACTIONS(156), + [sym_keyword_parallel] = ACTIONS(156), + [sym_keyword_timeout] = ACTIONS(156), + [sym_keyword_fetch] = ACTIONS(156), + [sym_keyword_limit] = ACTIONS(156), + [sym_keyword_rand] = ACTIONS(156), + [sym_keyword_collate] = ACTIONS(156), + [sym_keyword_numeric] = ACTIONS(156), + [sym_keyword_asc] = ACTIONS(156), + [sym_keyword_desc] = ACTIONS(156), + [sym_keyword_where] = ACTIONS(156), + [sym_keyword_and] = ACTIONS(156), + [sym_keyword_or] = ACTIONS(156), + [sym_keyword_is] = ACTIONS(156), + [sym_keyword_not] = ACTIONS(158), + [sym_keyword_contains] = ACTIONS(156), + [sym_keyword_contains_not] = ACTIONS(156), + [sym_keyword_contains_all] = ACTIONS(156), + [sym_keyword_contains_any] = ACTIONS(156), + [sym_keyword_contains_none] = ACTIONS(156), + [sym_keyword_inside] = ACTIONS(156), + [sym_keyword_in] = ACTIONS(158), + [sym_keyword_not_inside] = ACTIONS(156), + [sym_keyword_all_inside] = ACTIONS(156), + [sym_keyword_any_inside] = ACTIONS(156), + [sym_keyword_none_inside] = ACTIONS(156), + [sym_keyword_outside] = ACTIONS(156), + [sym_keyword_intersects] = ACTIONS(156), + [sym_keyword_flexible] = ACTIONS(156), + [sym_keyword_readonly] = ACTIONS(156), + [sym_keyword_content] = ACTIONS(156), + [sym_keyword_merge] = ACTIONS(156), + [sym_keyword_patch] = ACTIONS(156), + [sym_keyword_type] = ACTIONS(156), + [sym_keyword_default] = ACTIONS(156), + [sym_keyword_assert] = ACTIONS(156), + [sym_keyword_permissions] = ACTIONS(156), + [sym_keyword_for] = ACTIONS(156), + [sym_keyword_comment] = ACTIONS(156), + [sym_keyword_set] = ACTIONS(156), + [sym_keyword_unset] = ACTIONS(156), + [anon_sym_COMMA] = ACTIONS(156), + [anon_sym_DASH_GT] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(156), + [anon_sym_LT_DASH] = ACTIONS(158), + [anon_sym_LT_DASH_GT] = ACTIONS(156), + [anon_sym_STAR] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(156), + [anon_sym_LT] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(158), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_DASH] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(158), + [anon_sym_LT_PIPE] = ACTIONS(156), + [anon_sym_AMP_AMP] = ACTIONS(156), + [anon_sym_PIPE_PIPE] = ACTIONS(156), + [anon_sym_QMARK_QMARK] = ACTIONS(156), + [anon_sym_QMARK_COLON] = ACTIONS(156), + [anon_sym_BANG_EQ] = ACTIONS(156), + [anon_sym_EQ_EQ] = ACTIONS(156), + [anon_sym_QMARK_EQ] = ACTIONS(156), + [anon_sym_STAR_EQ] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_BANG_TILDE] = ACTIONS(156), + [anon_sym_STAR_TILDE] = ACTIONS(156), + [anon_sym_LT_EQ] = ACTIONS(156), + [anon_sym_GT_EQ] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(156), + [anon_sym_DASH_EQ] = ACTIONS(156), + [anon_sym_u00d7] = ACTIONS(156), + [anon_sym_SLASH] = ACTIONS(158), + [anon_sym_u00f7] = ACTIONS(156), + [anon_sym_STAR_STAR] = ACTIONS(156), + [anon_sym_u220b] = ACTIONS(156), + [anon_sym_u220c] = ACTIONS(156), + [anon_sym_u2287] = ACTIONS(156), + [anon_sym_u2283] = ACTIONS(156), + [anon_sym_u2285] = ACTIONS(156), + [anon_sym_u2208] = ACTIONS(156), + [anon_sym_u2209] = ACTIONS(156), + [anon_sym_u2286] = ACTIONS(156), + [anon_sym_u2282] = ACTIONS(156), + [anon_sym_u2284] = ACTIONS(156), + [anon_sym_AT_AT] = ACTIONS(156), }, [59] = { - [ts_builtin_sym_end] = ACTIONS(172), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(172), - [sym_keyword_return] = ACTIONS(172), - [sym_keyword_value] = ACTIONS(172), - [sym_keyword_explain] = ACTIONS(172), - [sym_keyword_parallel] = ACTIONS(172), - [sym_keyword_timeout] = ACTIONS(172), - [sym_keyword_fetch] = ACTIONS(172), - [sym_keyword_limit] = ACTIONS(172), - [sym_keyword_rand] = ACTIONS(172), - [sym_keyword_collate] = ACTIONS(172), - [sym_keyword_numeric] = ACTIONS(172), - [sym_keyword_asc] = ACTIONS(172), - [sym_keyword_desc] = ACTIONS(172), - [sym_keyword_where] = ACTIONS(172), - [sym_keyword_and] = ACTIONS(172), - [sym_keyword_or] = ACTIONS(172), - [sym_keyword_is] = ACTIONS(172), - [sym_keyword_not] = ACTIONS(174), - [sym_keyword_contains] = ACTIONS(172), - [sym_keyword_contains_not] = ACTIONS(172), - [sym_keyword_contains_all] = ACTIONS(172), - [sym_keyword_contains_any] = ACTIONS(172), - [sym_keyword_contains_none] = ACTIONS(172), - [sym_keyword_inside] = ACTIONS(172), - [sym_keyword_in] = ACTIONS(174), - [sym_keyword_not_inside] = ACTIONS(172), - [sym_keyword_all_inside] = ACTIONS(172), - [sym_keyword_any_inside] = ACTIONS(172), - [sym_keyword_none_inside] = ACTIONS(172), - [sym_keyword_outside] = ACTIONS(172), - [sym_keyword_intersects] = ACTIONS(172), - [sym_keyword_flexible] = ACTIONS(172), - [sym_keyword_readonly] = ACTIONS(172), - [sym_keyword_content] = ACTIONS(172), - [sym_keyword_merge] = ACTIONS(172), - [sym_keyword_patch] = ACTIONS(172), - [sym_keyword_type] = ACTIONS(172), - [sym_keyword_default] = ACTIONS(172), - [sym_keyword_assert] = ACTIONS(172), - [sym_keyword_permissions] = ACTIONS(172), - [sym_keyword_for] = ACTIONS(172), - [sym_keyword_comment] = ACTIONS(172), - [sym_keyword_set] = ACTIONS(172), - [sym_keyword_unset] = ACTIONS(172), - [anon_sym_COMMA] = ACTIONS(172), - [anon_sym_DASH_GT] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(172), - [anon_sym_LT_DASH] = ACTIONS(174), - [anon_sym_LT_DASH_GT] = ACTIONS(172), - [anon_sym_STAR] = ACTIONS(174), - [anon_sym_DOT] = ACTIONS(172), - [anon_sym_LT] = ACTIONS(174), - [anon_sym_GT] = ACTIONS(174), - [anon_sym_EQ] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_AT] = ACTIONS(174), - [anon_sym_LT_PIPE] = ACTIONS(172), - [anon_sym_AMP_AMP] = ACTIONS(172), - [anon_sym_PIPE_PIPE] = ACTIONS(172), - [anon_sym_QMARK_QMARK] = ACTIONS(172), - [anon_sym_QMARK_COLON] = ACTIONS(172), - [anon_sym_BANG_EQ] = ACTIONS(172), - [anon_sym_EQ_EQ] = ACTIONS(172), - [anon_sym_QMARK_EQ] = ACTIONS(172), - [anon_sym_STAR_EQ] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_BANG_TILDE] = ACTIONS(172), - [anon_sym_STAR_TILDE] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(172), - [anon_sym_GT_EQ] = ACTIONS(172), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_PLUS_EQ] = ACTIONS(172), - [anon_sym_DASH_EQ] = ACTIONS(172), - [anon_sym_u00d7] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(174), - [anon_sym_u00f7] = ACTIONS(172), - [anon_sym_STAR_STAR] = ACTIONS(172), - [anon_sym_u220b] = ACTIONS(172), - [anon_sym_u220c] = ACTIONS(172), - [anon_sym_u2287] = ACTIONS(172), - [anon_sym_u2283] = ACTIONS(172), - [anon_sym_u2285] = ACTIONS(172), - [anon_sym_u2208] = ACTIONS(172), - [anon_sym_u2209] = ACTIONS(172), - [anon_sym_u2286] = ACTIONS(172), - [anon_sym_u2282] = ACTIONS(172), - [anon_sym_u2284] = ACTIONS(172), - [anon_sym_AT_AT] = ACTIONS(172), - }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(176), + [ts_builtin_sym_end] = ACTIONS(212), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(176), - [sym_keyword_return] = ACTIONS(176), - [sym_keyword_value] = ACTIONS(176), - [sym_keyword_explain] = ACTIONS(176), - [sym_keyword_parallel] = ACTIONS(176), - [sym_keyword_timeout] = ACTIONS(176), - [sym_keyword_fetch] = ACTIONS(176), - [sym_keyword_limit] = ACTIONS(176), - [sym_keyword_rand] = ACTIONS(176), - [sym_keyword_collate] = ACTIONS(176), - [sym_keyword_numeric] = ACTIONS(176), - [sym_keyword_asc] = ACTIONS(176), - [sym_keyword_desc] = ACTIONS(176), - [sym_keyword_where] = ACTIONS(176), - [sym_keyword_and] = ACTIONS(176), - [sym_keyword_or] = ACTIONS(176), - [sym_keyword_is] = ACTIONS(176), - [sym_keyword_not] = ACTIONS(178), - [sym_keyword_contains] = ACTIONS(176), - [sym_keyword_contains_not] = ACTIONS(176), - [sym_keyword_contains_all] = ACTIONS(176), - [sym_keyword_contains_any] = ACTIONS(176), - [sym_keyword_contains_none] = ACTIONS(176), - [sym_keyword_inside] = ACTIONS(176), - [sym_keyword_in] = ACTIONS(178), - [sym_keyword_not_inside] = ACTIONS(176), - [sym_keyword_all_inside] = ACTIONS(176), - [sym_keyword_any_inside] = ACTIONS(176), - [sym_keyword_none_inside] = ACTIONS(176), - [sym_keyword_outside] = ACTIONS(176), - [sym_keyword_intersects] = ACTIONS(176), - [sym_keyword_flexible] = ACTIONS(176), - [sym_keyword_readonly] = ACTIONS(176), - [sym_keyword_content] = ACTIONS(176), - [sym_keyword_merge] = ACTIONS(176), - [sym_keyword_patch] = ACTIONS(176), - [sym_keyword_type] = ACTIONS(176), - [sym_keyword_default] = ACTIONS(176), - [sym_keyword_assert] = ACTIONS(176), - [sym_keyword_permissions] = ACTIONS(176), - [sym_keyword_for] = ACTIONS(176), - [sym_keyword_comment] = ACTIONS(176), - [sym_keyword_set] = ACTIONS(176), - [sym_keyword_unset] = ACTIONS(176), - [anon_sym_COMMA] = ACTIONS(176), - [anon_sym_DASH_GT] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(176), - [anon_sym_LT_DASH] = ACTIONS(178), - [anon_sym_LT_DASH_GT] = ACTIONS(176), - [anon_sym_STAR] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(176), - [anon_sym_LT] = ACTIONS(178), - [anon_sym_GT] = ACTIONS(178), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(178), - [anon_sym_AT] = ACTIONS(178), - [anon_sym_LT_PIPE] = ACTIONS(176), - [anon_sym_AMP_AMP] = ACTIONS(176), - [anon_sym_PIPE_PIPE] = ACTIONS(176), - [anon_sym_QMARK_QMARK] = ACTIONS(176), - [anon_sym_QMARK_COLON] = ACTIONS(176), - [anon_sym_BANG_EQ] = ACTIONS(176), - [anon_sym_EQ_EQ] = ACTIONS(176), - [anon_sym_QMARK_EQ] = ACTIONS(176), - [anon_sym_STAR_EQ] = ACTIONS(176), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_BANG_TILDE] = ACTIONS(176), - [anon_sym_STAR_TILDE] = ACTIONS(176), - [anon_sym_LT_EQ] = ACTIONS(176), - [anon_sym_GT_EQ] = ACTIONS(176), - [anon_sym_PLUS] = ACTIONS(178), - [anon_sym_PLUS_EQ] = ACTIONS(176), - [anon_sym_DASH_EQ] = ACTIONS(176), - [anon_sym_u00d7] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(178), - [anon_sym_u00f7] = ACTIONS(176), - [anon_sym_STAR_STAR] = ACTIONS(176), - [anon_sym_u220b] = ACTIONS(176), - [anon_sym_u220c] = ACTIONS(176), - [anon_sym_u2287] = ACTIONS(176), - [anon_sym_u2283] = ACTIONS(176), - [anon_sym_u2285] = ACTIONS(176), - [anon_sym_u2208] = ACTIONS(176), - [anon_sym_u2209] = ACTIONS(176), - [anon_sym_u2286] = ACTIONS(176), - [anon_sym_u2282] = ACTIONS(176), - [anon_sym_u2284] = ACTIONS(176), - [anon_sym_AT_AT] = ACTIONS(176), + [sym_semi_colon] = ACTIONS(212), + [sym_keyword_return] = ACTIONS(212), + [sym_keyword_value] = ACTIONS(212), + [sym_keyword_explain] = ACTIONS(212), + [sym_keyword_parallel] = ACTIONS(212), + [sym_keyword_timeout] = ACTIONS(212), + [sym_keyword_fetch] = ACTIONS(212), + [sym_keyword_limit] = ACTIONS(212), + [sym_keyword_rand] = ACTIONS(212), + [sym_keyword_collate] = ACTIONS(212), + [sym_keyword_numeric] = ACTIONS(212), + [sym_keyword_asc] = ACTIONS(212), + [sym_keyword_desc] = ACTIONS(212), + [sym_keyword_where] = ACTIONS(212), + [sym_keyword_and] = ACTIONS(212), + [sym_keyword_or] = ACTIONS(212), + [sym_keyword_is] = ACTIONS(212), + [sym_keyword_not] = ACTIONS(214), + [sym_keyword_contains] = ACTIONS(212), + [sym_keyword_contains_not] = ACTIONS(212), + [sym_keyword_contains_all] = ACTIONS(212), + [sym_keyword_contains_any] = ACTIONS(212), + [sym_keyword_contains_none] = ACTIONS(212), + [sym_keyword_inside] = ACTIONS(212), + [sym_keyword_in] = ACTIONS(214), + [sym_keyword_not_inside] = ACTIONS(212), + [sym_keyword_all_inside] = ACTIONS(212), + [sym_keyword_any_inside] = ACTIONS(212), + [sym_keyword_none_inside] = ACTIONS(212), + [sym_keyword_outside] = ACTIONS(212), + [sym_keyword_intersects] = ACTIONS(212), + [sym_keyword_flexible] = ACTIONS(212), + [sym_keyword_readonly] = ACTIONS(212), + [sym_keyword_content] = ACTIONS(212), + [sym_keyword_merge] = ACTIONS(212), + [sym_keyword_patch] = ACTIONS(212), + [sym_keyword_type] = ACTIONS(212), + [sym_keyword_default] = ACTIONS(212), + [sym_keyword_assert] = ACTIONS(212), + [sym_keyword_permissions] = ACTIONS(212), + [sym_keyword_for] = ACTIONS(212), + [sym_keyword_comment] = ACTIONS(212), + [sym_keyword_set] = ACTIONS(212), + [sym_keyword_unset] = ACTIONS(212), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_DASH_GT] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(214), + [anon_sym_LT_DASH_GT] = ACTIONS(212), + [anon_sym_STAR] = ACTIONS(214), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_EQ] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_AT] = ACTIONS(214), + [anon_sym_LT_PIPE] = ACTIONS(212), + [anon_sym_AMP_AMP] = ACTIONS(212), + [anon_sym_PIPE_PIPE] = ACTIONS(212), + [anon_sym_QMARK_QMARK] = ACTIONS(212), + [anon_sym_QMARK_COLON] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(212), + [anon_sym_QMARK_EQ] = ACTIONS(212), + [anon_sym_STAR_EQ] = ACTIONS(212), + [anon_sym_TILDE] = ACTIONS(212), + [anon_sym_BANG_TILDE] = ACTIONS(212), + [anon_sym_STAR_TILDE] = ACTIONS(212), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_PLUS_EQ] = ACTIONS(212), + [anon_sym_DASH_EQ] = ACTIONS(212), + [anon_sym_u00d7] = ACTIONS(212), + [anon_sym_SLASH] = ACTIONS(214), + [anon_sym_u00f7] = ACTIONS(212), + [anon_sym_STAR_STAR] = ACTIONS(212), + [anon_sym_u220b] = ACTIONS(212), + [anon_sym_u220c] = ACTIONS(212), + [anon_sym_u2287] = ACTIONS(212), + [anon_sym_u2283] = ACTIONS(212), + [anon_sym_u2285] = ACTIONS(212), + [anon_sym_u2208] = ACTIONS(212), + [anon_sym_u2209] = ACTIONS(212), + [anon_sym_u2286] = ACTIONS(212), + [anon_sym_u2282] = ACTIONS(212), + [anon_sym_u2284] = ACTIONS(212), + [anon_sym_AT_AT] = ACTIONS(212), + }, + [60] = { + [ts_builtin_sym_end] = ACTIONS(204), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(204), + [sym_keyword_return] = ACTIONS(204), + [sym_keyword_value] = ACTIONS(204), + [sym_keyword_explain] = ACTIONS(204), + [sym_keyword_parallel] = ACTIONS(204), + [sym_keyword_timeout] = ACTIONS(204), + [sym_keyword_fetch] = ACTIONS(204), + [sym_keyword_limit] = ACTIONS(204), + [sym_keyword_rand] = ACTIONS(204), + [sym_keyword_collate] = ACTIONS(204), + [sym_keyword_numeric] = ACTIONS(204), + [sym_keyword_asc] = ACTIONS(204), + [sym_keyword_desc] = ACTIONS(204), + [sym_keyword_where] = ACTIONS(204), + [sym_keyword_and] = ACTIONS(204), + [sym_keyword_or] = ACTIONS(204), + [sym_keyword_is] = ACTIONS(204), + [sym_keyword_not] = ACTIONS(206), + [sym_keyword_contains] = ACTIONS(204), + [sym_keyword_contains_not] = ACTIONS(204), + [sym_keyword_contains_all] = ACTIONS(204), + [sym_keyword_contains_any] = ACTIONS(204), + [sym_keyword_contains_none] = ACTIONS(204), + [sym_keyword_inside] = ACTIONS(204), + [sym_keyword_in] = ACTIONS(206), + [sym_keyword_not_inside] = ACTIONS(204), + [sym_keyword_all_inside] = ACTIONS(204), + [sym_keyword_any_inside] = ACTIONS(204), + [sym_keyword_none_inside] = ACTIONS(204), + [sym_keyword_outside] = ACTIONS(204), + [sym_keyword_intersects] = ACTIONS(204), + [sym_keyword_flexible] = ACTIONS(204), + [sym_keyword_readonly] = ACTIONS(204), + [sym_keyword_content] = ACTIONS(204), + [sym_keyword_merge] = ACTIONS(204), + [sym_keyword_patch] = ACTIONS(204), + [sym_keyword_type] = ACTIONS(204), + [sym_keyword_default] = ACTIONS(204), + [sym_keyword_assert] = ACTIONS(204), + [sym_keyword_permissions] = ACTIONS(204), + [sym_keyword_for] = ACTIONS(204), + [sym_keyword_comment] = ACTIONS(204), + [sym_keyword_set] = ACTIONS(204), + [sym_keyword_unset] = ACTIONS(204), + [anon_sym_COMMA] = ACTIONS(204), + [anon_sym_DASH_GT] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(204), + [anon_sym_LT_DASH] = ACTIONS(206), + [anon_sym_LT_DASH_GT] = ACTIONS(204), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(204), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_DASH] = ACTIONS(206), + [anon_sym_AT] = ACTIONS(206), + [anon_sym_LT_PIPE] = ACTIONS(204), + [anon_sym_AMP_AMP] = ACTIONS(204), + [anon_sym_PIPE_PIPE] = ACTIONS(204), + [anon_sym_QMARK_QMARK] = ACTIONS(204), + [anon_sym_QMARK_COLON] = ACTIONS(204), + [anon_sym_BANG_EQ] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(204), + [anon_sym_QMARK_EQ] = ACTIONS(204), + [anon_sym_STAR_EQ] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(204), + [anon_sym_BANG_TILDE] = ACTIONS(204), + [anon_sym_STAR_TILDE] = ACTIONS(204), + [anon_sym_LT_EQ] = ACTIONS(204), + [anon_sym_GT_EQ] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(206), + [anon_sym_PLUS_EQ] = ACTIONS(204), + [anon_sym_DASH_EQ] = ACTIONS(204), + [anon_sym_u00d7] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(206), + [anon_sym_u00f7] = ACTIONS(204), + [anon_sym_STAR_STAR] = ACTIONS(204), + [anon_sym_u220b] = ACTIONS(204), + [anon_sym_u220c] = ACTIONS(204), + [anon_sym_u2287] = ACTIONS(204), + [anon_sym_u2283] = ACTIONS(204), + [anon_sym_u2285] = ACTIONS(204), + [anon_sym_u2208] = ACTIONS(204), + [anon_sym_u2209] = ACTIONS(204), + [anon_sym_u2286] = ACTIONS(204), + [anon_sym_u2282] = ACTIONS(204), + [anon_sym_u2284] = ACTIONS(204), + [anon_sym_AT_AT] = ACTIONS(204), }, [61] = { [ts_builtin_sym_end] = ACTIONS(184), @@ -22206,379 +22226,652 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(184), }, [62] = { - [ts_builtin_sym_end] = ACTIONS(180), + [ts_builtin_sym_end] = ACTIONS(148), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_return] = ACTIONS(180), - [sym_keyword_value] = ACTIONS(180), - [sym_keyword_explain] = ACTIONS(180), - [sym_keyword_parallel] = ACTIONS(180), - [sym_keyword_timeout] = ACTIONS(180), - [sym_keyword_fetch] = ACTIONS(180), - [sym_keyword_limit] = ACTIONS(180), - [sym_keyword_rand] = ACTIONS(180), - [sym_keyword_collate] = ACTIONS(180), - [sym_keyword_numeric] = ACTIONS(180), - [sym_keyword_asc] = ACTIONS(180), - [sym_keyword_desc] = ACTIONS(180), - [sym_keyword_where] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(180), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [sym_keyword_flexible] = ACTIONS(180), - [sym_keyword_readonly] = ACTIONS(180), - [sym_keyword_content] = ACTIONS(180), - [sym_keyword_merge] = ACTIONS(180), - [sym_keyword_patch] = ACTIONS(180), - [sym_keyword_type] = ACTIONS(180), - [sym_keyword_default] = ACTIONS(180), - [sym_keyword_assert] = ACTIONS(180), - [sym_keyword_permissions] = ACTIONS(180), - [sym_keyword_for] = ACTIONS(180), - [sym_keyword_comment] = ACTIONS(180), - [sym_keyword_set] = ACTIONS(180), - [sym_keyword_unset] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_DASH_GT] = ACTIONS(180), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_LT_DASH] = ACTIONS(182), - [anon_sym_LT_DASH_GT] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), + [sym_semi_colon] = ACTIONS(148), + [sym_keyword_return] = ACTIONS(148), + [sym_keyword_value] = ACTIONS(148), + [sym_keyword_explain] = ACTIONS(148), + [sym_keyword_parallel] = ACTIONS(148), + [sym_keyword_timeout] = ACTIONS(148), + [sym_keyword_fetch] = ACTIONS(148), + [sym_keyword_limit] = ACTIONS(148), + [sym_keyword_rand] = ACTIONS(148), + [sym_keyword_collate] = ACTIONS(148), + [sym_keyword_numeric] = ACTIONS(148), + [sym_keyword_asc] = ACTIONS(148), + [sym_keyword_desc] = ACTIONS(148), + [sym_keyword_where] = ACTIONS(148), + [sym_keyword_and] = ACTIONS(148), + [sym_keyword_or] = ACTIONS(148), + [sym_keyword_is] = ACTIONS(148), + [sym_keyword_not] = ACTIONS(150), + [sym_keyword_contains] = ACTIONS(148), + [sym_keyword_contains_not] = ACTIONS(148), + [sym_keyword_contains_all] = ACTIONS(148), + [sym_keyword_contains_any] = ACTIONS(148), + [sym_keyword_contains_none] = ACTIONS(148), + [sym_keyword_inside] = ACTIONS(148), + [sym_keyword_in] = ACTIONS(150), + [sym_keyword_not_inside] = ACTIONS(148), + [sym_keyword_all_inside] = ACTIONS(148), + [sym_keyword_any_inside] = ACTIONS(148), + [sym_keyword_none_inside] = ACTIONS(148), + [sym_keyword_outside] = ACTIONS(148), + [sym_keyword_intersects] = ACTIONS(148), + [sym_keyword_flexible] = ACTIONS(148), + [sym_keyword_readonly] = ACTIONS(148), + [sym_keyword_content] = ACTIONS(148), + [sym_keyword_merge] = ACTIONS(148), + [sym_keyword_patch] = ACTIONS(148), + [sym_keyword_type] = ACTIONS(148), + [sym_keyword_default] = ACTIONS(148), + [sym_keyword_assert] = ACTIONS(148), + [sym_keyword_permissions] = ACTIONS(148), + [sym_keyword_for] = ACTIONS(148), + [sym_keyword_comment] = ACTIONS(148), + [sym_keyword_set] = ACTIONS(148), + [sym_keyword_unset] = ACTIONS(148), + [anon_sym_COMMA] = ACTIONS(148), + [anon_sym_DASH_GT] = ACTIONS(148), + [anon_sym_LBRACK] = ACTIONS(148), + [anon_sym_LT_DASH] = ACTIONS(150), + [anon_sym_LT_DASH_GT] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(150), + [anon_sym_EQ] = ACTIONS(150), + [anon_sym_DASH] = ACTIONS(150), + [anon_sym_AT] = ACTIONS(150), + [anon_sym_LT_PIPE] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [anon_sym_QMARK_QMARK] = ACTIONS(148), + [anon_sym_QMARK_COLON] = ACTIONS(148), + [anon_sym_BANG_EQ] = ACTIONS(148), + [anon_sym_EQ_EQ] = ACTIONS(148), + [anon_sym_QMARK_EQ] = ACTIONS(148), + [anon_sym_STAR_EQ] = ACTIONS(148), + [anon_sym_TILDE] = ACTIONS(148), + [anon_sym_BANG_TILDE] = ACTIONS(148), + [anon_sym_STAR_TILDE] = ACTIONS(148), + [anon_sym_LT_EQ] = ACTIONS(148), + [anon_sym_GT_EQ] = ACTIONS(148), + [anon_sym_PLUS] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(148), + [anon_sym_DASH_EQ] = ACTIONS(148), + [anon_sym_u00d7] = ACTIONS(148), + [anon_sym_SLASH] = ACTIONS(150), + [anon_sym_u00f7] = ACTIONS(148), + [anon_sym_STAR_STAR] = ACTIONS(148), + [anon_sym_u220b] = ACTIONS(148), + [anon_sym_u220c] = ACTIONS(148), + [anon_sym_u2287] = ACTIONS(148), + [anon_sym_u2283] = ACTIONS(148), + [anon_sym_u2285] = ACTIONS(148), + [anon_sym_u2208] = ACTIONS(148), + [anon_sym_u2209] = ACTIONS(148), + [anon_sym_u2286] = ACTIONS(148), + [anon_sym_u2282] = ACTIONS(148), + [anon_sym_u2284] = ACTIONS(148), + [anon_sym_AT_AT] = ACTIONS(148), + }, + [63] = { + [ts_builtin_sym_end] = ACTIONS(192), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(192), + [sym_keyword_return] = ACTIONS(192), + [sym_keyword_value] = ACTIONS(192), + [sym_keyword_explain] = ACTIONS(192), + [sym_keyword_parallel] = ACTIONS(192), + [sym_keyword_timeout] = ACTIONS(192), + [sym_keyword_fetch] = ACTIONS(192), + [sym_keyword_limit] = ACTIONS(192), + [sym_keyword_rand] = ACTIONS(192), + [sym_keyword_collate] = ACTIONS(192), + [sym_keyword_numeric] = ACTIONS(192), + [sym_keyword_asc] = ACTIONS(192), + [sym_keyword_desc] = ACTIONS(192), + [sym_keyword_where] = ACTIONS(192), + [sym_keyword_and] = ACTIONS(192), + [sym_keyword_or] = ACTIONS(192), + [sym_keyword_is] = ACTIONS(192), + [sym_keyword_not] = ACTIONS(194), + [sym_keyword_contains] = ACTIONS(192), + [sym_keyword_contains_not] = ACTIONS(192), + [sym_keyword_contains_all] = ACTIONS(192), + [sym_keyword_contains_any] = ACTIONS(192), + [sym_keyword_contains_none] = ACTIONS(192), + [sym_keyword_inside] = ACTIONS(192), + [sym_keyword_in] = ACTIONS(194), + [sym_keyword_not_inside] = ACTIONS(192), + [sym_keyword_all_inside] = ACTIONS(192), + [sym_keyword_any_inside] = ACTIONS(192), + [sym_keyword_none_inside] = ACTIONS(192), + [sym_keyword_outside] = ACTIONS(192), + [sym_keyword_intersects] = ACTIONS(192), + [sym_keyword_flexible] = ACTIONS(192), + [sym_keyword_readonly] = ACTIONS(192), + [sym_keyword_content] = ACTIONS(192), + [sym_keyword_merge] = ACTIONS(192), + [sym_keyword_patch] = ACTIONS(192), + [sym_keyword_type] = ACTIONS(192), + [sym_keyword_default] = ACTIONS(192), + [sym_keyword_assert] = ACTIONS(192), + [sym_keyword_permissions] = ACTIONS(192), + [sym_keyword_for] = ACTIONS(192), + [sym_keyword_comment] = ACTIONS(192), + [sym_keyword_set] = ACTIONS(192), + [sym_keyword_unset] = ACTIONS(192), + [anon_sym_COMMA] = ACTIONS(192), + [anon_sym_DASH_GT] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(192), + [anon_sym_LT_DASH] = ACTIONS(194), + [anon_sym_LT_DASH_GT] = ACTIONS(192), + [anon_sym_STAR] = ACTIONS(194), + [anon_sym_DOT] = ACTIONS(192), + [anon_sym_LT] = ACTIONS(194), + [anon_sym_GT] = ACTIONS(194), + [anon_sym_EQ] = ACTIONS(194), + [anon_sym_DASH] = ACTIONS(194), + [anon_sym_AT] = ACTIONS(194), + [anon_sym_LT_PIPE] = ACTIONS(192), + [anon_sym_AMP_AMP] = ACTIONS(192), + [anon_sym_PIPE_PIPE] = ACTIONS(192), + [anon_sym_QMARK_QMARK] = ACTIONS(192), + [anon_sym_QMARK_COLON] = ACTIONS(192), + [anon_sym_BANG_EQ] = ACTIONS(192), + [anon_sym_EQ_EQ] = ACTIONS(192), + [anon_sym_QMARK_EQ] = ACTIONS(192), + [anon_sym_STAR_EQ] = ACTIONS(192), + [anon_sym_TILDE] = ACTIONS(192), + [anon_sym_BANG_TILDE] = ACTIONS(192), + [anon_sym_STAR_TILDE] = ACTIONS(192), + [anon_sym_LT_EQ] = ACTIONS(192), + [anon_sym_GT_EQ] = ACTIONS(192), + [anon_sym_PLUS] = ACTIONS(194), + [anon_sym_PLUS_EQ] = ACTIONS(192), + [anon_sym_DASH_EQ] = ACTIONS(192), + [anon_sym_u00d7] = ACTIONS(192), + [anon_sym_SLASH] = ACTIONS(194), + [anon_sym_u00f7] = ACTIONS(192), + [anon_sym_STAR_STAR] = ACTIONS(192), + [anon_sym_u220b] = ACTIONS(192), + [anon_sym_u220c] = ACTIONS(192), + [anon_sym_u2287] = ACTIONS(192), + [anon_sym_u2283] = ACTIONS(192), + [anon_sym_u2285] = ACTIONS(192), + [anon_sym_u2208] = ACTIONS(192), + [anon_sym_u2209] = ACTIONS(192), + [anon_sym_u2286] = ACTIONS(192), + [anon_sym_u2282] = ACTIONS(192), + [anon_sym_u2284] = ACTIONS(192), + [anon_sym_AT_AT] = ACTIONS(192), + }, + [64] = { + [ts_builtin_sym_end] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(176), + [sym_keyword_return] = ACTIONS(176), + [sym_keyword_value] = ACTIONS(176), + [sym_keyword_explain] = ACTIONS(176), + [sym_keyword_parallel] = ACTIONS(176), + [sym_keyword_timeout] = ACTIONS(176), + [sym_keyword_fetch] = ACTIONS(176), + [sym_keyword_limit] = ACTIONS(176), + [sym_keyword_rand] = ACTIONS(176), + [sym_keyword_collate] = ACTIONS(176), + [sym_keyword_numeric] = ACTIONS(176), + [sym_keyword_asc] = ACTIONS(176), + [sym_keyword_desc] = ACTIONS(176), + [sym_keyword_where] = ACTIONS(176), + [sym_keyword_and] = ACTIONS(176), + [sym_keyword_or] = ACTIONS(176), + [sym_keyword_is] = ACTIONS(176), + [sym_keyword_not] = ACTIONS(178), + [sym_keyword_contains] = ACTIONS(176), + [sym_keyword_contains_not] = ACTIONS(176), + [sym_keyword_contains_all] = ACTIONS(176), + [sym_keyword_contains_any] = ACTIONS(176), + [sym_keyword_contains_none] = ACTIONS(176), + [sym_keyword_inside] = ACTIONS(176), + [sym_keyword_in] = ACTIONS(178), + [sym_keyword_not_inside] = ACTIONS(176), + [sym_keyword_all_inside] = ACTIONS(176), + [sym_keyword_any_inside] = ACTIONS(176), + [sym_keyword_none_inside] = ACTIONS(176), + [sym_keyword_outside] = ACTIONS(176), + [sym_keyword_intersects] = ACTIONS(176), + [sym_keyword_flexible] = ACTIONS(176), + [sym_keyword_readonly] = ACTIONS(176), + [sym_keyword_content] = ACTIONS(176), + [sym_keyword_merge] = ACTIONS(176), + [sym_keyword_patch] = ACTIONS(176), + [sym_keyword_type] = ACTIONS(176), + [sym_keyword_default] = ACTIONS(176), + [sym_keyword_assert] = ACTIONS(176), + [sym_keyword_permissions] = ACTIONS(176), + [sym_keyword_for] = ACTIONS(176), + [sym_keyword_comment] = ACTIONS(176), + [sym_keyword_set] = ACTIONS(176), + [sym_keyword_unset] = ACTIONS(176), + [anon_sym_COMMA] = ACTIONS(176), + [anon_sym_DASH_GT] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(176), + [anon_sym_LT_DASH] = ACTIONS(178), + [anon_sym_LT_DASH_GT] = ACTIONS(176), + [anon_sym_STAR] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(176), + [anon_sym_LT] = ACTIONS(178), + [anon_sym_GT] = ACTIONS(178), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_AT] = ACTIONS(178), + [anon_sym_LT_PIPE] = ACTIONS(176), + [anon_sym_AMP_AMP] = ACTIONS(176), + [anon_sym_PIPE_PIPE] = ACTIONS(176), + [anon_sym_QMARK_QMARK] = ACTIONS(176), + [anon_sym_QMARK_COLON] = ACTIONS(176), + [anon_sym_BANG_EQ] = ACTIONS(176), + [anon_sym_EQ_EQ] = ACTIONS(176), + [anon_sym_QMARK_EQ] = ACTIONS(176), + [anon_sym_STAR_EQ] = ACTIONS(176), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_BANG_TILDE] = ACTIONS(176), + [anon_sym_STAR_TILDE] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(176), + [anon_sym_GT_EQ] = ACTIONS(176), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_PLUS_EQ] = ACTIONS(176), + [anon_sym_DASH_EQ] = ACTIONS(176), + [anon_sym_u00d7] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(178), + [anon_sym_u00f7] = ACTIONS(176), + [anon_sym_STAR_STAR] = ACTIONS(176), + [anon_sym_u220b] = ACTIONS(176), + [anon_sym_u220c] = ACTIONS(176), + [anon_sym_u2287] = ACTIONS(176), + [anon_sym_u2283] = ACTIONS(176), + [anon_sym_u2285] = ACTIONS(176), + [anon_sym_u2208] = ACTIONS(176), + [anon_sym_u2209] = ACTIONS(176), + [anon_sym_u2286] = ACTIONS(176), + [anon_sym_u2282] = ACTIONS(176), + [anon_sym_u2284] = ACTIONS(176), + [anon_sym_AT_AT] = ACTIONS(176), + }, + [65] = { + [ts_builtin_sym_end] = ACTIONS(188), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(188), + [sym_keyword_return] = ACTIONS(188), + [sym_keyword_value] = ACTIONS(188), + [sym_keyword_explain] = ACTIONS(188), + [sym_keyword_parallel] = ACTIONS(188), + [sym_keyword_timeout] = ACTIONS(188), + [sym_keyword_fetch] = ACTIONS(188), + [sym_keyword_limit] = ACTIONS(188), + [sym_keyword_rand] = ACTIONS(188), + [sym_keyword_collate] = ACTIONS(188), + [sym_keyword_numeric] = ACTIONS(188), + [sym_keyword_asc] = ACTIONS(188), + [sym_keyword_desc] = ACTIONS(188), + [sym_keyword_where] = ACTIONS(188), + [sym_keyword_and] = ACTIONS(188), + [sym_keyword_or] = ACTIONS(188), + [sym_keyword_is] = ACTIONS(188), + [sym_keyword_not] = ACTIONS(190), + [sym_keyword_contains] = ACTIONS(188), + [sym_keyword_contains_not] = ACTIONS(188), + [sym_keyword_contains_all] = ACTIONS(188), + [sym_keyword_contains_any] = ACTIONS(188), + [sym_keyword_contains_none] = ACTIONS(188), + [sym_keyword_inside] = ACTIONS(188), + [sym_keyword_in] = ACTIONS(190), + [sym_keyword_not_inside] = ACTIONS(188), + [sym_keyword_all_inside] = ACTIONS(188), + [sym_keyword_any_inside] = ACTIONS(188), + [sym_keyword_none_inside] = ACTIONS(188), + [sym_keyword_outside] = ACTIONS(188), + [sym_keyword_intersects] = ACTIONS(188), + [sym_keyword_flexible] = ACTIONS(188), + [sym_keyword_readonly] = ACTIONS(188), + [sym_keyword_content] = ACTIONS(188), + [sym_keyword_merge] = ACTIONS(188), + [sym_keyword_patch] = ACTIONS(188), + [sym_keyword_type] = ACTIONS(188), + [sym_keyword_default] = ACTIONS(188), + [sym_keyword_assert] = ACTIONS(188), + [sym_keyword_permissions] = ACTIONS(188), + [sym_keyword_for] = ACTIONS(188), + [sym_keyword_comment] = ACTIONS(188), + [sym_keyword_set] = ACTIONS(188), + [sym_keyword_unset] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_DASH_GT] = ACTIONS(188), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_LT_DASH] = ACTIONS(190), + [anon_sym_LT_DASH_GT] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_DOT] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_LT_PIPE] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_QMARK_QMARK] = ACTIONS(188), + [anon_sym_QMARK_COLON] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_QMARK_EQ] = ACTIONS(188), + [anon_sym_STAR_EQ] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_BANG_TILDE] = ACTIONS(188), + [anon_sym_STAR_TILDE] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_u00d7] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_u00f7] = ACTIONS(188), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_u220b] = ACTIONS(188), + [anon_sym_u220c] = ACTIONS(188), + [anon_sym_u2287] = ACTIONS(188), + [anon_sym_u2283] = ACTIONS(188), + [anon_sym_u2285] = ACTIONS(188), + [anon_sym_u2208] = ACTIONS(188), + [anon_sym_u2209] = ACTIONS(188), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(156), + [66] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(156), - [sym_keyword_return] = ACTIONS(156), - [sym_keyword_value] = ACTIONS(156), - [sym_keyword_explain] = ACTIONS(156), - [sym_keyword_parallel] = ACTIONS(156), - [sym_keyword_timeout] = ACTIONS(156), - [sym_keyword_fetch] = ACTIONS(156), - [sym_keyword_limit] = ACTIONS(156), - [sym_keyword_rand] = ACTIONS(156), - [sym_keyword_collate] = ACTIONS(156), - [sym_keyword_numeric] = ACTIONS(156), - [sym_keyword_asc] = ACTIONS(156), - [sym_keyword_desc] = ACTIONS(156), - [sym_keyword_where] = ACTIONS(156), - [sym_keyword_and] = ACTIONS(156), - [sym_keyword_or] = ACTIONS(156), - [sym_keyword_is] = ACTIONS(156), - [sym_keyword_not] = ACTIONS(158), - [sym_keyword_contains] = ACTIONS(156), - [sym_keyword_contains_not] = ACTIONS(156), - [sym_keyword_contains_all] = ACTIONS(156), - [sym_keyword_contains_any] = ACTIONS(156), - [sym_keyword_contains_none] = ACTIONS(156), - [sym_keyword_inside] = ACTIONS(156), - [sym_keyword_in] = ACTIONS(158), - [sym_keyword_not_inside] = ACTIONS(156), - [sym_keyword_all_inside] = ACTIONS(156), - [sym_keyword_any_inside] = ACTIONS(156), - [sym_keyword_none_inside] = ACTIONS(156), - [sym_keyword_outside] = ACTIONS(156), - [sym_keyword_intersects] = ACTIONS(156), - [sym_keyword_flexible] = ACTIONS(156), - [sym_keyword_readonly] = ACTIONS(156), - [sym_keyword_content] = ACTIONS(156), - [sym_keyword_merge] = ACTIONS(156), - [sym_keyword_patch] = ACTIONS(156), - [sym_keyword_type] = ACTIONS(156), - [sym_keyword_default] = ACTIONS(156), - [sym_keyword_assert] = ACTIONS(156), - [sym_keyword_permissions] = ACTIONS(156), - [sym_keyword_for] = ACTIONS(156), - [sym_keyword_comment] = ACTIONS(156), - [sym_keyword_set] = ACTIONS(156), - [sym_keyword_unset] = ACTIONS(156), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_DASH_GT] = ACTIONS(156), - [anon_sym_LBRACK] = ACTIONS(156), - [anon_sym_LT_DASH] = ACTIONS(158), - [anon_sym_LT_DASH_GT] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(156), - [anon_sym_LT] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(158), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(158), - [anon_sym_LT_PIPE] = ACTIONS(156), - [anon_sym_AMP_AMP] = ACTIONS(156), - [anon_sym_PIPE_PIPE] = ACTIONS(156), - [anon_sym_QMARK_QMARK] = ACTIONS(156), - [anon_sym_QMARK_COLON] = ACTIONS(156), - [anon_sym_BANG_EQ] = ACTIONS(156), - [anon_sym_EQ_EQ] = ACTIONS(156), - [anon_sym_QMARK_EQ] = ACTIONS(156), - [anon_sym_STAR_EQ] = ACTIONS(156), - [anon_sym_TILDE] = ACTIONS(156), - [anon_sym_BANG_TILDE] = ACTIONS(156), - [anon_sym_STAR_TILDE] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(156), - [anon_sym_DASH_EQ] = ACTIONS(156), - [anon_sym_u00d7] = ACTIONS(156), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_u00f7] = ACTIONS(156), - [anon_sym_STAR_STAR] = ACTIONS(156), - [anon_sym_u220b] = ACTIONS(156), - [anon_sym_u220c] = ACTIONS(156), - [anon_sym_u2287] = ACTIONS(156), - [anon_sym_u2283] = ACTIONS(156), - [anon_sym_u2285] = ACTIONS(156), - [anon_sym_u2208] = ACTIONS(156), - [anon_sym_u2209] = ACTIONS(156), - [anon_sym_u2286] = ACTIONS(156), - [anon_sym_u2282] = ACTIONS(156), - [anon_sym_u2284] = ACTIONS(156), - [anon_sym_AT_AT] = ACTIONS(156), + [sym_semi_colon] = ACTIONS(221), + [sym_keyword_if] = ACTIONS(221), + [sym_keyword_return] = ACTIONS(221), + [sym_keyword_from] = ACTIONS(221), + [sym_keyword_as] = ACTIONS(221), + [sym_keyword_omit] = ACTIONS(221), + [sym_keyword_parallel] = ACTIONS(221), + [sym_keyword_timeout] = ACTIONS(221), + [sym_keyword_where] = ACTIONS(221), + [sym_keyword_group] = ACTIONS(221), + [sym_keyword_and] = ACTIONS(221), + [sym_keyword_or] = ACTIONS(221), + [sym_keyword_is] = ACTIONS(221), + [sym_keyword_not] = ACTIONS(223), + [sym_keyword_contains] = ACTIONS(221), + [sym_keyword_contains_not] = ACTIONS(221), + [sym_keyword_contains_all] = ACTIONS(221), + [sym_keyword_contains_any] = ACTIONS(221), + [sym_keyword_contains_none] = ACTIONS(221), + [sym_keyword_inside] = ACTIONS(221), + [sym_keyword_in] = ACTIONS(223), + [sym_keyword_not_inside] = ACTIONS(221), + [sym_keyword_all_inside] = ACTIONS(221), + [sym_keyword_any_inside] = ACTIONS(221), + [sym_keyword_none_inside] = ACTIONS(221), + [sym_keyword_outside] = ACTIONS(221), + [sym_keyword_intersects] = ACTIONS(221), + [sym_keyword_drop] = ACTIONS(221), + [sym_keyword_schemafull] = ACTIONS(221), + [sym_keyword_schemaless] = ACTIONS(221), + [sym_keyword_changefeed] = ACTIONS(221), + [sym_keyword_content] = ACTIONS(221), + [sym_keyword_merge] = ACTIONS(221), + [sym_keyword_patch] = ACTIONS(221), + [sym_keyword_then] = ACTIONS(221), + [sym_keyword_type] = ACTIONS(221), + [sym_keyword_permissions] = ACTIONS(221), + [sym_keyword_for] = ACTIONS(221), + [sym_keyword_comment] = ACTIONS(221), + [sym_keyword_set] = ACTIONS(221), + [sym_keyword_unset] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_RBRACK] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(223), + [anon_sym_GT] = ACTIONS(223), + [sym_variable_name] = ACTIONS(221), + [sym_custom_function_name] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_LT_PIPE] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_QMARK_QMARK] = ACTIONS(221), + [anon_sym_QMARK_COLON] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_QMARK_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(221), + [anon_sym_BANG_TILDE] = ACTIONS(221), + [anon_sym_STAR_TILDE] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_u00d7] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(223), + [anon_sym_u00f7] = ACTIONS(221), + [anon_sym_STAR_STAR] = ACTIONS(221), + [anon_sym_u220b] = ACTIONS(221), + [anon_sym_u220c] = ACTIONS(221), + [anon_sym_u2287] = ACTIONS(221), + [anon_sym_u2283] = ACTIONS(221), + [anon_sym_u2285] = ACTIONS(221), + [anon_sym_u2208] = ACTIONS(221), + [anon_sym_u2209] = ACTIONS(221), + [anon_sym_u2286] = ACTIONS(221), + [anon_sym_u2282] = ACTIONS(221), + [anon_sym_u2284] = ACTIONS(221), + [anon_sym_AT_AT] = ACTIONS(221), }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(148), + [67] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(148), - [sym_keyword_return] = ACTIONS(148), - [sym_keyword_value] = ACTIONS(148), - [sym_keyword_explain] = ACTIONS(148), - [sym_keyword_parallel] = ACTIONS(148), - [sym_keyword_timeout] = ACTIONS(148), - [sym_keyword_fetch] = ACTIONS(148), - [sym_keyword_limit] = ACTIONS(148), - [sym_keyword_rand] = ACTIONS(148), - [sym_keyword_collate] = ACTIONS(148), - [sym_keyword_numeric] = ACTIONS(148), - [sym_keyword_asc] = ACTIONS(148), - [sym_keyword_desc] = ACTIONS(148), - [sym_keyword_where] = ACTIONS(148), - [sym_keyword_and] = ACTIONS(148), - [sym_keyword_or] = ACTIONS(148), - [sym_keyword_is] = ACTIONS(148), - [sym_keyword_not] = ACTIONS(150), - [sym_keyword_contains] = ACTIONS(148), - [sym_keyword_contains_not] = ACTIONS(148), - [sym_keyword_contains_all] = ACTIONS(148), - [sym_keyword_contains_any] = ACTIONS(148), - [sym_keyword_contains_none] = ACTIONS(148), - [sym_keyword_inside] = ACTIONS(148), - [sym_keyword_in] = ACTIONS(150), - [sym_keyword_not_inside] = ACTIONS(148), - [sym_keyword_all_inside] = ACTIONS(148), - [sym_keyword_any_inside] = ACTIONS(148), - [sym_keyword_none_inside] = ACTIONS(148), - [sym_keyword_outside] = ACTIONS(148), - [sym_keyword_intersects] = ACTIONS(148), - [sym_keyword_flexible] = ACTIONS(148), - [sym_keyword_readonly] = ACTIONS(148), - [sym_keyword_content] = ACTIONS(148), - [sym_keyword_merge] = ACTIONS(148), - [sym_keyword_patch] = ACTIONS(148), - [sym_keyword_type] = ACTIONS(148), - [sym_keyword_default] = ACTIONS(148), - [sym_keyword_assert] = ACTIONS(148), - [sym_keyword_permissions] = ACTIONS(148), - [sym_keyword_for] = ACTIONS(148), - [sym_keyword_comment] = ACTIONS(148), - [sym_keyword_set] = ACTIONS(148), - [sym_keyword_unset] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_DASH_GT] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LT_DASH] = ACTIONS(150), - [anon_sym_LT_DASH_GT] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_EQ] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(150), - [anon_sym_LT_PIPE] = ACTIONS(148), - [anon_sym_AMP_AMP] = ACTIONS(148), - [anon_sym_PIPE_PIPE] = ACTIONS(148), - [anon_sym_QMARK_QMARK] = ACTIONS(148), - [anon_sym_QMARK_COLON] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_QMARK_EQ] = ACTIONS(148), - [anon_sym_STAR_EQ] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_STAR_TILDE] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(148), - [anon_sym_DASH_EQ] = ACTIONS(148), - [anon_sym_u00d7] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(150), - [anon_sym_u00f7] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_u220b] = ACTIONS(148), - [anon_sym_u220c] = ACTIONS(148), - [anon_sym_u2287] = ACTIONS(148), - [anon_sym_u2283] = ACTIONS(148), - [anon_sym_u2285] = ACTIONS(148), - [anon_sym_u2208] = ACTIONS(148), - [anon_sym_u2209] = ACTIONS(148), - [anon_sym_u2286] = ACTIONS(148), - [anon_sym_u2282] = ACTIONS(148), - [anon_sym_u2284] = ACTIONS(148), - [anon_sym_AT_AT] = ACTIONS(148), + [sym_semi_colon] = ACTIONS(225), + [sym_keyword_if] = ACTIONS(225), + [sym_keyword_return] = ACTIONS(225), + [sym_keyword_from] = ACTIONS(225), + [sym_keyword_as] = ACTIONS(225), + [sym_keyword_omit] = ACTIONS(225), + [sym_keyword_parallel] = ACTIONS(225), + [sym_keyword_timeout] = ACTIONS(225), + [sym_keyword_where] = ACTIONS(225), + [sym_keyword_group] = ACTIONS(225), + [sym_keyword_and] = ACTIONS(225), + [sym_keyword_or] = ACTIONS(225), + [sym_keyword_is] = ACTIONS(225), + [sym_keyword_not] = ACTIONS(227), + [sym_keyword_contains] = ACTIONS(225), + [sym_keyword_contains_not] = ACTIONS(225), + [sym_keyword_contains_all] = ACTIONS(225), + [sym_keyword_contains_any] = ACTIONS(225), + [sym_keyword_contains_none] = ACTIONS(225), + [sym_keyword_inside] = ACTIONS(225), + [sym_keyword_in] = ACTIONS(227), + [sym_keyword_not_inside] = ACTIONS(225), + [sym_keyword_all_inside] = ACTIONS(225), + [sym_keyword_any_inside] = ACTIONS(225), + [sym_keyword_none_inside] = ACTIONS(225), + [sym_keyword_outside] = ACTIONS(225), + [sym_keyword_intersects] = ACTIONS(225), + [sym_keyword_drop] = ACTIONS(225), + [sym_keyword_schemafull] = ACTIONS(225), + [sym_keyword_schemaless] = ACTIONS(225), + [sym_keyword_changefeed] = ACTIONS(225), + [sym_keyword_content] = ACTIONS(225), + [sym_keyword_merge] = ACTIONS(225), + [sym_keyword_patch] = ACTIONS(225), + [sym_keyword_then] = ACTIONS(225), + [sym_keyword_type] = ACTIONS(225), + [sym_keyword_permissions] = ACTIONS(225), + [sym_keyword_for] = ACTIONS(225), + [sym_keyword_comment] = ACTIONS(225), + [sym_keyword_set] = ACTIONS(225), + [sym_keyword_unset] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_RBRACK] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_QMARK] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [sym_variable_name] = ACTIONS(225), + [sym_custom_function_name] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_AT] = ACTIONS(227), + [anon_sym_LT_PIPE] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_QMARK_QMARK] = ACTIONS(225), + [anon_sym_QMARK_COLON] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [anon_sym_QMARK_EQ] = ACTIONS(225), + [anon_sym_STAR_EQ] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_BANG_TILDE] = ACTIONS(225), + [anon_sym_STAR_TILDE] = ACTIONS(225), + [anon_sym_LT_EQ] = ACTIONS(225), + [anon_sym_GT_EQ] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_PLUS_EQ] = ACTIONS(225), + [anon_sym_DASH_EQ] = ACTIONS(225), + [anon_sym_u00d7] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_u00f7] = ACTIONS(225), + [anon_sym_STAR_STAR] = ACTIONS(225), + [anon_sym_u220b] = ACTIONS(225), + [anon_sym_u220c] = ACTIONS(225), + [anon_sym_u2287] = ACTIONS(225), + [anon_sym_u2283] = ACTIONS(225), + [anon_sym_u2285] = ACTIONS(225), + [anon_sym_u2208] = ACTIONS(225), + [anon_sym_u2209] = ACTIONS(225), + [anon_sym_u2286] = ACTIONS(225), + [anon_sym_u2282] = ACTIONS(225), + [anon_sym_u2284] = ACTIONS(225), + [anon_sym_AT_AT] = ACTIONS(225), }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(196), + [68] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(196), - [sym_keyword_return] = ACTIONS(196), - [sym_keyword_value] = ACTIONS(196), - [sym_keyword_explain] = ACTIONS(196), - [sym_keyword_parallel] = ACTIONS(196), - [sym_keyword_timeout] = ACTIONS(196), - [sym_keyword_fetch] = ACTIONS(196), - [sym_keyword_limit] = ACTIONS(196), - [sym_keyword_rand] = ACTIONS(196), - [sym_keyword_collate] = ACTIONS(196), - [sym_keyword_numeric] = ACTIONS(196), - [sym_keyword_asc] = ACTIONS(196), - [sym_keyword_desc] = ACTIONS(196), - [sym_keyword_where] = ACTIONS(196), - [sym_keyword_and] = ACTIONS(196), - [sym_keyword_or] = ACTIONS(196), - [sym_keyword_is] = ACTIONS(196), - [sym_keyword_not] = ACTIONS(198), - [sym_keyword_contains] = ACTIONS(196), - [sym_keyword_contains_not] = ACTIONS(196), - [sym_keyword_contains_all] = ACTIONS(196), - [sym_keyword_contains_any] = ACTIONS(196), - [sym_keyword_contains_none] = ACTIONS(196), - [sym_keyword_inside] = ACTIONS(196), - [sym_keyword_in] = ACTIONS(198), - [sym_keyword_not_inside] = ACTIONS(196), - [sym_keyword_all_inside] = ACTIONS(196), - [sym_keyword_any_inside] = ACTIONS(196), - [sym_keyword_none_inside] = ACTIONS(196), - [sym_keyword_outside] = ACTIONS(196), - [sym_keyword_intersects] = ACTIONS(196), - [sym_keyword_flexible] = ACTIONS(196), - [sym_keyword_readonly] = ACTIONS(196), - [sym_keyword_content] = ACTIONS(196), - [sym_keyword_merge] = ACTIONS(196), - [sym_keyword_patch] = ACTIONS(196), - [sym_keyword_type] = ACTIONS(196), - [sym_keyword_default] = ACTIONS(196), - [sym_keyword_assert] = ACTIONS(196), - [sym_keyword_permissions] = ACTIONS(196), - [sym_keyword_for] = ACTIONS(196), - [sym_keyword_comment] = ACTIONS(196), - [sym_keyword_set] = ACTIONS(196), - [sym_keyword_unset] = ACTIONS(196), - [anon_sym_COMMA] = ACTIONS(196), - [anon_sym_DASH_GT] = ACTIONS(196), - [anon_sym_LBRACK] = ACTIONS(196), - [anon_sym_LT_DASH] = ACTIONS(198), - [anon_sym_LT_DASH_GT] = ACTIONS(196), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_DOT] = ACTIONS(196), - [anon_sym_LT] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(198), - [anon_sym_AT] = ACTIONS(198), - [anon_sym_LT_PIPE] = ACTIONS(196), - [anon_sym_AMP_AMP] = ACTIONS(196), - [anon_sym_PIPE_PIPE] = ACTIONS(196), - [anon_sym_QMARK_QMARK] = ACTIONS(196), - [anon_sym_QMARK_COLON] = ACTIONS(196), - [anon_sym_BANG_EQ] = ACTIONS(196), - [anon_sym_EQ_EQ] = ACTIONS(196), - [anon_sym_QMARK_EQ] = ACTIONS(196), - [anon_sym_STAR_EQ] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_BANG_TILDE] = ACTIONS(196), - [anon_sym_STAR_TILDE] = ACTIONS(196), - [anon_sym_LT_EQ] = ACTIONS(196), - [anon_sym_GT_EQ] = ACTIONS(196), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_PLUS_EQ] = ACTIONS(196), - [anon_sym_DASH_EQ] = ACTIONS(196), - [anon_sym_u00d7] = ACTIONS(196), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_u00f7] = ACTIONS(196), - [anon_sym_STAR_STAR] = ACTIONS(196), - [anon_sym_u220b] = ACTIONS(196), - [anon_sym_u220c] = ACTIONS(196), - [anon_sym_u2287] = ACTIONS(196), - [anon_sym_u2283] = ACTIONS(196), - [anon_sym_u2285] = ACTIONS(196), - [anon_sym_u2208] = ACTIONS(196), - [anon_sym_u2209] = ACTIONS(196), - [anon_sym_u2286] = ACTIONS(196), - [anon_sym_u2282] = ACTIONS(196), - [anon_sym_u2284] = ACTIONS(196), - [anon_sym_AT_AT] = ACTIONS(196), + [sym_semi_colon] = ACTIONS(229), + [sym_keyword_if] = ACTIONS(229), + [sym_keyword_return] = ACTIONS(229), + [sym_keyword_from] = ACTIONS(229), + [sym_keyword_as] = ACTIONS(229), + [sym_keyword_omit] = ACTIONS(229), + [sym_keyword_parallel] = ACTIONS(229), + [sym_keyword_timeout] = ACTIONS(229), + [sym_keyword_where] = ACTIONS(229), + [sym_keyword_group] = ACTIONS(229), + [sym_keyword_and] = ACTIONS(229), + [sym_keyword_or] = ACTIONS(229), + [sym_keyword_is] = ACTIONS(229), + [sym_keyword_not] = ACTIONS(231), + [sym_keyword_contains] = ACTIONS(229), + [sym_keyword_contains_not] = ACTIONS(229), + [sym_keyword_contains_all] = ACTIONS(229), + [sym_keyword_contains_any] = ACTIONS(229), + [sym_keyword_contains_none] = ACTIONS(229), + [sym_keyword_inside] = ACTIONS(229), + [sym_keyword_in] = ACTIONS(231), + [sym_keyword_not_inside] = ACTIONS(229), + [sym_keyword_all_inside] = ACTIONS(229), + [sym_keyword_any_inside] = ACTIONS(229), + [sym_keyword_none_inside] = ACTIONS(229), + [sym_keyword_outside] = ACTIONS(229), + [sym_keyword_intersects] = ACTIONS(229), + [sym_keyword_drop] = ACTIONS(229), + [sym_keyword_schemafull] = ACTIONS(229), + [sym_keyword_schemaless] = ACTIONS(229), + [sym_keyword_changefeed] = ACTIONS(229), + [sym_keyword_content] = ACTIONS(229), + [sym_keyword_merge] = ACTIONS(229), + [sym_keyword_patch] = ACTIONS(229), + [sym_keyword_then] = ACTIONS(229), + [sym_keyword_type] = ACTIONS(229), + [sym_keyword_permissions] = ACTIONS(229), + [sym_keyword_for] = ACTIONS(229), + [sym_keyword_comment] = ACTIONS(229), + [sym_keyword_set] = ACTIONS(229), + [sym_keyword_unset] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_RBRACK] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(229), + [anon_sym_QMARK] = ACTIONS(231), + [anon_sym_LBRACE] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [sym_variable_name] = ACTIONS(229), + [sym_custom_function_name] = ACTIONS(229), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_PIPE] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_QMARK_QMARK] = ACTIONS(229), + [anon_sym_QMARK_COLON] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(229), + [anon_sym_EQ_EQ] = ACTIONS(229), + [anon_sym_QMARK_EQ] = ACTIONS(229), + [anon_sym_STAR_EQ] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(229), + [anon_sym_BANG_TILDE] = ACTIONS(229), + [anon_sym_STAR_TILDE] = ACTIONS(229), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_GT_EQ] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_PLUS_EQ] = ACTIONS(229), + [anon_sym_DASH_EQ] = ACTIONS(229), + [anon_sym_u00d7] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_u00f7] = ACTIONS(229), + [anon_sym_STAR_STAR] = ACTIONS(229), + [anon_sym_u220b] = ACTIONS(229), + [anon_sym_u220c] = ACTIONS(229), + [anon_sym_u2287] = ACTIONS(229), + [anon_sym_u2283] = ACTIONS(229), + [anon_sym_u2285] = ACTIONS(229), + [anon_sym_u2208] = ACTIONS(229), + [anon_sym_u2209] = ACTIONS(229), + [anon_sym_u2286] = ACTIONS(229), + [anon_sym_u2282] = ACTIONS(229), + [anon_sym_u2284] = ACTIONS(229), + [anon_sym_AT_AT] = ACTIONS(229), }, - [66] = { - [sym_filter] = STATE(122), - [sym_path_element] = STATE(66), - [sym_graph_path] = STATE(122), - [sym_subscript] = STATE(122), - [aux_sym_path_repeat1] = STATE(66), + [69] = { + [sym_filter] = STATE(113), + [sym_path_element] = STATE(77), + [sym_graph_path] = STATE(113), + [sym_subscript] = STATE(113), + [aux_sym_path_repeat1] = STATE(77), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(61), [sym_keyword_value] = ACTIONS(61), @@ -22618,14 +22911,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_for] = ACTIONS(61), [sym_keyword_comment] = ACTIONS(61), [anon_sym_COMMA] = ACTIONS(61), - [anon_sym_DASH_GT] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(224), + [anon_sym_DASH_GT] = ACTIONS(233), + [anon_sym_LBRACK] = ACTIONS(235), [anon_sym_RPAREN] = ACTIONS(61), [anon_sym_RBRACE] = ACTIONS(61), - [anon_sym_LT_DASH] = ACTIONS(227), - [anon_sym_LT_DASH_GT] = ACTIONS(221), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_DASH_GT] = ACTIONS(233), [anon_sym_STAR] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(230), + [anon_sym_DOT] = ACTIONS(239), [anon_sym_LT] = ACTIONS(63), [anon_sym_GT] = ACTIONS(63), [anon_sym_EQ] = ACTIONS(63), @@ -22664,285 +22957,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(61), [anon_sym_AT_AT] = ACTIONS(61), }, - [67] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(233), - [sym_keyword_if] = ACTIONS(233), - [sym_keyword_return] = ACTIONS(233), - [sym_keyword_from] = ACTIONS(233), - [sym_keyword_as] = ACTIONS(233), - [sym_keyword_omit] = ACTIONS(233), - [sym_keyword_parallel] = ACTIONS(233), - [sym_keyword_timeout] = ACTIONS(233), - [sym_keyword_where] = ACTIONS(233), - [sym_keyword_group] = ACTIONS(233), - [sym_keyword_and] = ACTIONS(233), - [sym_keyword_or] = ACTIONS(233), - [sym_keyword_is] = ACTIONS(233), - [sym_keyword_not] = ACTIONS(235), - [sym_keyword_contains] = ACTIONS(233), - [sym_keyword_contains_not] = ACTIONS(233), - [sym_keyword_contains_all] = ACTIONS(233), - [sym_keyword_contains_any] = ACTIONS(233), - [sym_keyword_contains_none] = ACTIONS(233), - [sym_keyword_inside] = ACTIONS(233), - [sym_keyword_in] = ACTIONS(235), - [sym_keyword_not_inside] = ACTIONS(233), - [sym_keyword_all_inside] = ACTIONS(233), - [sym_keyword_any_inside] = ACTIONS(233), - [sym_keyword_none_inside] = ACTIONS(233), - [sym_keyword_outside] = ACTIONS(233), - [sym_keyword_intersects] = ACTIONS(233), - [sym_keyword_drop] = ACTIONS(233), - [sym_keyword_schemafull] = ACTIONS(233), - [sym_keyword_schemaless] = ACTIONS(233), - [sym_keyword_changefeed] = ACTIONS(233), - [sym_keyword_content] = ACTIONS(233), - [sym_keyword_merge] = ACTIONS(233), - [sym_keyword_patch] = ACTIONS(233), - [sym_keyword_then] = ACTIONS(233), - [sym_keyword_type] = ACTIONS(233), - [sym_keyword_permissions] = ACTIONS(233), - [sym_keyword_for] = ACTIONS(233), - [sym_keyword_comment] = ACTIONS(233), - [sym_keyword_set] = ACTIONS(233), - [sym_keyword_unset] = ACTIONS(233), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_RBRACK] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(235), - [anon_sym_LBRACE] = ACTIONS(233), - [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_GT] = ACTIONS(235), - [sym_variable_name] = ACTIONS(233), - [sym_custom_function_name] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(235), - [anon_sym_LT_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_QMARK_QMARK] = ACTIONS(233), - [anon_sym_QMARK_COLON] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_QMARK_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_TILDE] = ACTIONS(233), - [anon_sym_BANG_TILDE] = ACTIONS(233), - [anon_sym_STAR_TILDE] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_u00d7] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(235), - [anon_sym_u00f7] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_u220b] = ACTIONS(233), - [anon_sym_u220c] = ACTIONS(233), - [anon_sym_u2287] = ACTIONS(233), - [anon_sym_u2283] = ACTIONS(233), - [anon_sym_u2285] = ACTIONS(233), - [anon_sym_u2208] = ACTIONS(233), - [anon_sym_u2209] = ACTIONS(233), - [anon_sym_u2286] = ACTIONS(233), - [anon_sym_u2282] = ACTIONS(233), - [anon_sym_u2284] = ACTIONS(233), - [anon_sym_AT_AT] = ACTIONS(233), - }, - [68] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(237), - [sym_keyword_if] = ACTIONS(237), - [sym_keyword_return] = ACTIONS(237), - [sym_keyword_from] = ACTIONS(237), - [sym_keyword_as] = ACTIONS(237), - [sym_keyword_omit] = ACTIONS(237), - [sym_keyword_parallel] = ACTIONS(237), - [sym_keyword_timeout] = ACTIONS(237), - [sym_keyword_where] = ACTIONS(237), - [sym_keyword_group] = ACTIONS(237), - [sym_keyword_and] = ACTIONS(237), - [sym_keyword_or] = ACTIONS(237), - [sym_keyword_is] = ACTIONS(237), - [sym_keyword_not] = ACTIONS(239), - [sym_keyword_contains] = ACTIONS(237), - [sym_keyword_contains_not] = ACTIONS(237), - [sym_keyword_contains_all] = ACTIONS(237), - [sym_keyword_contains_any] = ACTIONS(237), - [sym_keyword_contains_none] = ACTIONS(237), - [sym_keyword_inside] = ACTIONS(237), - [sym_keyword_in] = ACTIONS(239), - [sym_keyword_not_inside] = ACTIONS(237), - [sym_keyword_all_inside] = ACTIONS(237), - [sym_keyword_any_inside] = ACTIONS(237), - [sym_keyword_none_inside] = ACTIONS(237), - [sym_keyword_outside] = ACTIONS(237), - [sym_keyword_intersects] = ACTIONS(237), - [sym_keyword_drop] = ACTIONS(237), - [sym_keyword_schemafull] = ACTIONS(237), - [sym_keyword_schemaless] = ACTIONS(237), - [sym_keyword_changefeed] = ACTIONS(237), - [sym_keyword_content] = ACTIONS(237), - [sym_keyword_merge] = ACTIONS(237), - [sym_keyword_patch] = ACTIONS(237), - [sym_keyword_then] = ACTIONS(237), - [sym_keyword_type] = ACTIONS(237), - [sym_keyword_permissions] = ACTIONS(237), - [sym_keyword_for] = ACTIONS(237), - [sym_keyword_comment] = ACTIONS(237), - [sym_keyword_set] = ACTIONS(237), - [sym_keyword_unset] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACK] = ACTIONS(237), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(239), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(239), - [sym_variable_name] = ACTIONS(237), - [sym_custom_function_name] = ACTIONS(237), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_LT_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_QMARK_QMARK] = ACTIONS(237), - [anon_sym_QMARK_COLON] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_QMARK_EQ] = ACTIONS(237), - [anon_sym_STAR_EQ] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG_TILDE] = ACTIONS(237), - [anon_sym_STAR_TILDE] = ACTIONS(237), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(237), - [anon_sym_DASH_EQ] = ACTIONS(237), - [anon_sym_u00d7] = ACTIONS(237), - [anon_sym_SLASH] = ACTIONS(239), - [anon_sym_u00f7] = ACTIONS(237), - [anon_sym_STAR_STAR] = ACTIONS(237), - [anon_sym_u220b] = ACTIONS(237), - [anon_sym_u220c] = ACTIONS(237), - [anon_sym_u2287] = ACTIONS(237), - [anon_sym_u2283] = ACTIONS(237), - [anon_sym_u2285] = ACTIONS(237), - [anon_sym_u2208] = ACTIONS(237), - [anon_sym_u2209] = ACTIONS(237), - [anon_sym_u2286] = ACTIONS(237), - [anon_sym_u2282] = ACTIONS(237), - [anon_sym_u2284] = ACTIONS(237), - [anon_sym_AT_AT] = ACTIONS(237), - }, - [69] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(148), - [sym_keyword_if] = ACTIONS(148), - [sym_keyword_return] = ACTIONS(148), - [sym_keyword_from] = ACTIONS(148), - [sym_keyword_as] = ACTIONS(148), - [sym_keyword_omit] = ACTIONS(148), - [sym_keyword_parallel] = ACTIONS(148), - [sym_keyword_timeout] = ACTIONS(148), - [sym_keyword_where] = ACTIONS(148), - [sym_keyword_group] = ACTIONS(148), - [sym_keyword_and] = ACTIONS(148), - [sym_keyword_or] = ACTIONS(148), - [sym_keyword_is] = ACTIONS(148), - [sym_keyword_not] = ACTIONS(150), - [sym_keyword_contains] = ACTIONS(148), - [sym_keyword_contains_not] = ACTIONS(148), - [sym_keyword_contains_all] = ACTIONS(148), - [sym_keyword_contains_any] = ACTIONS(148), - [sym_keyword_contains_none] = ACTIONS(148), - [sym_keyword_inside] = ACTIONS(148), - [sym_keyword_in] = ACTIONS(150), - [sym_keyword_not_inside] = ACTIONS(148), - [sym_keyword_all_inside] = ACTIONS(148), - [sym_keyword_any_inside] = ACTIONS(148), - [sym_keyword_none_inside] = ACTIONS(148), - [sym_keyword_outside] = ACTIONS(148), - [sym_keyword_intersects] = ACTIONS(148), - [sym_keyword_drop] = ACTIONS(148), - [sym_keyword_schemafull] = ACTIONS(148), - [sym_keyword_schemaless] = ACTIONS(148), - [sym_keyword_changefeed] = ACTIONS(148), - [sym_keyword_content] = ACTIONS(148), - [sym_keyword_merge] = ACTIONS(148), - [sym_keyword_patch] = ACTIONS(148), - [sym_keyword_then] = ACTIONS(148), - [sym_keyword_type] = ACTIONS(148), - [sym_keyword_permissions] = ACTIONS(148), - [sym_keyword_for] = ACTIONS(148), - [sym_keyword_comment] = ACTIONS(148), - [sym_keyword_set] = ACTIONS(148), - [sym_keyword_unset] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_RBRACK] = ACTIONS(148), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_QMARK] = ACTIONS(150), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(150), - [sym_variable_name] = ACTIONS(148), - [sym_custom_function_name] = ACTIONS(148), - [anon_sym_EQ] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(150), - [anon_sym_LT_PIPE] = ACTIONS(148), - [anon_sym_AMP_AMP] = ACTIONS(148), - [anon_sym_PIPE_PIPE] = ACTIONS(148), - [anon_sym_QMARK_QMARK] = ACTIONS(148), - [anon_sym_QMARK_COLON] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_QMARK_EQ] = ACTIONS(148), - [anon_sym_STAR_EQ] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_STAR_TILDE] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(148), - [anon_sym_DASH_EQ] = ACTIONS(148), - [anon_sym_u00d7] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(150), - [anon_sym_u00f7] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_u220b] = ACTIONS(148), - [anon_sym_u220c] = ACTIONS(148), - [anon_sym_u2287] = ACTIONS(148), - [anon_sym_u2283] = ACTIONS(148), - [anon_sym_u2285] = ACTIONS(148), - [anon_sym_u2208] = ACTIONS(148), - [anon_sym_u2209] = ACTIONS(148), - [anon_sym_u2286] = ACTIONS(148), - [anon_sym_u2282] = ACTIONS(148), - [anon_sym_u2284] = ACTIONS(148), - [anon_sym_AT_AT] = ACTIONS(148), - }, [70] = { - [sym_filter] = STATE(122), - [sym_path_element] = STATE(66), - [sym_graph_path] = STATE(122), - [sym_subscript] = STATE(122), - [aux_sym_path_repeat1] = STATE(66), + [sym_filter] = STATE(113), + [sym_path_element] = STATE(77), + [sym_graph_path] = STATE(113), + [sym_subscript] = STATE(113), + [aux_sym_path_repeat1] = STATE(77), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(93), [sym_keyword_value] = ACTIONS(93), @@ -22982,14 +23002,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_for] = ACTIONS(93), [sym_keyword_comment] = ACTIONS(93), [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_DASH_GT] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DASH_GT] = ACTIONS(233), + [anon_sym_LBRACK] = ACTIONS(235), [anon_sym_RPAREN] = ACTIONS(93), [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_LT_DASH_GT] = ACTIONS(241), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_DASH_GT] = ACTIONS(233), [anon_sym_STAR] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(247), + [anon_sym_DOT] = ACTIONS(239), [anon_sym_LT] = ACTIONS(95), [anon_sym_GT] = ACTIONS(95), [anon_sym_EQ] = ACTIONS(95), @@ -23028,12 +23048,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(93), [anon_sym_AT_AT] = ACTIONS(93), }, - [71] = { - [sym_filter] = STATE(122), - [sym_path_element] = STATE(70), - [sym_graph_path] = STATE(122), - [sym_subscript] = STATE(122), - [aux_sym_path_repeat1] = STATE(70), + [71] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(188), + [sym_keyword_if] = ACTIONS(188), + [sym_keyword_return] = ACTIONS(188), + [sym_keyword_from] = ACTIONS(188), + [sym_keyword_as] = ACTIONS(188), + [sym_keyword_omit] = ACTIONS(188), + [sym_keyword_parallel] = ACTIONS(188), + [sym_keyword_timeout] = ACTIONS(188), + [sym_keyword_where] = ACTIONS(188), + [sym_keyword_group] = ACTIONS(188), + [sym_keyword_and] = ACTIONS(188), + [sym_keyword_or] = ACTIONS(188), + [sym_keyword_is] = ACTIONS(188), + [sym_keyword_not] = ACTIONS(190), + [sym_keyword_contains] = ACTIONS(188), + [sym_keyword_contains_not] = ACTIONS(188), + [sym_keyword_contains_all] = ACTIONS(188), + [sym_keyword_contains_any] = ACTIONS(188), + [sym_keyword_contains_none] = ACTIONS(188), + [sym_keyword_inside] = ACTIONS(188), + [sym_keyword_in] = ACTIONS(190), + [sym_keyword_not_inside] = ACTIONS(188), + [sym_keyword_all_inside] = ACTIONS(188), + [sym_keyword_any_inside] = ACTIONS(188), + [sym_keyword_none_inside] = ACTIONS(188), + [sym_keyword_outside] = ACTIONS(188), + [sym_keyword_intersects] = ACTIONS(188), + [sym_keyword_drop] = ACTIONS(188), + [sym_keyword_schemafull] = ACTIONS(188), + [sym_keyword_schemaless] = ACTIONS(188), + [sym_keyword_changefeed] = ACTIONS(188), + [sym_keyword_content] = ACTIONS(188), + [sym_keyword_merge] = ACTIONS(188), + [sym_keyword_patch] = ACTIONS(188), + [sym_keyword_then] = ACTIONS(188), + [sym_keyword_type] = ACTIONS(188), + [sym_keyword_permissions] = ACTIONS(188), + [sym_keyword_for] = ACTIONS(188), + [sym_keyword_comment] = ACTIONS(188), + [sym_keyword_set] = ACTIONS(188), + [sym_keyword_unset] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_RBRACK] = ACTIONS(188), + [anon_sym_LPAREN] = ACTIONS(188), + [anon_sym_RPAREN] = ACTIONS(188), + [anon_sym_QMARK] = ACTIONS(190), + [anon_sym_LBRACE] = ACTIONS(188), + [anon_sym_RBRACE] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT] = ACTIONS(190), + [sym_variable_name] = ACTIONS(188), + [sym_custom_function_name] = ACTIONS(188), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_LT_PIPE] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_QMARK_QMARK] = ACTIONS(188), + [anon_sym_QMARK_COLON] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_QMARK_EQ] = ACTIONS(188), + [anon_sym_STAR_EQ] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_BANG_TILDE] = ACTIONS(188), + [anon_sym_STAR_TILDE] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_u00d7] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_u00f7] = ACTIONS(188), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_u220b] = ACTIONS(188), + [anon_sym_u220c] = ACTIONS(188), + [anon_sym_u2287] = ACTIONS(188), + [anon_sym_u2283] = ACTIONS(188), + [anon_sym_u2285] = ACTIONS(188), + [anon_sym_u2208] = ACTIONS(188), + [anon_sym_u2209] = ACTIONS(188), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), + }, + [72] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(241), + [sym_keyword_if] = ACTIONS(241), + [sym_keyword_return] = ACTIONS(241), + [sym_keyword_from] = ACTIONS(241), + [sym_keyword_as] = ACTIONS(241), + [sym_keyword_omit] = ACTIONS(241), + [sym_keyword_parallel] = ACTIONS(241), + [sym_keyword_timeout] = ACTIONS(241), + [sym_keyword_where] = ACTIONS(241), + [sym_keyword_group] = ACTIONS(241), + [sym_keyword_and] = ACTIONS(241), + [sym_keyword_or] = ACTIONS(241), + [sym_keyword_is] = ACTIONS(241), + [sym_keyword_not] = ACTIONS(243), + [sym_keyword_contains] = ACTIONS(241), + [sym_keyword_contains_not] = ACTIONS(241), + [sym_keyword_contains_all] = ACTIONS(241), + [sym_keyword_contains_any] = ACTIONS(241), + [sym_keyword_contains_none] = ACTIONS(241), + [sym_keyword_inside] = ACTIONS(241), + [sym_keyword_in] = ACTIONS(243), + [sym_keyword_not_inside] = ACTIONS(241), + [sym_keyword_all_inside] = ACTIONS(241), + [sym_keyword_any_inside] = ACTIONS(241), + [sym_keyword_none_inside] = ACTIONS(241), + [sym_keyword_outside] = ACTIONS(241), + [sym_keyword_intersects] = ACTIONS(241), + [sym_keyword_drop] = ACTIONS(241), + [sym_keyword_schemafull] = ACTIONS(241), + [sym_keyword_schemaless] = ACTIONS(241), + [sym_keyword_changefeed] = ACTIONS(241), + [sym_keyword_content] = ACTIONS(241), + [sym_keyword_merge] = ACTIONS(241), + [sym_keyword_patch] = ACTIONS(241), + [sym_keyword_then] = ACTIONS(241), + [sym_keyword_type] = ACTIONS(241), + [sym_keyword_permissions] = ACTIONS(241), + [sym_keyword_for] = ACTIONS(241), + [sym_keyword_comment] = ACTIONS(241), + [sym_keyword_set] = ACTIONS(241), + [sym_keyword_unset] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_RBRACK] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [sym_variable_name] = ACTIONS(241), + [sym_custom_function_name] = ACTIONS(241), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(243), + [anon_sym_LT_PIPE] = ACTIONS(241), + [anon_sym_AMP_AMP] = ACTIONS(241), + [anon_sym_PIPE_PIPE] = ACTIONS(241), + [anon_sym_QMARK_QMARK] = ACTIONS(241), + [anon_sym_QMARK_COLON] = ACTIONS(241), + [anon_sym_BANG_EQ] = ACTIONS(241), + [anon_sym_EQ_EQ] = ACTIONS(241), + [anon_sym_QMARK_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_BANG_TILDE] = ACTIONS(241), + [anon_sym_STAR_TILDE] = ACTIONS(241), + [anon_sym_LT_EQ] = ACTIONS(241), + [anon_sym_GT_EQ] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_u00d7] = ACTIONS(241), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_u00f7] = ACTIONS(241), + [anon_sym_STAR_STAR] = ACTIONS(241), + [anon_sym_u220b] = ACTIONS(241), + [anon_sym_u220c] = ACTIONS(241), + [anon_sym_u2287] = ACTIONS(241), + [anon_sym_u2283] = ACTIONS(241), + [anon_sym_u2285] = ACTIONS(241), + [anon_sym_u2208] = ACTIONS(241), + [anon_sym_u2209] = ACTIONS(241), + [anon_sym_u2286] = ACTIONS(241), + [anon_sym_u2282] = ACTIONS(241), + [anon_sym_u2284] = ACTIONS(241), + [anon_sym_AT_AT] = ACTIONS(241), + }, + [73] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(61), + [sym_keyword_if] = ACTIONS(61), + [sym_keyword_return] = ACTIONS(61), + [sym_keyword_from] = ACTIONS(61), + [sym_keyword_as] = ACTIONS(61), + [sym_keyword_omit] = ACTIONS(61), + [sym_keyword_parallel] = ACTIONS(61), + [sym_keyword_timeout] = ACTIONS(61), + [sym_keyword_where] = ACTIONS(61), + [sym_keyword_group] = ACTIONS(61), + [sym_keyword_and] = ACTIONS(61), + [sym_keyword_or] = ACTIONS(61), + [sym_keyword_is] = ACTIONS(61), + [sym_keyword_not] = ACTIONS(63), + [sym_keyword_contains] = ACTIONS(61), + [sym_keyword_contains_not] = ACTIONS(61), + [sym_keyword_contains_all] = ACTIONS(61), + [sym_keyword_contains_any] = ACTIONS(61), + [sym_keyword_contains_none] = ACTIONS(61), + [sym_keyword_inside] = ACTIONS(61), + [sym_keyword_in] = ACTIONS(63), + [sym_keyword_not_inside] = ACTIONS(61), + [sym_keyword_all_inside] = ACTIONS(61), + [sym_keyword_any_inside] = ACTIONS(61), + [sym_keyword_none_inside] = ACTIONS(61), + [sym_keyword_outside] = ACTIONS(61), + [sym_keyword_intersects] = ACTIONS(61), + [sym_keyword_drop] = ACTIONS(61), + [sym_keyword_schemafull] = ACTIONS(61), + [sym_keyword_schemaless] = ACTIONS(61), + [sym_keyword_changefeed] = ACTIONS(61), + [sym_keyword_content] = ACTIONS(61), + [sym_keyword_merge] = ACTIONS(61), + [sym_keyword_patch] = ACTIONS(61), + [sym_keyword_then] = ACTIONS(61), + [sym_keyword_type] = ACTIONS(61), + [sym_keyword_permissions] = ACTIONS(61), + [sym_keyword_for] = ACTIONS(61), + [sym_keyword_comment] = ACTIONS(61), + [sym_keyword_set] = ACTIONS(61), + [sym_keyword_unset] = ACTIONS(61), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_RBRACK] = ACTIONS(61), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(61), + [anon_sym_QMARK] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(61), + [anon_sym_RBRACE] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_GT] = ACTIONS(63), + [sym_variable_name] = ACTIONS(61), + [sym_custom_function_name] = ACTIONS(61), + [anon_sym_EQ] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_LT_PIPE] = ACTIONS(61), + [anon_sym_AMP_AMP] = ACTIONS(61), + [anon_sym_PIPE_PIPE] = ACTIONS(61), + [anon_sym_QMARK_QMARK] = ACTIONS(61), + [anon_sym_QMARK_COLON] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(61), + [anon_sym_EQ_EQ] = ACTIONS(61), + [anon_sym_QMARK_EQ] = ACTIONS(61), + [anon_sym_STAR_EQ] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_BANG_TILDE] = ACTIONS(61), + [anon_sym_STAR_TILDE] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(61), + [anon_sym_GT_EQ] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_PLUS_EQ] = ACTIONS(61), + [anon_sym_DASH_EQ] = ACTIONS(61), + [anon_sym_u00d7] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_u00f7] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(61), + [anon_sym_u220b] = ACTIONS(61), + [anon_sym_u220c] = ACTIONS(61), + [anon_sym_u2287] = ACTIONS(61), + [anon_sym_u2283] = ACTIONS(61), + [anon_sym_u2285] = ACTIONS(61), + [anon_sym_u2208] = ACTIONS(61), + [anon_sym_u2209] = ACTIONS(61), + [anon_sym_u2286] = ACTIONS(61), + [anon_sym_u2282] = ACTIONS(61), + [anon_sym_u2284] = ACTIONS(61), + [anon_sym_AT_AT] = ACTIONS(61), + }, + [74] = { + [sym_filter] = STATE(113), + [sym_path_element] = STATE(74), + [sym_graph_path] = STATE(113), + [sym_subscript] = STATE(113), + [aux_sym_path_repeat1] = STATE(74), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(77), [sym_keyword_value] = ACTIONS(77), @@ -23073,14 +23366,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_for] = ACTIONS(77), [sym_keyword_comment] = ACTIONS(77), [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_DASH_GT] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), + [anon_sym_DASH_GT] = ACTIONS(245), + [anon_sym_LBRACK] = ACTIONS(248), [anon_sym_RPAREN] = ACTIONS(77), [anon_sym_RBRACE] = ACTIONS(77), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_LT_DASH_GT] = ACTIONS(241), + [anon_sym_LT_DASH] = ACTIONS(251), + [anon_sym_LT_DASH_GT] = ACTIONS(245), [anon_sym_STAR] = ACTIONS(79), - [anon_sym_DOT] = ACTIONS(247), + [anon_sym_DOT] = ACTIONS(254), [anon_sym_LT] = ACTIONS(79), [anon_sym_GT] = ACTIONS(79), [anon_sym_EQ] = ACTIONS(79), @@ -23119,371 +23412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(77), [anon_sym_AT_AT] = ACTIONS(77), }, - [72] = { - [sym_filter] = STATE(122), - [sym_path_element] = STATE(70), - [sym_graph_path] = STATE(122), - [sym_subscript] = STATE(122), - [aux_sym_path_repeat1] = STATE(70), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(89), - [sym_keyword_value] = ACTIONS(89), - [sym_keyword_explain] = ACTIONS(89), - [sym_keyword_parallel] = ACTIONS(89), - [sym_keyword_timeout] = ACTIONS(89), - [sym_keyword_fetch] = ACTIONS(89), - [sym_keyword_limit] = ACTIONS(89), - [sym_keyword_rand] = ACTIONS(89), - [sym_keyword_collate] = ACTIONS(89), - [sym_keyword_numeric] = ACTIONS(89), - [sym_keyword_asc] = ACTIONS(89), - [sym_keyword_desc] = ACTIONS(89), - [sym_keyword_and] = ACTIONS(89), - [sym_keyword_or] = ACTIONS(89), - [sym_keyword_is] = ACTIONS(89), - [sym_keyword_not] = ACTIONS(91), - [sym_keyword_contains] = ACTIONS(89), - [sym_keyword_contains_not] = ACTIONS(89), - [sym_keyword_contains_all] = ACTIONS(89), - [sym_keyword_contains_any] = ACTIONS(89), - [sym_keyword_contains_none] = ACTIONS(89), - [sym_keyword_inside] = ACTIONS(89), - [sym_keyword_in] = ACTIONS(91), - [sym_keyword_not_inside] = ACTIONS(89), - [sym_keyword_all_inside] = ACTIONS(89), - [sym_keyword_any_inside] = ACTIONS(89), - [sym_keyword_none_inside] = ACTIONS(89), - [sym_keyword_outside] = ACTIONS(89), - [sym_keyword_intersects] = ACTIONS(89), - [sym_keyword_flexible] = ACTIONS(89), - [sym_keyword_readonly] = ACTIONS(89), - [sym_keyword_type] = ACTIONS(89), - [sym_keyword_default] = ACTIONS(89), - [sym_keyword_assert] = ACTIONS(89), - [sym_keyword_permissions] = ACTIONS(89), - [sym_keyword_for] = ACTIONS(89), - [sym_keyword_comment] = ACTIONS(89), - [anon_sym_COMMA] = ACTIONS(89), - [anon_sym_DASH_GT] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_RPAREN] = ACTIONS(89), - [anon_sym_RBRACE] = ACTIONS(89), - [anon_sym_LT_DASH] = ACTIONS(245), - [anon_sym_LT_DASH_GT] = ACTIONS(241), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(247), - [anon_sym_LT] = ACTIONS(91), - [anon_sym_GT] = ACTIONS(91), - [anon_sym_EQ] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_LT_PIPE] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(89), - [anon_sym_QMARK_QMARK] = ACTIONS(89), - [anon_sym_QMARK_COLON] = ACTIONS(89), - [anon_sym_BANG_EQ] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_QMARK_EQ] = ACTIONS(89), - [anon_sym_STAR_EQ] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_BANG_TILDE] = ACTIONS(89), - [anon_sym_STAR_TILDE] = ACTIONS(89), - [anon_sym_LT_EQ] = ACTIONS(89), - [anon_sym_GT_EQ] = ACTIONS(89), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_PLUS_EQ] = ACTIONS(89), - [anon_sym_DASH_EQ] = ACTIONS(89), - [anon_sym_u00d7] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(91), - [anon_sym_u00f7] = ACTIONS(89), - [anon_sym_STAR_STAR] = ACTIONS(89), - [anon_sym_u220b] = ACTIONS(89), - [anon_sym_u220c] = ACTIONS(89), - [anon_sym_u2287] = ACTIONS(89), - [anon_sym_u2283] = ACTIONS(89), - [anon_sym_u2285] = ACTIONS(89), - [anon_sym_u2208] = ACTIONS(89), - [anon_sym_u2209] = ACTIONS(89), - [anon_sym_u2286] = ACTIONS(89), - [anon_sym_u2282] = ACTIONS(89), - [anon_sym_u2284] = ACTIONS(89), - [anon_sym_AT_AT] = ACTIONS(89), - }, - [73] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(249), - [sym_keyword_if] = ACTIONS(249), - [sym_keyword_return] = ACTIONS(249), - [sym_keyword_from] = ACTIONS(249), - [sym_keyword_as] = ACTIONS(249), - [sym_keyword_omit] = ACTIONS(249), - [sym_keyword_parallel] = ACTIONS(249), - [sym_keyword_timeout] = ACTIONS(249), - [sym_keyword_where] = ACTIONS(249), - [sym_keyword_group] = ACTIONS(249), - [sym_keyword_and] = ACTIONS(249), - [sym_keyword_or] = ACTIONS(249), - [sym_keyword_is] = ACTIONS(249), - [sym_keyword_not] = ACTIONS(251), - [sym_keyword_contains] = ACTIONS(249), - [sym_keyword_contains_not] = ACTIONS(249), - [sym_keyword_contains_all] = ACTIONS(249), - [sym_keyword_contains_any] = ACTIONS(249), - [sym_keyword_contains_none] = ACTIONS(249), - [sym_keyword_inside] = ACTIONS(249), - [sym_keyword_in] = ACTIONS(251), - [sym_keyword_not_inside] = ACTIONS(249), - [sym_keyword_all_inside] = ACTIONS(249), - [sym_keyword_any_inside] = ACTIONS(249), - [sym_keyword_none_inside] = ACTIONS(249), - [sym_keyword_outside] = ACTIONS(249), - [sym_keyword_intersects] = ACTIONS(249), - [sym_keyword_drop] = ACTIONS(249), - [sym_keyword_schemafull] = ACTIONS(249), - [sym_keyword_schemaless] = ACTIONS(249), - [sym_keyword_changefeed] = ACTIONS(249), - [sym_keyword_content] = ACTIONS(249), - [sym_keyword_merge] = ACTIONS(249), - [sym_keyword_patch] = ACTIONS(249), - [sym_keyword_then] = ACTIONS(249), - [sym_keyword_type] = ACTIONS(249), - [sym_keyword_permissions] = ACTIONS(249), - [sym_keyword_for] = ACTIONS(249), - [sym_keyword_comment] = ACTIONS(249), - [sym_keyword_set] = ACTIONS(249), - [sym_keyword_unset] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_RBRACK] = ACTIONS(249), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(251), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_RBRACE] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [sym_variable_name] = ACTIONS(249), - [sym_custom_function_name] = ACTIONS(249), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(251), - [anon_sym_LT_PIPE] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_QMARK_QMARK] = ACTIONS(249), - [anon_sym_QMARK_COLON] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_QMARK_EQ] = ACTIONS(249), - [anon_sym_STAR_EQ] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG_TILDE] = ACTIONS(249), - [anon_sym_STAR_TILDE] = ACTIONS(249), - [anon_sym_LT_EQ] = ACTIONS(249), - [anon_sym_GT_EQ] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_PLUS_EQ] = ACTIONS(249), - [anon_sym_DASH_EQ] = ACTIONS(249), - [anon_sym_u00d7] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(251), - [anon_sym_u00f7] = ACTIONS(249), - [anon_sym_STAR_STAR] = ACTIONS(249), - [anon_sym_u220b] = ACTIONS(249), - [anon_sym_u220c] = ACTIONS(249), - [anon_sym_u2287] = ACTIONS(249), - [anon_sym_u2283] = ACTIONS(249), - [anon_sym_u2285] = ACTIONS(249), - [anon_sym_u2208] = ACTIONS(249), - [anon_sym_u2209] = ACTIONS(249), - [anon_sym_u2286] = ACTIONS(249), - [anon_sym_u2282] = ACTIONS(249), - [anon_sym_u2284] = ACTIONS(249), - [anon_sym_AT_AT] = ACTIONS(249), - }, - [74] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_if] = ACTIONS(180), - [sym_keyword_return] = ACTIONS(180), - [sym_keyword_from] = ACTIONS(180), - [sym_keyword_as] = ACTIONS(180), - [sym_keyword_omit] = ACTIONS(180), - [sym_keyword_parallel] = ACTIONS(180), - [sym_keyword_timeout] = ACTIONS(180), - [sym_keyword_where] = ACTIONS(180), - [sym_keyword_group] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(180), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [sym_keyword_drop] = ACTIONS(180), - [sym_keyword_schemafull] = ACTIONS(180), - [sym_keyword_schemaless] = ACTIONS(180), - [sym_keyword_changefeed] = ACTIONS(180), - [sym_keyword_content] = ACTIONS(180), - [sym_keyword_merge] = ACTIONS(180), - [sym_keyword_patch] = ACTIONS(180), - [sym_keyword_then] = ACTIONS(180), - [sym_keyword_type] = ACTIONS(180), - [sym_keyword_permissions] = ACTIONS(180), - [sym_keyword_for] = ACTIONS(180), - [sym_keyword_comment] = ACTIONS(180), - [sym_keyword_set] = ACTIONS(180), - [sym_keyword_unset] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_RBRACK] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), - [anon_sym_QMARK] = ACTIONS(182), - [anon_sym_LBRACE] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [sym_variable_name] = ACTIONS(180), - [sym_custom_function_name] = ACTIONS(180), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), - }, [75] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(253), - [sym_keyword_if] = ACTIONS(253), - [sym_keyword_return] = ACTIONS(253), - [sym_keyword_from] = ACTIONS(253), - [sym_keyword_as] = ACTIONS(253), - [sym_keyword_omit] = ACTIONS(253), - [sym_keyword_parallel] = ACTIONS(253), - [sym_keyword_timeout] = ACTIONS(253), - [sym_keyword_where] = ACTIONS(253), - [sym_keyword_group] = ACTIONS(253), - [sym_keyword_and] = ACTIONS(253), - [sym_keyword_or] = ACTIONS(253), - [sym_keyword_is] = ACTIONS(253), - [sym_keyword_not] = ACTIONS(255), - [sym_keyword_contains] = ACTIONS(253), - [sym_keyword_contains_not] = ACTIONS(253), - [sym_keyword_contains_all] = ACTIONS(253), - [sym_keyword_contains_any] = ACTIONS(253), - [sym_keyword_contains_none] = ACTIONS(253), - [sym_keyword_inside] = ACTIONS(253), - [sym_keyword_in] = ACTIONS(255), - [sym_keyword_not_inside] = ACTIONS(253), - [sym_keyword_all_inside] = ACTIONS(253), - [sym_keyword_any_inside] = ACTIONS(253), - [sym_keyword_none_inside] = ACTIONS(253), - [sym_keyword_outside] = ACTIONS(253), - [sym_keyword_intersects] = ACTIONS(253), - [sym_keyword_drop] = ACTIONS(253), - [sym_keyword_schemafull] = ACTIONS(253), - [sym_keyword_schemaless] = ACTIONS(253), - [sym_keyword_changefeed] = ACTIONS(253), - [sym_keyword_content] = ACTIONS(253), - [sym_keyword_merge] = ACTIONS(253), - [sym_keyword_patch] = ACTIONS(253), - [sym_keyword_then] = ACTIONS(253), - [sym_keyword_type] = ACTIONS(253), - [sym_keyword_permissions] = ACTIONS(253), - [sym_keyword_for] = ACTIONS(253), - [sym_keyword_comment] = ACTIONS(253), - [sym_keyword_set] = ACTIONS(253), - [sym_keyword_unset] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_RBRACK] = ACTIONS(253), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_QMARK] = ACTIONS(255), - [anon_sym_LBRACE] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(255), - [anon_sym_LT] = ACTIONS(255), - [anon_sym_GT] = ACTIONS(255), - [sym_variable_name] = ACTIONS(253), - [sym_custom_function_name] = ACTIONS(253), - [anon_sym_EQ] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_PIPE] = ACTIONS(253), - [anon_sym_AMP_AMP] = ACTIONS(253), - [anon_sym_PIPE_PIPE] = ACTIONS(253), - [anon_sym_QMARK_QMARK] = ACTIONS(253), - [anon_sym_QMARK_COLON] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_QMARK_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_BANG_TILDE] = ACTIONS(253), - [anon_sym_STAR_TILDE] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_u00d7] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(255), - [anon_sym_u00f7] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(253), - [anon_sym_u220b] = ACTIONS(253), - [anon_sym_u220c] = ACTIONS(253), - [anon_sym_u2287] = ACTIONS(253), - [anon_sym_u2283] = ACTIONS(253), - [anon_sym_u2285] = ACTIONS(253), - [anon_sym_u2208] = ACTIONS(253), - [anon_sym_u2209] = ACTIONS(253), - [anon_sym_u2286] = ACTIONS(253), - [anon_sym_u2282] = ACTIONS(253), - [anon_sym_u2284] = ACTIONS(253), - [anon_sym_AT_AT] = ACTIONS(253), - }, - [76] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(257), [sym_keyword_if] = ACTIONS(257), @@ -23574,464 +23503,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(257), [anon_sym_AT_AT] = ACTIONS(257), }, - [77] = { + [76] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(156), - [sym_keyword_if] = ACTIONS(156), - [sym_keyword_return] = ACTIONS(156), - [sym_keyword_from] = ACTIONS(156), - [sym_keyword_as] = ACTIONS(156), - [sym_keyword_omit] = ACTIONS(156), - [sym_keyword_parallel] = ACTIONS(156), - [sym_keyword_timeout] = ACTIONS(156), - [sym_keyword_where] = ACTIONS(156), - [sym_keyword_group] = ACTIONS(156), - [sym_keyword_and] = ACTIONS(156), - [sym_keyword_or] = ACTIONS(156), - [sym_keyword_is] = ACTIONS(156), - [sym_keyword_not] = ACTIONS(158), - [sym_keyword_contains] = ACTIONS(156), - [sym_keyword_contains_not] = ACTIONS(156), - [sym_keyword_contains_all] = ACTIONS(156), - [sym_keyword_contains_any] = ACTIONS(156), - [sym_keyword_contains_none] = ACTIONS(156), - [sym_keyword_inside] = ACTIONS(156), - [sym_keyword_in] = ACTIONS(158), - [sym_keyword_not_inside] = ACTIONS(156), - [sym_keyword_all_inside] = ACTIONS(156), - [sym_keyword_any_inside] = ACTIONS(156), - [sym_keyword_none_inside] = ACTIONS(156), - [sym_keyword_outside] = ACTIONS(156), - [sym_keyword_intersects] = ACTIONS(156), - [sym_keyword_drop] = ACTIONS(156), - [sym_keyword_schemafull] = ACTIONS(156), - [sym_keyword_schemaless] = ACTIONS(156), - [sym_keyword_changefeed] = ACTIONS(156), - [sym_keyword_content] = ACTIONS(156), - [sym_keyword_merge] = ACTIONS(156), - [sym_keyword_patch] = ACTIONS(156), - [sym_keyword_then] = ACTIONS(156), - [sym_keyword_type] = ACTIONS(156), - [sym_keyword_permissions] = ACTIONS(156), - [sym_keyword_for] = ACTIONS(156), - [sym_keyword_comment] = ACTIONS(156), - [sym_keyword_set] = ACTIONS(156), - [sym_keyword_unset] = ACTIONS(156), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_RBRACK] = ACTIONS(156), - [anon_sym_LPAREN] = ACTIONS(156), - [anon_sym_RPAREN] = ACTIONS(156), - [anon_sym_QMARK] = ACTIONS(158), - [anon_sym_LBRACE] = ACTIONS(156), - [anon_sym_RBRACE] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(158), - [sym_variable_name] = ACTIONS(156), - [sym_custom_function_name] = ACTIONS(156), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(158), - [anon_sym_LT_PIPE] = ACTIONS(156), - [anon_sym_AMP_AMP] = ACTIONS(156), - [anon_sym_PIPE_PIPE] = ACTIONS(156), - [anon_sym_QMARK_QMARK] = ACTIONS(156), - [anon_sym_QMARK_COLON] = ACTIONS(156), - [anon_sym_BANG_EQ] = ACTIONS(156), - [anon_sym_EQ_EQ] = ACTIONS(156), - [anon_sym_QMARK_EQ] = ACTIONS(156), - [anon_sym_STAR_EQ] = ACTIONS(156), - [anon_sym_TILDE] = ACTIONS(156), - [anon_sym_BANG_TILDE] = ACTIONS(156), - [anon_sym_STAR_TILDE] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(156), - [anon_sym_DASH_EQ] = ACTIONS(156), - [anon_sym_u00d7] = ACTIONS(156), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_u00f7] = ACTIONS(156), - [anon_sym_STAR_STAR] = ACTIONS(156), - [anon_sym_u220b] = ACTIONS(156), - [anon_sym_u220c] = ACTIONS(156), - [anon_sym_u2287] = ACTIONS(156), - [anon_sym_u2283] = ACTIONS(156), - [anon_sym_u2285] = ACTIONS(156), - [anon_sym_u2208] = ACTIONS(156), - [anon_sym_u2209] = ACTIONS(156), - [anon_sym_u2286] = ACTIONS(156), - [anon_sym_u2282] = ACTIONS(156), - [anon_sym_u2284] = ACTIONS(156), - [anon_sym_AT_AT] = ACTIONS(156), + [sym_semi_colon] = ACTIONS(168), + [sym_keyword_if] = ACTIONS(168), + [sym_keyword_return] = ACTIONS(168), + [sym_keyword_from] = ACTIONS(168), + [sym_keyword_as] = ACTIONS(168), + [sym_keyword_omit] = ACTIONS(168), + [sym_keyword_parallel] = ACTIONS(168), + [sym_keyword_timeout] = ACTIONS(168), + [sym_keyword_where] = ACTIONS(168), + [sym_keyword_group] = ACTIONS(168), + [sym_keyword_and] = ACTIONS(168), + [sym_keyword_or] = ACTIONS(168), + [sym_keyword_is] = ACTIONS(168), + [sym_keyword_not] = ACTIONS(170), + [sym_keyword_contains] = ACTIONS(168), + [sym_keyword_contains_not] = ACTIONS(168), + [sym_keyword_contains_all] = ACTIONS(168), + [sym_keyword_contains_any] = ACTIONS(168), + [sym_keyword_contains_none] = ACTIONS(168), + [sym_keyword_inside] = ACTIONS(168), + [sym_keyword_in] = ACTIONS(170), + [sym_keyword_not_inside] = ACTIONS(168), + [sym_keyword_all_inside] = ACTIONS(168), + [sym_keyword_any_inside] = ACTIONS(168), + [sym_keyword_none_inside] = ACTIONS(168), + [sym_keyword_outside] = ACTIONS(168), + [sym_keyword_intersects] = ACTIONS(168), + [sym_keyword_drop] = ACTIONS(168), + [sym_keyword_schemafull] = ACTIONS(168), + [sym_keyword_schemaless] = ACTIONS(168), + [sym_keyword_changefeed] = ACTIONS(168), + [sym_keyword_content] = ACTIONS(168), + [sym_keyword_merge] = ACTIONS(168), + [sym_keyword_patch] = ACTIONS(168), + [sym_keyword_then] = ACTIONS(168), + [sym_keyword_type] = ACTIONS(168), + [sym_keyword_permissions] = ACTIONS(168), + [sym_keyword_for] = ACTIONS(168), + [sym_keyword_comment] = ACTIONS(168), + [sym_keyword_set] = ACTIONS(168), + [sym_keyword_unset] = ACTIONS(168), + [anon_sym_COMMA] = ACTIONS(168), + [anon_sym_RBRACK] = ACTIONS(168), + [anon_sym_LPAREN] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_QMARK] = ACTIONS(170), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(170), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_GT] = ACTIONS(170), + [sym_variable_name] = ACTIONS(168), + [sym_custom_function_name] = ACTIONS(168), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(170), + [anon_sym_LT_PIPE] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(168), + [anon_sym_QMARK_QMARK] = ACTIONS(168), + [anon_sym_QMARK_COLON] = ACTIONS(168), + [anon_sym_BANG_EQ] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(168), + [anon_sym_QMARK_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_BANG_TILDE] = ACTIONS(168), + [anon_sym_STAR_TILDE] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(168), + [anon_sym_GT_EQ] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_u00d7] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_u00f7] = ACTIONS(168), + [anon_sym_STAR_STAR] = ACTIONS(168), + [anon_sym_u220b] = ACTIONS(168), + [anon_sym_u220c] = ACTIONS(168), + [anon_sym_u2287] = ACTIONS(168), + [anon_sym_u2283] = ACTIONS(168), + [anon_sym_u2285] = ACTIONS(168), + [anon_sym_u2208] = ACTIONS(168), + [anon_sym_u2209] = ACTIONS(168), + [anon_sym_u2286] = ACTIONS(168), + [anon_sym_u2282] = ACTIONS(168), + [anon_sym_u2284] = ACTIONS(168), + [anon_sym_AT_AT] = ACTIONS(168), + }, + [77] = { + [sym_filter] = STATE(113), + [sym_path_element] = STATE(74), + [sym_graph_path] = STATE(113), + [sym_subscript] = STATE(113), + [aux_sym_path_repeat1] = STATE(74), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(73), + [sym_keyword_value] = ACTIONS(73), + [sym_keyword_explain] = ACTIONS(73), + [sym_keyword_parallel] = ACTIONS(73), + [sym_keyword_timeout] = ACTIONS(73), + [sym_keyword_fetch] = ACTIONS(73), + [sym_keyword_limit] = ACTIONS(73), + [sym_keyword_rand] = ACTIONS(73), + [sym_keyword_collate] = ACTIONS(73), + [sym_keyword_numeric] = ACTIONS(73), + [sym_keyword_asc] = ACTIONS(73), + [sym_keyword_desc] = ACTIONS(73), + [sym_keyword_and] = ACTIONS(73), + [sym_keyword_or] = ACTIONS(73), + [sym_keyword_is] = ACTIONS(73), + [sym_keyword_not] = ACTIONS(75), + [sym_keyword_contains] = ACTIONS(73), + [sym_keyword_contains_not] = ACTIONS(73), + [sym_keyword_contains_all] = ACTIONS(73), + [sym_keyword_contains_any] = ACTIONS(73), + [sym_keyword_contains_none] = ACTIONS(73), + [sym_keyword_inside] = ACTIONS(73), + [sym_keyword_in] = ACTIONS(75), + [sym_keyword_not_inside] = ACTIONS(73), + [sym_keyword_all_inside] = ACTIONS(73), + [sym_keyword_any_inside] = ACTIONS(73), + [sym_keyword_none_inside] = ACTIONS(73), + [sym_keyword_outside] = ACTIONS(73), + [sym_keyword_intersects] = ACTIONS(73), + [sym_keyword_flexible] = ACTIONS(73), + [sym_keyword_readonly] = ACTIONS(73), + [sym_keyword_type] = ACTIONS(73), + [sym_keyword_default] = ACTIONS(73), + [sym_keyword_assert] = ACTIONS(73), + [sym_keyword_permissions] = ACTIONS(73), + [sym_keyword_for] = ACTIONS(73), + [sym_keyword_comment] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(73), + [anon_sym_DASH_GT] = ACTIONS(233), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RPAREN] = ACTIONS(73), + [anon_sym_RBRACE] = ACTIONS(73), + [anon_sym_LT_DASH] = ACTIONS(237), + [anon_sym_LT_DASH_GT] = ACTIONS(233), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(239), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_AT] = ACTIONS(75), + [anon_sym_LT_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(73), + [anon_sym_PIPE_PIPE] = ACTIONS(73), + [anon_sym_QMARK_QMARK] = ACTIONS(73), + [anon_sym_QMARK_COLON] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_QMARK_EQ] = ACTIONS(73), + [anon_sym_STAR_EQ] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(73), + [anon_sym_BANG_TILDE] = ACTIONS(73), + [anon_sym_STAR_TILDE] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(73), + [anon_sym_DASH_EQ] = ACTIONS(73), + [anon_sym_u00d7] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_u00f7] = ACTIONS(73), + [anon_sym_STAR_STAR] = ACTIONS(73), + [anon_sym_u220b] = ACTIONS(73), + [anon_sym_u220c] = ACTIONS(73), + [anon_sym_u2287] = ACTIONS(73), + [anon_sym_u2283] = ACTIONS(73), + [anon_sym_u2285] = ACTIONS(73), + [anon_sym_u2208] = ACTIONS(73), + [anon_sym_u2209] = ACTIONS(73), + [anon_sym_u2286] = ACTIONS(73), + [anon_sym_u2282] = ACTIONS(73), + [anon_sym_u2284] = ACTIONS(73), + [anon_sym_AT_AT] = ACTIONS(73), }, [78] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(77), - [sym_keyword_if] = ACTIONS(77), - [sym_keyword_return] = ACTIONS(77), - [sym_keyword_from] = ACTIONS(77), - [sym_keyword_as] = ACTIONS(77), - [sym_keyword_omit] = ACTIONS(77), - [sym_keyword_parallel] = ACTIONS(77), - [sym_keyword_timeout] = ACTIONS(77), - [sym_keyword_where] = ACTIONS(77), - [sym_keyword_group] = ACTIONS(77), - [sym_keyword_and] = ACTIONS(77), - [sym_keyword_or] = ACTIONS(77), - [sym_keyword_is] = ACTIONS(77), - [sym_keyword_not] = ACTIONS(79), - [sym_keyword_contains] = ACTIONS(77), - [sym_keyword_contains_not] = ACTIONS(77), - [sym_keyword_contains_all] = ACTIONS(77), - [sym_keyword_contains_any] = ACTIONS(77), - [sym_keyword_contains_none] = ACTIONS(77), - [sym_keyword_inside] = ACTIONS(77), - [sym_keyword_in] = ACTIONS(79), - [sym_keyword_not_inside] = ACTIONS(77), - [sym_keyword_all_inside] = ACTIONS(77), - [sym_keyword_any_inside] = ACTIONS(77), - [sym_keyword_none_inside] = ACTIONS(77), - [sym_keyword_outside] = ACTIONS(77), - [sym_keyword_intersects] = ACTIONS(77), - [sym_keyword_drop] = ACTIONS(77), - [sym_keyword_schemafull] = ACTIONS(77), - [sym_keyword_schemaless] = ACTIONS(77), - [sym_keyword_changefeed] = ACTIONS(77), - [sym_keyword_content] = ACTIONS(77), - [sym_keyword_merge] = ACTIONS(77), - [sym_keyword_patch] = ACTIONS(77), - [sym_keyword_then] = ACTIONS(77), - [sym_keyword_type] = ACTIONS(77), - [sym_keyword_permissions] = ACTIONS(77), - [sym_keyword_for] = ACTIONS(77), - [sym_keyword_comment] = ACTIONS(77), - [sym_keyword_set] = ACTIONS(77), - [sym_keyword_unset] = ACTIONS(77), - [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_RPAREN] = ACTIONS(77), - [anon_sym_QMARK] = ACTIONS(79), - [anon_sym_LBRACE] = ACTIONS(77), - [anon_sym_RBRACE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(79), - [sym_variable_name] = ACTIONS(77), - [sym_custom_function_name] = ACTIONS(77), - [anon_sym_EQ] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_AT] = ACTIONS(79), - [anon_sym_LT_PIPE] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_QMARK_QMARK] = ACTIONS(77), - [anon_sym_QMARK_COLON] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_QMARK_EQ] = ACTIONS(77), - [anon_sym_STAR_EQ] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG_TILDE] = ACTIONS(77), - [anon_sym_STAR_TILDE] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_PLUS_EQ] = ACTIONS(77), - [anon_sym_DASH_EQ] = ACTIONS(77), - [anon_sym_u00d7] = ACTIONS(77), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_u00f7] = ACTIONS(77), - [anon_sym_STAR_STAR] = ACTIONS(77), - [anon_sym_u220b] = ACTIONS(77), - [anon_sym_u220c] = ACTIONS(77), - [anon_sym_u2287] = ACTIONS(77), - [anon_sym_u2283] = ACTIONS(77), - [anon_sym_u2285] = ACTIONS(77), - [anon_sym_u2208] = ACTIONS(77), - [anon_sym_u2209] = ACTIONS(77), - [anon_sym_u2286] = ACTIONS(77), - [anon_sym_u2282] = ACTIONS(77), - [anon_sym_u2284] = ACTIONS(77), - [anon_sym_AT_AT] = ACTIONS(77), + [sym_semi_colon] = ACTIONS(148), + [sym_keyword_if] = ACTIONS(148), + [sym_keyword_return] = ACTIONS(148), + [sym_keyword_from] = ACTIONS(148), + [sym_keyword_as] = ACTIONS(148), + [sym_keyword_omit] = ACTIONS(148), + [sym_keyword_parallel] = ACTIONS(148), + [sym_keyword_timeout] = ACTIONS(148), + [sym_keyword_where] = ACTIONS(148), + [sym_keyword_group] = ACTIONS(148), + [sym_keyword_and] = ACTIONS(148), + [sym_keyword_or] = ACTIONS(148), + [sym_keyword_is] = ACTIONS(148), + [sym_keyword_not] = ACTIONS(150), + [sym_keyword_contains] = ACTIONS(148), + [sym_keyword_contains_not] = ACTIONS(148), + [sym_keyword_contains_all] = ACTIONS(148), + [sym_keyword_contains_any] = ACTIONS(148), + [sym_keyword_contains_none] = ACTIONS(148), + [sym_keyword_inside] = ACTIONS(148), + [sym_keyword_in] = ACTIONS(150), + [sym_keyword_not_inside] = ACTIONS(148), + [sym_keyword_all_inside] = ACTIONS(148), + [sym_keyword_any_inside] = ACTIONS(148), + [sym_keyword_none_inside] = ACTIONS(148), + [sym_keyword_outside] = ACTIONS(148), + [sym_keyword_intersects] = ACTIONS(148), + [sym_keyword_drop] = ACTIONS(148), + [sym_keyword_schemafull] = ACTIONS(148), + [sym_keyword_schemaless] = ACTIONS(148), + [sym_keyword_changefeed] = ACTIONS(148), + [sym_keyword_content] = ACTIONS(148), + [sym_keyword_merge] = ACTIONS(148), + [sym_keyword_patch] = ACTIONS(148), + [sym_keyword_then] = ACTIONS(148), + [sym_keyword_type] = ACTIONS(148), + [sym_keyword_permissions] = ACTIONS(148), + [sym_keyword_for] = ACTIONS(148), + [sym_keyword_comment] = ACTIONS(148), + [sym_keyword_set] = ACTIONS(148), + [sym_keyword_unset] = ACTIONS(148), + [anon_sym_COMMA] = ACTIONS(148), + [anon_sym_RBRACK] = ACTIONS(148), + [anon_sym_LPAREN] = ACTIONS(148), + [anon_sym_RPAREN] = ACTIONS(148), + [anon_sym_QMARK] = ACTIONS(150), + [anon_sym_LBRACE] = ACTIONS(148), + [anon_sym_RBRACE] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_LT] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(150), + [sym_variable_name] = ACTIONS(148), + [sym_custom_function_name] = ACTIONS(148), + [anon_sym_EQ] = ACTIONS(150), + [anon_sym_DASH] = ACTIONS(150), + [anon_sym_AT] = ACTIONS(150), + [anon_sym_LT_PIPE] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [anon_sym_QMARK_QMARK] = ACTIONS(148), + [anon_sym_QMARK_COLON] = ACTIONS(148), + [anon_sym_BANG_EQ] = ACTIONS(148), + [anon_sym_EQ_EQ] = ACTIONS(148), + [anon_sym_QMARK_EQ] = ACTIONS(148), + [anon_sym_STAR_EQ] = ACTIONS(148), + [anon_sym_TILDE] = ACTIONS(148), + [anon_sym_BANG_TILDE] = ACTIONS(148), + [anon_sym_STAR_TILDE] = ACTIONS(148), + [anon_sym_LT_EQ] = ACTIONS(148), + [anon_sym_GT_EQ] = ACTIONS(148), + [anon_sym_PLUS] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(148), + [anon_sym_DASH_EQ] = ACTIONS(148), + [anon_sym_u00d7] = ACTIONS(148), + [anon_sym_SLASH] = ACTIONS(150), + [anon_sym_u00f7] = ACTIONS(148), + [anon_sym_STAR_STAR] = ACTIONS(148), + [anon_sym_u220b] = ACTIONS(148), + [anon_sym_u220c] = ACTIONS(148), + [anon_sym_u2287] = ACTIONS(148), + [anon_sym_u2283] = ACTIONS(148), + [anon_sym_u2285] = ACTIONS(148), + [anon_sym_u2208] = ACTIONS(148), + [anon_sym_u2209] = ACTIONS(148), + [anon_sym_u2286] = ACTIONS(148), + [anon_sym_u2282] = ACTIONS(148), + [anon_sym_u2284] = ACTIONS(148), + [anon_sym_AT_AT] = ACTIONS(148), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(249), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(249), - [sym_keyword_return] = ACTIONS(249), - [sym_keyword_value] = ACTIONS(249), - [sym_keyword_explain] = ACTIONS(249), - [sym_keyword_parallel] = ACTIONS(249), - [sym_keyword_timeout] = ACTIONS(249), - [sym_keyword_fetch] = ACTIONS(249), - [sym_keyword_limit] = ACTIONS(249), - [sym_keyword_rand] = ACTIONS(249), - [sym_keyword_collate] = ACTIONS(249), - [sym_keyword_numeric] = ACTIONS(249), - [sym_keyword_asc] = ACTIONS(249), - [sym_keyword_desc] = ACTIONS(249), - [sym_keyword_where] = ACTIONS(249), - [sym_keyword_and] = ACTIONS(249), - [sym_keyword_or] = ACTIONS(249), - [sym_keyword_is] = ACTIONS(249), - [sym_keyword_not] = ACTIONS(251), - [sym_keyword_contains] = ACTIONS(249), - [sym_keyword_contains_not] = ACTIONS(249), - [sym_keyword_contains_all] = ACTIONS(249), - [sym_keyword_contains_any] = ACTIONS(249), - [sym_keyword_contains_none] = ACTIONS(249), - [sym_keyword_inside] = ACTIONS(249), - [sym_keyword_in] = ACTIONS(251), - [sym_keyword_not_inside] = ACTIONS(249), - [sym_keyword_all_inside] = ACTIONS(249), - [sym_keyword_any_inside] = ACTIONS(249), - [sym_keyword_none_inside] = ACTIONS(249), - [sym_keyword_outside] = ACTIONS(249), - [sym_keyword_intersects] = ACTIONS(249), - [sym_keyword_flexible] = ACTIONS(249), - [sym_keyword_readonly] = ACTIONS(249), - [sym_keyword_content] = ACTIONS(249), - [sym_keyword_merge] = ACTIONS(249), - [sym_keyword_patch] = ACTIONS(249), - [sym_keyword_type] = ACTIONS(249), - [sym_keyword_default] = ACTIONS(249), - [sym_keyword_assert] = ACTIONS(249), - [sym_keyword_permissions] = ACTIONS(249), - [sym_keyword_for] = ACTIONS(249), - [sym_keyword_comment] = ACTIONS(249), - [sym_keyword_set] = ACTIONS(249), - [sym_keyword_unset] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_DASH_GT] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_RBRACE] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(251), - [anon_sym_LT_PIPE] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_QMARK_QMARK] = ACTIONS(249), - [anon_sym_QMARK_COLON] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_QMARK_EQ] = ACTIONS(249), - [anon_sym_STAR_EQ] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG_TILDE] = ACTIONS(249), - [anon_sym_STAR_TILDE] = ACTIONS(249), - [anon_sym_LT_EQ] = ACTIONS(249), - [anon_sym_GT_EQ] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_PLUS_EQ] = ACTIONS(249), - [anon_sym_DASH_EQ] = ACTIONS(249), - [anon_sym_u00d7] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(251), - [anon_sym_u00f7] = ACTIONS(249), - [anon_sym_STAR_STAR] = ACTIONS(249), - [anon_sym_u220b] = ACTIONS(249), - [anon_sym_u220c] = ACTIONS(249), - [anon_sym_u2287] = ACTIONS(249), - [anon_sym_u2283] = ACTIONS(249), - [anon_sym_u2285] = ACTIONS(249), - [anon_sym_u2208] = ACTIONS(249), - [anon_sym_u2209] = ACTIONS(249), - [anon_sym_u2286] = ACTIONS(249), - [anon_sym_u2282] = ACTIONS(249), - [anon_sym_u2284] = ACTIONS(249), - [anon_sym_AT_AT] = ACTIONS(249), - }, - [80] = { - [ts_builtin_sym_end] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(253), - [sym_keyword_return] = ACTIONS(253), - [sym_keyword_value] = ACTIONS(253), - [sym_keyword_explain] = ACTIONS(253), - [sym_keyword_parallel] = ACTIONS(253), - [sym_keyword_timeout] = ACTIONS(253), - [sym_keyword_fetch] = ACTIONS(253), - [sym_keyword_limit] = ACTIONS(253), - [sym_keyword_rand] = ACTIONS(253), - [sym_keyword_collate] = ACTIONS(253), - [sym_keyword_numeric] = ACTIONS(253), - [sym_keyword_asc] = ACTIONS(253), - [sym_keyword_desc] = ACTIONS(253), - [sym_keyword_where] = ACTIONS(253), - [sym_keyword_and] = ACTIONS(253), - [sym_keyword_or] = ACTIONS(253), - [sym_keyword_is] = ACTIONS(253), - [sym_keyword_not] = ACTIONS(255), - [sym_keyword_contains] = ACTIONS(253), - [sym_keyword_contains_not] = ACTIONS(253), - [sym_keyword_contains_all] = ACTIONS(253), - [sym_keyword_contains_any] = ACTIONS(253), - [sym_keyword_contains_none] = ACTIONS(253), - [sym_keyword_inside] = ACTIONS(253), - [sym_keyword_in] = ACTIONS(255), - [sym_keyword_not_inside] = ACTIONS(253), - [sym_keyword_all_inside] = ACTIONS(253), - [sym_keyword_any_inside] = ACTIONS(253), - [sym_keyword_none_inside] = ACTIONS(253), - [sym_keyword_outside] = ACTIONS(253), - [sym_keyword_intersects] = ACTIONS(253), - [sym_keyword_flexible] = ACTIONS(253), - [sym_keyword_readonly] = ACTIONS(253), - [sym_keyword_content] = ACTIONS(253), - [sym_keyword_merge] = ACTIONS(253), - [sym_keyword_patch] = ACTIONS(253), - [sym_keyword_type] = ACTIONS(253), - [sym_keyword_default] = ACTIONS(253), - [sym_keyword_assert] = ACTIONS(253), - [sym_keyword_permissions] = ACTIONS(253), - [sym_keyword_for] = ACTIONS(253), - [sym_keyword_comment] = ACTIONS(253), - [sym_keyword_set] = ACTIONS(253), - [sym_keyword_unset] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_DASH_GT] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(255), - [anon_sym_LT] = ACTIONS(255), - [anon_sym_GT] = ACTIONS(255), - [anon_sym_EQ] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_PIPE] = ACTIONS(253), - [anon_sym_AMP_AMP] = ACTIONS(253), - [anon_sym_PIPE_PIPE] = ACTIONS(253), - [anon_sym_QMARK_QMARK] = ACTIONS(253), - [anon_sym_QMARK_COLON] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_QMARK_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_BANG_TILDE] = ACTIONS(253), - [anon_sym_STAR_TILDE] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_u00d7] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(255), - [anon_sym_u00f7] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(253), - [anon_sym_u220b] = ACTIONS(253), - [anon_sym_u220c] = ACTIONS(253), - [anon_sym_u2287] = ACTIONS(253), - [anon_sym_u2283] = ACTIONS(253), - [anon_sym_u2285] = ACTIONS(253), - [anon_sym_u2208] = ACTIONS(253), - [anon_sym_u2209] = ACTIONS(253), - [anon_sym_u2286] = ACTIONS(253), - [anon_sym_u2282] = ACTIONS(253), - [anon_sym_u2284] = ACTIONS(253), - [anon_sym_AT_AT] = ACTIONS(253), - }, - [81] = { - [sym_filter] = STATE(55), - [sym_path_element] = STATE(82), - [sym_graph_path] = STATE(55), - [sym_subscript] = STATE(55), - [aux_sym_path_repeat1] = STATE(82), - [ts_builtin_sym_end] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(77), - [sym_keyword_value] = ACTIONS(77), - [sym_keyword_explain] = ACTIONS(77), - [sym_keyword_parallel] = ACTIONS(77), - [sym_keyword_timeout] = ACTIONS(77), - [sym_keyword_fetch] = ACTIONS(77), - [sym_keyword_limit] = ACTIONS(77), - [sym_keyword_rand] = ACTIONS(77), - [sym_keyword_collate] = ACTIONS(77), - [sym_keyword_numeric] = ACTIONS(77), - [sym_keyword_asc] = ACTIONS(77), - [sym_keyword_desc] = ACTIONS(77), - [sym_keyword_and] = ACTIONS(77), - [sym_keyword_or] = ACTIONS(77), - [sym_keyword_is] = ACTIONS(77), - [sym_keyword_not] = ACTIONS(79), - [sym_keyword_contains] = ACTIONS(77), - [sym_keyword_contains_not] = ACTIONS(77), - [sym_keyword_contains_all] = ACTIONS(77), - [sym_keyword_contains_any] = ACTIONS(77), - [sym_keyword_contains_none] = ACTIONS(77), - [sym_keyword_inside] = ACTIONS(77), - [sym_keyword_in] = ACTIONS(79), - [sym_keyword_not_inside] = ACTIONS(77), - [sym_keyword_all_inside] = ACTIONS(77), - [sym_keyword_any_inside] = ACTIONS(77), - [sym_keyword_none_inside] = ACTIONS(77), - [sym_keyword_outside] = ACTIONS(77), - [sym_keyword_intersects] = ACTIONS(77), - [sym_keyword_flexible] = ACTIONS(77), - [sym_keyword_readonly] = ACTIONS(77), - [sym_keyword_type] = ACTIONS(77), - [sym_keyword_default] = ACTIONS(77), - [sym_keyword_assert] = ACTIONS(77), - [sym_keyword_permissions] = ACTIONS(77), - [sym_keyword_for] = ACTIONS(77), - [sym_keyword_comment] = ACTIONS(77), - [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_DASH_GT] = ACTIONS(261), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_LT_DASH] = ACTIONS(265), - [anon_sym_LT_DASH_GT] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_EQ] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_AT] = ACTIONS(79), - [anon_sym_LT_PIPE] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_QMARK_QMARK] = ACTIONS(77), - [anon_sym_QMARK_COLON] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_QMARK_EQ] = ACTIONS(77), - [anon_sym_STAR_EQ] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG_TILDE] = ACTIONS(77), - [anon_sym_STAR_TILDE] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_PLUS_EQ] = ACTIONS(77), - [anon_sym_DASH_EQ] = ACTIONS(77), - [anon_sym_u00d7] = ACTIONS(77), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_u00f7] = ACTIONS(77), - [anon_sym_STAR_STAR] = ACTIONS(77), - [anon_sym_u220b] = ACTIONS(77), - [anon_sym_u220c] = ACTIONS(77), - [anon_sym_u2287] = ACTIONS(77), - [anon_sym_u2283] = ACTIONS(77), - [anon_sym_u2285] = ACTIONS(77), - [anon_sym_u2208] = ACTIONS(77), - [anon_sym_u2209] = ACTIONS(77), - [anon_sym_u2286] = ACTIONS(77), - [anon_sym_u2282] = ACTIONS(77), - [anon_sym_u2284] = ACTIONS(77), - [anon_sym_AT_AT] = ACTIONS(77), - }, - [82] = { - [sym_filter] = STATE(55), - [sym_path_element] = STATE(90), - [sym_graph_path] = STATE(55), - [sym_subscript] = STATE(55), - [aux_sym_path_repeat1] = STATE(90), + [sym_filter] = STATE(58), + [sym_path_element] = STATE(85), + [sym_graph_path] = STATE(58), + [sym_subscript] = STATE(58), + [aux_sym_path_repeat1] = STATE(85), [ts_builtin_sym_end] = ACTIONS(93), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(93), @@ -24116,95 +23866,365 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(93), [anon_sym_AT_AT] = ACTIONS(93), }, + [80] = { + [ts_builtin_sym_end] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(221), + [sym_keyword_return] = ACTIONS(221), + [sym_keyword_value] = ACTIONS(221), + [sym_keyword_explain] = ACTIONS(221), + [sym_keyword_parallel] = ACTIONS(221), + [sym_keyword_timeout] = ACTIONS(221), + [sym_keyword_fetch] = ACTIONS(221), + [sym_keyword_limit] = ACTIONS(221), + [sym_keyword_rand] = ACTIONS(221), + [sym_keyword_collate] = ACTIONS(221), + [sym_keyword_numeric] = ACTIONS(221), + [sym_keyword_asc] = ACTIONS(221), + [sym_keyword_desc] = ACTIONS(221), + [sym_keyword_where] = ACTIONS(221), + [sym_keyword_and] = ACTIONS(221), + [sym_keyword_or] = ACTIONS(221), + [sym_keyword_is] = ACTIONS(221), + [sym_keyword_not] = ACTIONS(223), + [sym_keyword_contains] = ACTIONS(221), + [sym_keyword_contains_not] = ACTIONS(221), + [sym_keyword_contains_all] = ACTIONS(221), + [sym_keyword_contains_any] = ACTIONS(221), + [sym_keyword_contains_none] = ACTIONS(221), + [sym_keyword_inside] = ACTIONS(221), + [sym_keyword_in] = ACTIONS(223), + [sym_keyword_not_inside] = ACTIONS(221), + [sym_keyword_all_inside] = ACTIONS(221), + [sym_keyword_any_inside] = ACTIONS(221), + [sym_keyword_none_inside] = ACTIONS(221), + [sym_keyword_outside] = ACTIONS(221), + [sym_keyword_intersects] = ACTIONS(221), + [sym_keyword_flexible] = ACTIONS(221), + [sym_keyword_readonly] = ACTIONS(221), + [sym_keyword_content] = ACTIONS(221), + [sym_keyword_merge] = ACTIONS(221), + [sym_keyword_patch] = ACTIONS(221), + [sym_keyword_type] = ACTIONS(221), + [sym_keyword_default] = ACTIONS(221), + [sym_keyword_assert] = ACTIONS(221), + [sym_keyword_permissions] = ACTIONS(221), + [sym_keyword_for] = ACTIONS(221), + [sym_keyword_comment] = ACTIONS(221), + [sym_keyword_set] = ACTIONS(221), + [sym_keyword_unset] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_DASH_GT] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(223), + [anon_sym_GT] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_LT_PIPE] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_QMARK_QMARK] = ACTIONS(221), + [anon_sym_QMARK_COLON] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_QMARK_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(221), + [anon_sym_BANG_TILDE] = ACTIONS(221), + [anon_sym_STAR_TILDE] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_u00d7] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(223), + [anon_sym_u00f7] = ACTIONS(221), + [anon_sym_STAR_STAR] = ACTIONS(221), + [anon_sym_u220b] = ACTIONS(221), + [anon_sym_u220c] = ACTIONS(221), + [anon_sym_u2287] = ACTIONS(221), + [anon_sym_u2283] = ACTIONS(221), + [anon_sym_u2285] = ACTIONS(221), + [anon_sym_u2208] = ACTIONS(221), + [anon_sym_u2209] = ACTIONS(221), + [anon_sym_u2286] = ACTIONS(221), + [anon_sym_u2282] = ACTIONS(221), + [anon_sym_u2284] = ACTIONS(221), + [anon_sym_AT_AT] = ACTIONS(221), + }, + [81] = { + [ts_builtin_sym_end] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(241), + [sym_keyword_return] = ACTIONS(241), + [sym_keyword_value] = ACTIONS(241), + [sym_keyword_explain] = ACTIONS(241), + [sym_keyword_parallel] = ACTIONS(241), + [sym_keyword_timeout] = ACTIONS(241), + [sym_keyword_fetch] = ACTIONS(241), + [sym_keyword_limit] = ACTIONS(241), + [sym_keyword_rand] = ACTIONS(241), + [sym_keyword_collate] = ACTIONS(241), + [sym_keyword_numeric] = ACTIONS(241), + [sym_keyword_asc] = ACTIONS(241), + [sym_keyword_desc] = ACTIONS(241), + [sym_keyword_where] = ACTIONS(241), + [sym_keyword_and] = ACTIONS(241), + [sym_keyword_or] = ACTIONS(241), + [sym_keyword_is] = ACTIONS(241), + [sym_keyword_not] = ACTIONS(243), + [sym_keyword_contains] = ACTIONS(241), + [sym_keyword_contains_not] = ACTIONS(241), + [sym_keyword_contains_all] = ACTIONS(241), + [sym_keyword_contains_any] = ACTIONS(241), + [sym_keyword_contains_none] = ACTIONS(241), + [sym_keyword_inside] = ACTIONS(241), + [sym_keyword_in] = ACTIONS(243), + [sym_keyword_not_inside] = ACTIONS(241), + [sym_keyword_all_inside] = ACTIONS(241), + [sym_keyword_any_inside] = ACTIONS(241), + [sym_keyword_none_inside] = ACTIONS(241), + [sym_keyword_outside] = ACTIONS(241), + [sym_keyword_intersects] = ACTIONS(241), + [sym_keyword_flexible] = ACTIONS(241), + [sym_keyword_readonly] = ACTIONS(241), + [sym_keyword_content] = ACTIONS(241), + [sym_keyword_merge] = ACTIONS(241), + [sym_keyword_patch] = ACTIONS(241), + [sym_keyword_type] = ACTIONS(241), + [sym_keyword_default] = ACTIONS(241), + [sym_keyword_assert] = ACTIONS(241), + [sym_keyword_permissions] = ACTIONS(241), + [sym_keyword_for] = ACTIONS(241), + [sym_keyword_comment] = ACTIONS(241), + [sym_keyword_set] = ACTIONS(241), + [sym_keyword_unset] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_DASH_GT] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(243), + [anon_sym_LT_PIPE] = ACTIONS(241), + [anon_sym_AMP_AMP] = ACTIONS(241), + [anon_sym_PIPE_PIPE] = ACTIONS(241), + [anon_sym_QMARK_QMARK] = ACTIONS(241), + [anon_sym_QMARK_COLON] = ACTIONS(241), + [anon_sym_BANG_EQ] = ACTIONS(241), + [anon_sym_EQ_EQ] = ACTIONS(241), + [anon_sym_QMARK_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_BANG_TILDE] = ACTIONS(241), + [anon_sym_STAR_TILDE] = ACTIONS(241), + [anon_sym_LT_EQ] = ACTIONS(241), + [anon_sym_GT_EQ] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_u00d7] = ACTIONS(241), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_u00f7] = ACTIONS(241), + [anon_sym_STAR_STAR] = ACTIONS(241), + [anon_sym_u220b] = ACTIONS(241), + [anon_sym_u220c] = ACTIONS(241), + [anon_sym_u2287] = ACTIONS(241), + [anon_sym_u2283] = ACTIONS(241), + [anon_sym_u2285] = ACTIONS(241), + [anon_sym_u2208] = ACTIONS(241), + [anon_sym_u2209] = ACTIONS(241), + [anon_sym_u2286] = ACTIONS(241), + [anon_sym_u2282] = ACTIONS(241), + [anon_sym_u2284] = ACTIONS(241), + [anon_sym_AT_AT] = ACTIONS(241), + }, + [82] = { + [ts_builtin_sym_end] = ACTIONS(188), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(188), + [sym_keyword_return] = ACTIONS(188), + [sym_keyword_value] = ACTIONS(188), + [sym_keyword_explain] = ACTIONS(188), + [sym_keyword_parallel] = ACTIONS(188), + [sym_keyword_timeout] = ACTIONS(188), + [sym_keyword_fetch] = ACTIONS(188), + [sym_keyword_limit] = ACTIONS(188), + [sym_keyword_rand] = ACTIONS(188), + [sym_keyword_collate] = ACTIONS(188), + [sym_keyword_numeric] = ACTIONS(188), + [sym_keyword_asc] = ACTIONS(188), + [sym_keyword_desc] = ACTIONS(188), + [sym_keyword_where] = ACTIONS(188), + [sym_keyword_and] = ACTIONS(188), + [sym_keyword_or] = ACTIONS(188), + [sym_keyword_is] = ACTIONS(188), + [sym_keyword_not] = ACTIONS(190), + [sym_keyword_contains] = ACTIONS(188), + [sym_keyword_contains_not] = ACTIONS(188), + [sym_keyword_contains_all] = ACTIONS(188), + [sym_keyword_contains_any] = ACTIONS(188), + [sym_keyword_contains_none] = ACTIONS(188), + [sym_keyword_inside] = ACTIONS(188), + [sym_keyword_in] = ACTIONS(190), + [sym_keyword_not_inside] = ACTIONS(188), + [sym_keyword_all_inside] = ACTIONS(188), + [sym_keyword_any_inside] = ACTIONS(188), + [sym_keyword_none_inside] = ACTIONS(188), + [sym_keyword_outside] = ACTIONS(188), + [sym_keyword_intersects] = ACTIONS(188), + [sym_keyword_flexible] = ACTIONS(188), + [sym_keyword_readonly] = ACTIONS(188), + [sym_keyword_content] = ACTIONS(188), + [sym_keyword_merge] = ACTIONS(188), + [sym_keyword_patch] = ACTIONS(188), + [sym_keyword_type] = ACTIONS(188), + [sym_keyword_default] = ACTIONS(188), + [sym_keyword_assert] = ACTIONS(188), + [sym_keyword_permissions] = ACTIONS(188), + [sym_keyword_for] = ACTIONS(188), + [sym_keyword_comment] = ACTIONS(188), + [sym_keyword_set] = ACTIONS(188), + [sym_keyword_unset] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_DASH_GT] = ACTIONS(188), + [anon_sym_RPAREN] = ACTIONS(188), + [anon_sym_RBRACE] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_LT_PIPE] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_QMARK_QMARK] = ACTIONS(188), + [anon_sym_QMARK_COLON] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_QMARK_EQ] = ACTIONS(188), + [anon_sym_STAR_EQ] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_BANG_TILDE] = ACTIONS(188), + [anon_sym_STAR_TILDE] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_u00d7] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_u00f7] = ACTIONS(188), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_u220b] = ACTIONS(188), + [anon_sym_u220c] = ACTIONS(188), + [anon_sym_u2287] = ACTIONS(188), + [anon_sym_u2283] = ACTIONS(188), + [anon_sym_u2285] = ACTIONS(188), + [anon_sym_u2208] = ACTIONS(188), + [anon_sym_u2209] = ACTIONS(188), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), + }, [83] = { - [ts_builtin_sym_end] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(233), - [sym_keyword_return] = ACTIONS(233), - [sym_keyword_value] = ACTIONS(233), - [sym_keyword_explain] = ACTIONS(233), - [sym_keyword_parallel] = ACTIONS(233), - [sym_keyword_timeout] = ACTIONS(233), - [sym_keyword_fetch] = ACTIONS(233), - [sym_keyword_limit] = ACTIONS(233), - [sym_keyword_rand] = ACTIONS(233), - [sym_keyword_collate] = ACTIONS(233), - [sym_keyword_numeric] = ACTIONS(233), - [sym_keyword_asc] = ACTIONS(233), - [sym_keyword_desc] = ACTIONS(233), - [sym_keyword_where] = ACTIONS(233), - [sym_keyword_and] = ACTIONS(233), - [sym_keyword_or] = ACTIONS(233), - [sym_keyword_is] = ACTIONS(233), - [sym_keyword_not] = ACTIONS(235), - [sym_keyword_contains] = ACTIONS(233), - [sym_keyword_contains_not] = ACTIONS(233), - [sym_keyword_contains_all] = ACTIONS(233), - [sym_keyword_contains_any] = ACTIONS(233), - [sym_keyword_contains_none] = ACTIONS(233), - [sym_keyword_inside] = ACTIONS(233), - [sym_keyword_in] = ACTIONS(235), - [sym_keyword_not_inside] = ACTIONS(233), - [sym_keyword_all_inside] = ACTIONS(233), - [sym_keyword_any_inside] = ACTIONS(233), - [sym_keyword_none_inside] = ACTIONS(233), - [sym_keyword_outside] = ACTIONS(233), - [sym_keyword_intersects] = ACTIONS(233), - [sym_keyword_flexible] = ACTIONS(233), - [sym_keyword_readonly] = ACTIONS(233), - [sym_keyword_content] = ACTIONS(233), - [sym_keyword_merge] = ACTIONS(233), - [sym_keyword_patch] = ACTIONS(233), - [sym_keyword_type] = ACTIONS(233), - [sym_keyword_default] = ACTIONS(233), - [sym_keyword_assert] = ACTIONS(233), - [sym_keyword_permissions] = ACTIONS(233), - [sym_keyword_for] = ACTIONS(233), - [sym_keyword_comment] = ACTIONS(233), - [sym_keyword_set] = ACTIONS(233), - [sym_keyword_unset] = ACTIONS(233), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_DASH_GT] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(233), - [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(235), - [anon_sym_LT_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_QMARK_QMARK] = ACTIONS(233), - [anon_sym_QMARK_COLON] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_QMARK_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_TILDE] = ACTIONS(233), - [anon_sym_BANG_TILDE] = ACTIONS(233), - [anon_sym_STAR_TILDE] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_u00d7] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(235), - [anon_sym_u00f7] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_u220b] = ACTIONS(233), - [anon_sym_u220c] = ACTIONS(233), - [anon_sym_u2287] = ACTIONS(233), - [anon_sym_u2283] = ACTIONS(233), - [anon_sym_u2285] = ACTIONS(233), - [anon_sym_u2208] = ACTIONS(233), - [anon_sym_u2209] = ACTIONS(233), - [anon_sym_u2286] = ACTIONS(233), - [anon_sym_u2282] = ACTIONS(233), - [anon_sym_u2284] = ACTIONS(233), - [anon_sym_AT_AT] = ACTIONS(233), + [ts_builtin_sym_end] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(225), + [sym_keyword_return] = ACTIONS(225), + [sym_keyword_value] = ACTIONS(225), + [sym_keyword_explain] = ACTIONS(225), + [sym_keyword_parallel] = ACTIONS(225), + [sym_keyword_timeout] = ACTIONS(225), + [sym_keyword_fetch] = ACTIONS(225), + [sym_keyword_limit] = ACTIONS(225), + [sym_keyword_rand] = ACTIONS(225), + [sym_keyword_collate] = ACTIONS(225), + [sym_keyword_numeric] = ACTIONS(225), + [sym_keyword_asc] = ACTIONS(225), + [sym_keyword_desc] = ACTIONS(225), + [sym_keyword_where] = ACTIONS(225), + [sym_keyword_and] = ACTIONS(225), + [sym_keyword_or] = ACTIONS(225), + [sym_keyword_is] = ACTIONS(225), + [sym_keyword_not] = ACTIONS(227), + [sym_keyword_contains] = ACTIONS(225), + [sym_keyword_contains_not] = ACTIONS(225), + [sym_keyword_contains_all] = ACTIONS(225), + [sym_keyword_contains_any] = ACTIONS(225), + [sym_keyword_contains_none] = ACTIONS(225), + [sym_keyword_inside] = ACTIONS(225), + [sym_keyword_in] = ACTIONS(227), + [sym_keyword_not_inside] = ACTIONS(225), + [sym_keyword_all_inside] = ACTIONS(225), + [sym_keyword_any_inside] = ACTIONS(225), + [sym_keyword_none_inside] = ACTIONS(225), + [sym_keyword_outside] = ACTIONS(225), + [sym_keyword_intersects] = ACTIONS(225), + [sym_keyword_flexible] = ACTIONS(225), + [sym_keyword_readonly] = ACTIONS(225), + [sym_keyword_content] = ACTIONS(225), + [sym_keyword_merge] = ACTIONS(225), + [sym_keyword_patch] = ACTIONS(225), + [sym_keyword_type] = ACTIONS(225), + [sym_keyword_default] = ACTIONS(225), + [sym_keyword_assert] = ACTIONS(225), + [sym_keyword_permissions] = ACTIONS(225), + [sym_keyword_for] = ACTIONS(225), + [sym_keyword_comment] = ACTIONS(225), + [sym_keyword_set] = ACTIONS(225), + [sym_keyword_unset] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_DASH_GT] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_AT] = ACTIONS(227), + [anon_sym_LT_PIPE] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_QMARK_QMARK] = ACTIONS(225), + [anon_sym_QMARK_COLON] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [anon_sym_QMARK_EQ] = ACTIONS(225), + [anon_sym_STAR_EQ] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_BANG_TILDE] = ACTIONS(225), + [anon_sym_STAR_TILDE] = ACTIONS(225), + [anon_sym_LT_EQ] = ACTIONS(225), + [anon_sym_GT_EQ] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_PLUS_EQ] = ACTIONS(225), + [anon_sym_DASH_EQ] = ACTIONS(225), + [anon_sym_u00d7] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_u00f7] = ACTIONS(225), + [anon_sym_STAR_STAR] = ACTIONS(225), + [anon_sym_u220b] = ACTIONS(225), + [anon_sym_u220c] = ACTIONS(225), + [anon_sym_u2287] = ACTIONS(225), + [anon_sym_u2283] = ACTIONS(225), + [anon_sym_u2285] = ACTIONS(225), + [anon_sym_u2208] = ACTIONS(225), + [anon_sym_u2209] = ACTIONS(225), + [anon_sym_u2286] = ACTIONS(225), + [anon_sym_u2282] = ACTIONS(225), + [anon_sym_u2284] = ACTIONS(225), + [anon_sym_AT_AT] = ACTIONS(225), }, [84] = { [ts_builtin_sym_end] = ACTIONS(148), @@ -24297,96 +24317,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(148), }, [85] = { - [ts_builtin_sym_end] = ACTIONS(180), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_return] = ACTIONS(180), - [sym_keyword_value] = ACTIONS(180), - [sym_keyword_explain] = ACTIONS(180), - [sym_keyword_parallel] = ACTIONS(180), - [sym_keyword_timeout] = ACTIONS(180), - [sym_keyword_fetch] = ACTIONS(180), - [sym_keyword_limit] = ACTIONS(180), - [sym_keyword_rand] = ACTIONS(180), - [sym_keyword_collate] = ACTIONS(180), - [sym_keyword_numeric] = ACTIONS(180), - [sym_keyword_asc] = ACTIONS(180), - [sym_keyword_desc] = ACTIONS(180), - [sym_keyword_where] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(180), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [sym_keyword_flexible] = ACTIONS(180), - [sym_keyword_readonly] = ACTIONS(180), - [sym_keyword_content] = ACTIONS(180), - [sym_keyword_merge] = ACTIONS(180), - [sym_keyword_patch] = ACTIONS(180), - [sym_keyword_type] = ACTIONS(180), - [sym_keyword_default] = ACTIONS(180), - [sym_keyword_assert] = ACTIONS(180), - [sym_keyword_permissions] = ACTIONS(180), - [sym_keyword_for] = ACTIONS(180), - [sym_keyword_comment] = ACTIONS(180), - [sym_keyword_set] = ACTIONS(180), - [sym_keyword_unset] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_DASH_GT] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), + [sym_filter] = STATE(58), + [sym_path_element] = STATE(88), + [sym_graph_path] = STATE(58), + [sym_subscript] = STATE(58), + [aux_sym_path_repeat1] = STATE(88), + [ts_builtin_sym_end] = ACTIONS(73), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(73), + [sym_keyword_value] = ACTIONS(73), + [sym_keyword_explain] = ACTIONS(73), + [sym_keyword_parallel] = ACTIONS(73), + [sym_keyword_timeout] = ACTIONS(73), + [sym_keyword_fetch] = ACTIONS(73), + [sym_keyword_limit] = ACTIONS(73), + [sym_keyword_rand] = ACTIONS(73), + [sym_keyword_collate] = ACTIONS(73), + [sym_keyword_numeric] = ACTIONS(73), + [sym_keyword_asc] = ACTIONS(73), + [sym_keyword_desc] = ACTIONS(73), + [sym_keyword_and] = ACTIONS(73), + [sym_keyword_or] = ACTIONS(73), + [sym_keyword_is] = ACTIONS(73), + [sym_keyword_not] = ACTIONS(75), + [sym_keyword_contains] = ACTIONS(73), + [sym_keyword_contains_not] = ACTIONS(73), + [sym_keyword_contains_all] = ACTIONS(73), + [sym_keyword_contains_any] = ACTIONS(73), + [sym_keyword_contains_none] = ACTIONS(73), + [sym_keyword_inside] = ACTIONS(73), + [sym_keyword_in] = ACTIONS(75), + [sym_keyword_not_inside] = ACTIONS(73), + [sym_keyword_all_inside] = ACTIONS(73), + [sym_keyword_any_inside] = ACTIONS(73), + [sym_keyword_none_inside] = ACTIONS(73), + [sym_keyword_outside] = ACTIONS(73), + [sym_keyword_intersects] = ACTIONS(73), + [sym_keyword_flexible] = ACTIONS(73), + [sym_keyword_readonly] = ACTIONS(73), + [sym_keyword_type] = ACTIONS(73), + [sym_keyword_default] = ACTIONS(73), + [sym_keyword_assert] = ACTIONS(73), + [sym_keyword_permissions] = ACTIONS(73), + [sym_keyword_for] = ACTIONS(73), + [sym_keyword_comment] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(73), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(263), + [anon_sym_LT_DASH] = ACTIONS(265), + [anon_sym_LT_DASH_GT] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_AT] = ACTIONS(75), + [anon_sym_LT_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(73), + [anon_sym_PIPE_PIPE] = ACTIONS(73), + [anon_sym_QMARK_QMARK] = ACTIONS(73), + [anon_sym_QMARK_COLON] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_QMARK_EQ] = ACTIONS(73), + [anon_sym_STAR_EQ] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(73), + [anon_sym_BANG_TILDE] = ACTIONS(73), + [anon_sym_STAR_TILDE] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(73), + [anon_sym_DASH_EQ] = ACTIONS(73), + [anon_sym_u00d7] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_u00f7] = ACTIONS(73), + [anon_sym_STAR_STAR] = ACTIONS(73), + [anon_sym_u220b] = ACTIONS(73), + [anon_sym_u220c] = ACTIONS(73), + [anon_sym_u2287] = ACTIONS(73), + [anon_sym_u2283] = ACTIONS(73), + [anon_sym_u2285] = ACTIONS(73), + [anon_sym_u2208] = ACTIONS(73), + [anon_sym_u2209] = ACTIONS(73), + [anon_sym_u2286] = ACTIONS(73), + [anon_sym_u2282] = ACTIONS(73), + [anon_sym_u2284] = ACTIONS(73), + [anon_sym_AT_AT] = ACTIONS(73), }, [86] = { + [ts_builtin_sym_end] = ACTIONS(168), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(168), + [sym_keyword_return] = ACTIONS(168), + [sym_keyword_value] = ACTIONS(168), + [sym_keyword_explain] = ACTIONS(168), + [sym_keyword_parallel] = ACTIONS(168), + [sym_keyword_timeout] = ACTIONS(168), + [sym_keyword_fetch] = ACTIONS(168), + [sym_keyword_limit] = ACTIONS(168), + [sym_keyword_rand] = ACTIONS(168), + [sym_keyword_collate] = ACTIONS(168), + [sym_keyword_numeric] = ACTIONS(168), + [sym_keyword_asc] = ACTIONS(168), + [sym_keyword_desc] = ACTIONS(168), + [sym_keyword_where] = ACTIONS(168), + [sym_keyword_and] = ACTIONS(168), + [sym_keyword_or] = ACTIONS(168), + [sym_keyword_is] = ACTIONS(168), + [sym_keyword_not] = ACTIONS(170), + [sym_keyword_contains] = ACTIONS(168), + [sym_keyword_contains_not] = ACTIONS(168), + [sym_keyword_contains_all] = ACTIONS(168), + [sym_keyword_contains_any] = ACTIONS(168), + [sym_keyword_contains_none] = ACTIONS(168), + [sym_keyword_inside] = ACTIONS(168), + [sym_keyword_in] = ACTIONS(170), + [sym_keyword_not_inside] = ACTIONS(168), + [sym_keyword_all_inside] = ACTIONS(168), + [sym_keyword_any_inside] = ACTIONS(168), + [sym_keyword_none_inside] = ACTIONS(168), + [sym_keyword_outside] = ACTIONS(168), + [sym_keyword_intersects] = ACTIONS(168), + [sym_keyword_flexible] = ACTIONS(168), + [sym_keyword_readonly] = ACTIONS(168), + [sym_keyword_content] = ACTIONS(168), + [sym_keyword_merge] = ACTIONS(168), + [sym_keyword_patch] = ACTIONS(168), + [sym_keyword_type] = ACTIONS(168), + [sym_keyword_default] = ACTIONS(168), + [sym_keyword_assert] = ACTIONS(168), + [sym_keyword_permissions] = ACTIONS(168), + [sym_keyword_for] = ACTIONS(168), + [sym_keyword_comment] = ACTIONS(168), + [sym_keyword_set] = ACTIONS(168), + [sym_keyword_unset] = ACTIONS(168), + [anon_sym_COMMA] = ACTIONS(168), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(170), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_GT] = ACTIONS(170), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(170), + [anon_sym_LT_PIPE] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(168), + [anon_sym_QMARK_QMARK] = ACTIONS(168), + [anon_sym_QMARK_COLON] = ACTIONS(168), + [anon_sym_BANG_EQ] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(168), + [anon_sym_QMARK_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_BANG_TILDE] = ACTIONS(168), + [anon_sym_STAR_TILDE] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(168), + [anon_sym_GT_EQ] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_u00d7] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_u00f7] = ACTIONS(168), + [anon_sym_STAR_STAR] = ACTIONS(168), + [anon_sym_u220b] = ACTIONS(168), + [anon_sym_u220c] = ACTIONS(168), + [anon_sym_u2287] = ACTIONS(168), + [anon_sym_u2283] = ACTIONS(168), + [anon_sym_u2285] = ACTIONS(168), + [anon_sym_u2208] = ACTIONS(168), + [anon_sym_u2209] = ACTIONS(168), + [anon_sym_u2286] = ACTIONS(168), + [anon_sym_u2282] = ACTIONS(168), + [anon_sym_u2284] = ACTIONS(168), + [anon_sym_AT_AT] = ACTIONS(168), + }, + [87] = { [ts_builtin_sym_end] = ACTIONS(257), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(257), @@ -24476,282 +24586,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(257), [anon_sym_AT_AT] = ACTIONS(257), }, - [87] = { - [ts_builtin_sym_end] = ACTIONS(156), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(156), - [sym_keyword_return] = ACTIONS(156), - [sym_keyword_value] = ACTIONS(156), - [sym_keyword_explain] = ACTIONS(156), - [sym_keyword_parallel] = ACTIONS(156), - [sym_keyword_timeout] = ACTIONS(156), - [sym_keyword_fetch] = ACTIONS(156), - [sym_keyword_limit] = ACTIONS(156), - [sym_keyword_rand] = ACTIONS(156), - [sym_keyword_collate] = ACTIONS(156), - [sym_keyword_numeric] = ACTIONS(156), - [sym_keyword_asc] = ACTIONS(156), - [sym_keyword_desc] = ACTIONS(156), - [sym_keyword_where] = ACTIONS(156), - [sym_keyword_and] = ACTIONS(156), - [sym_keyword_or] = ACTIONS(156), - [sym_keyword_is] = ACTIONS(156), - [sym_keyword_not] = ACTIONS(158), - [sym_keyword_contains] = ACTIONS(156), - [sym_keyword_contains_not] = ACTIONS(156), - [sym_keyword_contains_all] = ACTIONS(156), - [sym_keyword_contains_any] = ACTIONS(156), - [sym_keyword_contains_none] = ACTIONS(156), - [sym_keyword_inside] = ACTIONS(156), - [sym_keyword_in] = ACTIONS(158), - [sym_keyword_not_inside] = ACTIONS(156), - [sym_keyword_all_inside] = ACTIONS(156), - [sym_keyword_any_inside] = ACTIONS(156), - [sym_keyword_none_inside] = ACTIONS(156), - [sym_keyword_outside] = ACTIONS(156), - [sym_keyword_intersects] = ACTIONS(156), - [sym_keyword_flexible] = ACTIONS(156), - [sym_keyword_readonly] = ACTIONS(156), - [sym_keyword_content] = ACTIONS(156), - [sym_keyword_merge] = ACTIONS(156), - [sym_keyword_patch] = ACTIONS(156), - [sym_keyword_type] = ACTIONS(156), - [sym_keyword_default] = ACTIONS(156), - [sym_keyword_assert] = ACTIONS(156), - [sym_keyword_permissions] = ACTIONS(156), - [sym_keyword_for] = ACTIONS(156), - [sym_keyword_comment] = ACTIONS(156), - [sym_keyword_set] = ACTIONS(156), - [sym_keyword_unset] = ACTIONS(156), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_DASH_GT] = ACTIONS(156), - [anon_sym_RPAREN] = ACTIONS(156), - [anon_sym_RBRACE] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(158), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(158), - [anon_sym_LT_PIPE] = ACTIONS(156), - [anon_sym_AMP_AMP] = ACTIONS(156), - [anon_sym_PIPE_PIPE] = ACTIONS(156), - [anon_sym_QMARK_QMARK] = ACTIONS(156), - [anon_sym_QMARK_COLON] = ACTIONS(156), - [anon_sym_BANG_EQ] = ACTIONS(156), - [anon_sym_EQ_EQ] = ACTIONS(156), - [anon_sym_QMARK_EQ] = ACTIONS(156), - [anon_sym_STAR_EQ] = ACTIONS(156), - [anon_sym_TILDE] = ACTIONS(156), - [anon_sym_BANG_TILDE] = ACTIONS(156), - [anon_sym_STAR_TILDE] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(156), - [anon_sym_DASH_EQ] = ACTIONS(156), - [anon_sym_u00d7] = ACTIONS(156), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_u00f7] = ACTIONS(156), - [anon_sym_STAR_STAR] = ACTIONS(156), - [anon_sym_u220b] = ACTIONS(156), - [anon_sym_u220c] = ACTIONS(156), - [anon_sym_u2287] = ACTIONS(156), - [anon_sym_u2283] = ACTIONS(156), - [anon_sym_u2285] = ACTIONS(156), - [anon_sym_u2208] = ACTIONS(156), - [anon_sym_u2209] = ACTIONS(156), - [anon_sym_u2286] = ACTIONS(156), - [anon_sym_u2282] = ACTIONS(156), - [anon_sym_u2284] = ACTIONS(156), - [anon_sym_AT_AT] = ACTIONS(156), - }, [88] = { - [ts_builtin_sym_end] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(237), - [sym_keyword_return] = ACTIONS(237), - [sym_keyword_value] = ACTIONS(237), - [sym_keyword_explain] = ACTIONS(237), - [sym_keyword_parallel] = ACTIONS(237), - [sym_keyword_timeout] = ACTIONS(237), - [sym_keyword_fetch] = ACTIONS(237), - [sym_keyword_limit] = ACTIONS(237), - [sym_keyword_rand] = ACTIONS(237), - [sym_keyword_collate] = ACTIONS(237), - [sym_keyword_numeric] = ACTIONS(237), - [sym_keyword_asc] = ACTIONS(237), - [sym_keyword_desc] = ACTIONS(237), - [sym_keyword_where] = ACTIONS(237), - [sym_keyword_and] = ACTIONS(237), - [sym_keyword_or] = ACTIONS(237), - [sym_keyword_is] = ACTIONS(237), - [sym_keyword_not] = ACTIONS(239), - [sym_keyword_contains] = ACTIONS(237), - [sym_keyword_contains_not] = ACTIONS(237), - [sym_keyword_contains_all] = ACTIONS(237), - [sym_keyword_contains_any] = ACTIONS(237), - [sym_keyword_contains_none] = ACTIONS(237), - [sym_keyword_inside] = ACTIONS(237), - [sym_keyword_in] = ACTIONS(239), - [sym_keyword_not_inside] = ACTIONS(237), - [sym_keyword_all_inside] = ACTIONS(237), - [sym_keyword_any_inside] = ACTIONS(237), - [sym_keyword_none_inside] = ACTIONS(237), - [sym_keyword_outside] = ACTIONS(237), - [sym_keyword_intersects] = ACTIONS(237), - [sym_keyword_flexible] = ACTIONS(237), - [sym_keyword_readonly] = ACTIONS(237), - [sym_keyword_content] = ACTIONS(237), - [sym_keyword_merge] = ACTIONS(237), - [sym_keyword_patch] = ACTIONS(237), - [sym_keyword_type] = ACTIONS(237), - [sym_keyword_default] = ACTIONS(237), - [sym_keyword_assert] = ACTIONS(237), - [sym_keyword_permissions] = ACTIONS(237), - [sym_keyword_for] = ACTIONS(237), - [sym_keyword_comment] = ACTIONS(237), - [sym_keyword_set] = ACTIONS(237), - [sym_keyword_unset] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_DASH_GT] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_LT_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_QMARK_QMARK] = ACTIONS(237), - [anon_sym_QMARK_COLON] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_QMARK_EQ] = ACTIONS(237), - [anon_sym_STAR_EQ] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG_TILDE] = ACTIONS(237), - [anon_sym_STAR_TILDE] = ACTIONS(237), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(237), - [anon_sym_DASH_EQ] = ACTIONS(237), - [anon_sym_u00d7] = ACTIONS(237), - [anon_sym_SLASH] = ACTIONS(239), - [anon_sym_u00f7] = ACTIONS(237), - [anon_sym_STAR_STAR] = ACTIONS(237), - [anon_sym_u220b] = ACTIONS(237), - [anon_sym_u220c] = ACTIONS(237), - [anon_sym_u2287] = ACTIONS(237), - [anon_sym_u2283] = ACTIONS(237), - [anon_sym_u2285] = ACTIONS(237), - [anon_sym_u2208] = ACTIONS(237), - [anon_sym_u2209] = ACTIONS(237), - [anon_sym_u2286] = ACTIONS(237), - [anon_sym_u2282] = ACTIONS(237), - [anon_sym_u2284] = ACTIONS(237), - [anon_sym_AT_AT] = ACTIONS(237), + [sym_filter] = STATE(58), + [sym_path_element] = STATE(88), + [sym_graph_path] = STATE(58), + [sym_subscript] = STATE(58), + [aux_sym_path_repeat1] = STATE(88), + [ts_builtin_sym_end] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(77), + [sym_keyword_value] = ACTIONS(77), + [sym_keyword_explain] = ACTIONS(77), + [sym_keyword_parallel] = ACTIONS(77), + [sym_keyword_timeout] = ACTIONS(77), + [sym_keyword_fetch] = ACTIONS(77), + [sym_keyword_limit] = ACTIONS(77), + [sym_keyword_rand] = ACTIONS(77), + [sym_keyword_collate] = ACTIONS(77), + [sym_keyword_numeric] = ACTIONS(77), + [sym_keyword_asc] = ACTIONS(77), + [sym_keyword_desc] = ACTIONS(77), + [sym_keyword_and] = ACTIONS(77), + [sym_keyword_or] = ACTIONS(77), + [sym_keyword_is] = ACTIONS(77), + [sym_keyword_not] = ACTIONS(79), + [sym_keyword_contains] = ACTIONS(77), + [sym_keyword_contains_not] = ACTIONS(77), + [sym_keyword_contains_all] = ACTIONS(77), + [sym_keyword_contains_any] = ACTIONS(77), + [sym_keyword_contains_none] = ACTIONS(77), + [sym_keyword_inside] = ACTIONS(77), + [sym_keyword_in] = ACTIONS(79), + [sym_keyword_not_inside] = ACTIONS(77), + [sym_keyword_all_inside] = ACTIONS(77), + [sym_keyword_any_inside] = ACTIONS(77), + [sym_keyword_none_inside] = ACTIONS(77), + [sym_keyword_outside] = ACTIONS(77), + [sym_keyword_intersects] = ACTIONS(77), + [sym_keyword_flexible] = ACTIONS(77), + [sym_keyword_readonly] = ACTIONS(77), + [sym_keyword_type] = ACTIONS(77), + [sym_keyword_default] = ACTIONS(77), + [sym_keyword_assert] = ACTIONS(77), + [sym_keyword_permissions] = ACTIONS(77), + [sym_keyword_for] = ACTIONS(77), + [sym_keyword_comment] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(77), + [anon_sym_DASH_GT] = ACTIONS(269), + [anon_sym_LBRACK] = ACTIONS(272), + [anon_sym_LT_DASH] = ACTIONS(275), + [anon_sym_LT_DASH_GT] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(278), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_LT_PIPE] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_QMARK_QMARK] = ACTIONS(77), + [anon_sym_QMARK_COLON] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_QMARK_EQ] = ACTIONS(77), + [anon_sym_STAR_EQ] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG_TILDE] = ACTIONS(77), + [anon_sym_STAR_TILDE] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_PLUS_EQ] = ACTIONS(77), + [anon_sym_DASH_EQ] = ACTIONS(77), + [anon_sym_u00d7] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_u00f7] = ACTIONS(77), + [anon_sym_STAR_STAR] = ACTIONS(77), + [anon_sym_u220b] = ACTIONS(77), + [anon_sym_u220c] = ACTIONS(77), + [anon_sym_u2287] = ACTIONS(77), + [anon_sym_u2283] = ACTIONS(77), + [anon_sym_u2285] = ACTIONS(77), + [anon_sym_u2208] = ACTIONS(77), + [anon_sym_u2209] = ACTIONS(77), + [anon_sym_u2286] = ACTIONS(77), + [anon_sym_u2282] = ACTIONS(77), + [anon_sym_u2284] = ACTIONS(77), + [anon_sym_AT_AT] = ACTIONS(77), }, [89] = { - [sym_filter] = STATE(55), - [sym_path_element] = STATE(82), - [sym_graph_path] = STATE(55), - [sym_subscript] = STATE(55), - [aux_sym_path_repeat1] = STATE(82), - [ts_builtin_sym_end] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(89), - [sym_keyword_value] = ACTIONS(89), - [sym_keyword_explain] = ACTIONS(89), - [sym_keyword_parallel] = ACTIONS(89), - [sym_keyword_timeout] = ACTIONS(89), - [sym_keyword_fetch] = ACTIONS(89), - [sym_keyword_limit] = ACTIONS(89), - [sym_keyword_rand] = ACTIONS(89), - [sym_keyword_collate] = ACTIONS(89), - [sym_keyword_numeric] = ACTIONS(89), - [sym_keyword_asc] = ACTIONS(89), - [sym_keyword_desc] = ACTIONS(89), - [sym_keyword_and] = ACTIONS(89), - [sym_keyword_or] = ACTIONS(89), - [sym_keyword_is] = ACTIONS(89), - [sym_keyword_not] = ACTIONS(91), - [sym_keyword_contains] = ACTIONS(89), - [sym_keyword_contains_not] = ACTIONS(89), - [sym_keyword_contains_all] = ACTIONS(89), - [sym_keyword_contains_any] = ACTIONS(89), - [sym_keyword_contains_none] = ACTIONS(89), - [sym_keyword_inside] = ACTIONS(89), - [sym_keyword_in] = ACTIONS(91), - [sym_keyword_not_inside] = ACTIONS(89), - [sym_keyword_all_inside] = ACTIONS(89), - [sym_keyword_any_inside] = ACTIONS(89), - [sym_keyword_none_inside] = ACTIONS(89), - [sym_keyword_outside] = ACTIONS(89), - [sym_keyword_intersects] = ACTIONS(89), - [sym_keyword_flexible] = ACTIONS(89), - [sym_keyword_readonly] = ACTIONS(89), - [sym_keyword_type] = ACTIONS(89), - [sym_keyword_default] = ACTIONS(89), - [sym_keyword_assert] = ACTIONS(89), - [sym_keyword_permissions] = ACTIONS(89), - [sym_keyword_for] = ACTIONS(89), - [sym_keyword_comment] = ACTIONS(89), - [anon_sym_COMMA] = ACTIONS(89), - [anon_sym_DASH_GT] = ACTIONS(261), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_LT_DASH] = ACTIONS(265), - [anon_sym_LT_DASH_GT] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(91), - [anon_sym_GT] = ACTIONS(91), - [anon_sym_EQ] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_LT_PIPE] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(89), - [anon_sym_QMARK_QMARK] = ACTIONS(89), - [anon_sym_QMARK_COLON] = ACTIONS(89), - [anon_sym_BANG_EQ] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_QMARK_EQ] = ACTIONS(89), - [anon_sym_STAR_EQ] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_BANG_TILDE] = ACTIONS(89), - [anon_sym_STAR_TILDE] = ACTIONS(89), - [anon_sym_LT_EQ] = ACTIONS(89), - [anon_sym_GT_EQ] = ACTIONS(89), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_PLUS_EQ] = ACTIONS(89), - [anon_sym_DASH_EQ] = ACTIONS(89), - [anon_sym_u00d7] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(91), - [anon_sym_u00f7] = ACTIONS(89), - [anon_sym_STAR_STAR] = ACTIONS(89), - [anon_sym_u220b] = ACTIONS(89), - [anon_sym_u220c] = ACTIONS(89), - [anon_sym_u2287] = ACTIONS(89), - [anon_sym_u2283] = ACTIONS(89), - [anon_sym_u2285] = ACTIONS(89), - [anon_sym_u2208] = ACTIONS(89), - [anon_sym_u2209] = ACTIONS(89), - [anon_sym_u2286] = ACTIONS(89), - [anon_sym_u2282] = ACTIONS(89), - [anon_sym_u2284] = ACTIONS(89), - [anon_sym_AT_AT] = ACTIONS(89), + [ts_builtin_sym_end] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(229), + [sym_keyword_return] = ACTIONS(229), + [sym_keyword_value] = ACTIONS(229), + [sym_keyword_explain] = ACTIONS(229), + [sym_keyword_parallel] = ACTIONS(229), + [sym_keyword_timeout] = ACTIONS(229), + [sym_keyword_fetch] = ACTIONS(229), + [sym_keyword_limit] = ACTIONS(229), + [sym_keyword_rand] = ACTIONS(229), + [sym_keyword_collate] = ACTIONS(229), + [sym_keyword_numeric] = ACTIONS(229), + [sym_keyword_asc] = ACTIONS(229), + [sym_keyword_desc] = ACTIONS(229), + [sym_keyword_where] = ACTIONS(229), + [sym_keyword_and] = ACTIONS(229), + [sym_keyword_or] = ACTIONS(229), + [sym_keyword_is] = ACTIONS(229), + [sym_keyword_not] = ACTIONS(231), + [sym_keyword_contains] = ACTIONS(229), + [sym_keyword_contains_not] = ACTIONS(229), + [sym_keyword_contains_all] = ACTIONS(229), + [sym_keyword_contains_any] = ACTIONS(229), + [sym_keyword_contains_none] = ACTIONS(229), + [sym_keyword_inside] = ACTIONS(229), + [sym_keyword_in] = ACTIONS(231), + [sym_keyword_not_inside] = ACTIONS(229), + [sym_keyword_all_inside] = ACTIONS(229), + [sym_keyword_any_inside] = ACTIONS(229), + [sym_keyword_none_inside] = ACTIONS(229), + [sym_keyword_outside] = ACTIONS(229), + [sym_keyword_intersects] = ACTIONS(229), + [sym_keyword_flexible] = ACTIONS(229), + [sym_keyword_readonly] = ACTIONS(229), + [sym_keyword_content] = ACTIONS(229), + [sym_keyword_merge] = ACTIONS(229), + [sym_keyword_patch] = ACTIONS(229), + [sym_keyword_type] = ACTIONS(229), + [sym_keyword_default] = ACTIONS(229), + [sym_keyword_assert] = ACTIONS(229), + [sym_keyword_permissions] = ACTIONS(229), + [sym_keyword_for] = ACTIONS(229), + [sym_keyword_comment] = ACTIONS(229), + [sym_keyword_set] = ACTIONS(229), + [sym_keyword_unset] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_DASH_GT] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_PIPE] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_QMARK_QMARK] = ACTIONS(229), + [anon_sym_QMARK_COLON] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(229), + [anon_sym_EQ_EQ] = ACTIONS(229), + [anon_sym_QMARK_EQ] = ACTIONS(229), + [anon_sym_STAR_EQ] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(229), + [anon_sym_BANG_TILDE] = ACTIONS(229), + [anon_sym_STAR_TILDE] = ACTIONS(229), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_GT_EQ] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_PLUS_EQ] = ACTIONS(229), + [anon_sym_DASH_EQ] = ACTIONS(229), + [anon_sym_u00d7] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_u00f7] = ACTIONS(229), + [anon_sym_STAR_STAR] = ACTIONS(229), + [anon_sym_u220b] = ACTIONS(229), + [anon_sym_u220c] = ACTIONS(229), + [anon_sym_u2287] = ACTIONS(229), + [anon_sym_u2283] = ACTIONS(229), + [anon_sym_u2285] = ACTIONS(229), + [anon_sym_u2208] = ACTIONS(229), + [anon_sym_u2209] = ACTIONS(229), + [anon_sym_u2286] = ACTIONS(229), + [anon_sym_u2282] = ACTIONS(229), + [anon_sym_u2284] = ACTIONS(229), + [anon_sym_AT_AT] = ACTIONS(229), }, [90] = { - [sym_filter] = STATE(55), - [sym_path_element] = STATE(90), - [sym_graph_path] = STATE(55), - [sym_subscript] = STATE(55), - [aux_sym_path_repeat1] = STATE(90), + [sym_filter] = STATE(58), + [sym_path_element] = STATE(85), + [sym_graph_path] = STATE(58), + [sym_subscript] = STATE(58), + [aux_sym_path_repeat1] = STATE(85), [ts_builtin_sym_end] = ACTIONS(61), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(61), @@ -24792,12 +24812,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_for] = ACTIONS(61), [sym_keyword_comment] = ACTIONS(61), [anon_sym_COMMA] = ACTIONS(61), - [anon_sym_DASH_GT] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LT_DASH] = ACTIONS(275), - [anon_sym_LT_DASH_GT] = ACTIONS(269), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(263), + [anon_sym_LT_DASH] = ACTIONS(265), + [anon_sym_LT_DASH_GT] = ACTIONS(261), [anon_sym_STAR] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(278), + [anon_sym_DOT] = ACTIONS(267), [anon_sym_LT] = ACTIONS(63), [anon_sym_GT] = ACTIONS(63), [anon_sym_EQ] = ACTIONS(63), @@ -24837,94 +24857,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(61), }, [91] = { - [aux_sym_duration_repeat1] = STATE(91), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(103), - [sym_keyword_value] = ACTIONS(103), - [sym_keyword_explain] = ACTIONS(103), - [sym_keyword_parallel] = ACTIONS(103), - [sym_keyword_timeout] = ACTIONS(103), - [sym_keyword_fetch] = ACTIONS(103), - [sym_keyword_limit] = ACTIONS(103), - [sym_keyword_rand] = ACTIONS(103), - [sym_keyword_collate] = ACTIONS(103), - [sym_keyword_numeric] = ACTIONS(103), - [sym_keyword_asc] = ACTIONS(103), - [sym_keyword_desc] = ACTIONS(103), - [sym_keyword_and] = ACTIONS(103), - [sym_keyword_or] = ACTIONS(103), - [sym_keyword_is] = ACTIONS(103), - [sym_keyword_not] = ACTIONS(105), - [sym_keyword_contains] = ACTIONS(103), - [sym_keyword_contains_not] = ACTIONS(103), - [sym_keyword_contains_all] = ACTIONS(103), - [sym_keyword_contains_any] = ACTIONS(103), - [sym_keyword_contains_none] = ACTIONS(103), - [sym_keyword_inside] = ACTIONS(103), - [sym_keyword_in] = ACTIONS(105), - [sym_keyword_not_inside] = ACTIONS(103), - [sym_keyword_all_inside] = ACTIONS(103), - [sym_keyword_any_inside] = ACTIONS(103), - [sym_keyword_none_inside] = ACTIONS(103), - [sym_keyword_outside] = ACTIONS(103), - [sym_keyword_intersects] = ACTIONS(103), - [sym_keyword_flexible] = ACTIONS(103), - [sym_keyword_readonly] = ACTIONS(103), - [sym_keyword_type] = ACTIONS(103), - [sym_keyword_default] = ACTIONS(103), - [sym_keyword_assert] = ACTIONS(103), - [sym_keyword_permissions] = ACTIONS(103), - [sym_keyword_for] = ACTIONS(103), - [sym_keyword_comment] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_DASH_GT] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(105), - [anon_sym_LT_DASH_GT] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_EQ] = ACTIONS(105), - [sym_duration_part] = ACTIONS(281), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_AT] = ACTIONS(105), - [anon_sym_LT_PIPE] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_PIPE_PIPE] = ACTIONS(103), - [anon_sym_QMARK_QMARK] = ACTIONS(103), - [anon_sym_QMARK_COLON] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_QMARK_EQ] = ACTIONS(103), - [anon_sym_STAR_EQ] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_STAR_TILDE] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_PLUS_EQ] = ACTIONS(103), - [anon_sym_DASH_EQ] = ACTIONS(103), - [anon_sym_u00d7] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(105), - [anon_sym_u00f7] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_u220b] = ACTIONS(103), - [anon_sym_u220c] = ACTIONS(103), - [anon_sym_u2287] = ACTIONS(103), - [anon_sym_u2283] = ACTIONS(103), - [anon_sym_u2285] = ACTIONS(103), - [anon_sym_u2208] = ACTIONS(103), - [anon_sym_u2209] = ACTIONS(103), - [anon_sym_u2286] = ACTIONS(103), - [anon_sym_u2282] = ACTIONS(103), - [anon_sym_u2284] = ACTIONS(103), - [anon_sym_AT_AT] = ACTIONS(103), - }, - [92] = { [aux_sym_duration_repeat1] = STATE(91), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(97), @@ -24976,7 +24908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_GT] = ACTIONS(99), [anon_sym_EQ] = ACTIONS(99), - [sym_duration_part] = ACTIONS(284), + [sym_duration_part] = ACTIONS(281), [anon_sym_DASH] = ACTIONS(99), [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_PIPE] = ACTIONS(97), @@ -25012,92 +24944,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(97), [anon_sym_AT_AT] = ACTIONS(97), }, + [92] = { + [aux_sym_duration_repeat1] = STATE(91), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(104), + [sym_keyword_value] = ACTIONS(104), + [sym_keyword_explain] = ACTIONS(104), + [sym_keyword_parallel] = ACTIONS(104), + [sym_keyword_timeout] = ACTIONS(104), + [sym_keyword_fetch] = ACTIONS(104), + [sym_keyword_limit] = ACTIONS(104), + [sym_keyword_rand] = ACTIONS(104), + [sym_keyword_collate] = ACTIONS(104), + [sym_keyword_numeric] = ACTIONS(104), + [sym_keyword_asc] = ACTIONS(104), + [sym_keyword_desc] = ACTIONS(104), + [sym_keyword_and] = ACTIONS(104), + [sym_keyword_or] = ACTIONS(104), + [sym_keyword_is] = ACTIONS(104), + [sym_keyword_not] = ACTIONS(106), + [sym_keyword_contains] = ACTIONS(104), + [sym_keyword_contains_not] = ACTIONS(104), + [sym_keyword_contains_all] = ACTIONS(104), + [sym_keyword_contains_any] = ACTIONS(104), + [sym_keyword_contains_none] = ACTIONS(104), + [sym_keyword_inside] = ACTIONS(104), + [sym_keyword_in] = ACTIONS(106), + [sym_keyword_not_inside] = ACTIONS(104), + [sym_keyword_all_inside] = ACTIONS(104), + [sym_keyword_any_inside] = ACTIONS(104), + [sym_keyword_none_inside] = ACTIONS(104), + [sym_keyword_outside] = ACTIONS(104), + [sym_keyword_intersects] = ACTIONS(104), + [sym_keyword_flexible] = ACTIONS(104), + [sym_keyword_readonly] = ACTIONS(104), + [sym_keyword_type] = ACTIONS(104), + [sym_keyword_default] = ACTIONS(104), + [sym_keyword_assert] = ACTIONS(104), + [sym_keyword_permissions] = ACTIONS(104), + [sym_keyword_for] = ACTIONS(104), + [sym_keyword_comment] = ACTIONS(104), + [anon_sym_COMMA] = ACTIONS(104), + [anon_sym_DASH_GT] = ACTIONS(104), + [anon_sym_LBRACK] = ACTIONS(104), + [anon_sym_RPAREN] = ACTIONS(104), + [anon_sym_RBRACE] = ACTIONS(104), + [anon_sym_LT_DASH] = ACTIONS(106), + [anon_sym_LT_DASH_GT] = ACTIONS(104), + [anon_sym_STAR] = ACTIONS(106), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LT] = ACTIONS(106), + [anon_sym_GT] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(106), + [sym_duration_part] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(106), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_LT_PIPE] = ACTIONS(104), + [anon_sym_AMP_AMP] = ACTIONS(104), + [anon_sym_PIPE_PIPE] = ACTIONS(104), + [anon_sym_QMARK_QMARK] = ACTIONS(104), + [anon_sym_QMARK_COLON] = ACTIONS(104), + [anon_sym_BANG_EQ] = ACTIONS(104), + [anon_sym_EQ_EQ] = ACTIONS(104), + [anon_sym_QMARK_EQ] = ACTIONS(104), + [anon_sym_STAR_EQ] = ACTIONS(104), + [anon_sym_TILDE] = ACTIONS(104), + [anon_sym_BANG_TILDE] = ACTIONS(104), + [anon_sym_STAR_TILDE] = ACTIONS(104), + [anon_sym_LT_EQ] = ACTIONS(104), + [anon_sym_GT_EQ] = ACTIONS(104), + [anon_sym_PLUS] = ACTIONS(106), + [anon_sym_PLUS_EQ] = ACTIONS(104), + [anon_sym_DASH_EQ] = ACTIONS(104), + [anon_sym_u00d7] = ACTIONS(104), + [anon_sym_SLASH] = ACTIONS(106), + [anon_sym_u00f7] = ACTIONS(104), + [anon_sym_STAR_STAR] = ACTIONS(104), + [anon_sym_u220b] = ACTIONS(104), + [anon_sym_u220c] = ACTIONS(104), + [anon_sym_u2287] = ACTIONS(104), + [anon_sym_u2283] = ACTIONS(104), + [anon_sym_u2285] = ACTIONS(104), + [anon_sym_u2208] = ACTIONS(104), + [anon_sym_u2209] = ACTIONS(104), + [anon_sym_u2286] = ACTIONS(104), + [anon_sym_u2282] = ACTIONS(104), + [anon_sym_u2284] = ACTIONS(104), + [anon_sym_AT_AT] = ACTIONS(104), + }, [93] = { - [ts_builtin_sym_end] = ACTIONS(77), + [aux_sym_duration_repeat1] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(97), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(77), - [sym_keyword_return] = ACTIONS(77), - [sym_keyword_value] = ACTIONS(77), - [sym_keyword_explain] = ACTIONS(77), - [sym_keyword_parallel] = ACTIONS(77), - [sym_keyword_timeout] = ACTIONS(77), - [sym_keyword_fetch] = ACTIONS(77), - [sym_keyword_limit] = ACTIONS(77), - [sym_keyword_rand] = ACTIONS(77), - [sym_keyword_collate] = ACTIONS(77), - [sym_keyword_numeric] = ACTIONS(77), - [sym_keyword_asc] = ACTIONS(77), - [sym_keyword_desc] = ACTIONS(77), - [sym_keyword_where] = ACTIONS(77), - [sym_keyword_and] = ACTIONS(77), - [sym_keyword_or] = ACTIONS(77), - [sym_keyword_is] = ACTIONS(77), - [sym_keyword_not] = ACTIONS(79), - [sym_keyword_contains] = ACTIONS(77), - [sym_keyword_contains_not] = ACTIONS(77), - [sym_keyword_contains_all] = ACTIONS(77), - [sym_keyword_contains_any] = ACTIONS(77), - [sym_keyword_contains_none] = ACTIONS(77), - [sym_keyword_inside] = ACTIONS(77), - [sym_keyword_in] = ACTIONS(79), - [sym_keyword_not_inside] = ACTIONS(77), - [sym_keyword_all_inside] = ACTIONS(77), - [sym_keyword_any_inside] = ACTIONS(77), - [sym_keyword_none_inside] = ACTIONS(77), - [sym_keyword_outside] = ACTIONS(77), - [sym_keyword_intersects] = ACTIONS(77), - [sym_keyword_flexible] = ACTIONS(77), - [sym_keyword_readonly] = ACTIONS(77), - [sym_keyword_content] = ACTIONS(77), - [sym_keyword_merge] = ACTIONS(77), - [sym_keyword_patch] = ACTIONS(77), - [sym_keyword_type] = ACTIONS(77), - [sym_keyword_default] = ACTIONS(77), - [sym_keyword_assert] = ACTIONS(77), - [sym_keyword_permissions] = ACTIONS(77), - [sym_keyword_for] = ACTIONS(77), - [sym_keyword_comment] = ACTIONS(77), - [sym_keyword_set] = ACTIONS(77), - [sym_keyword_unset] = ACTIONS(77), - [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_EQ] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_AT] = ACTIONS(79), - [anon_sym_LT_PIPE] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_QMARK_QMARK] = ACTIONS(77), - [anon_sym_QMARK_COLON] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_QMARK_EQ] = ACTIONS(77), - [anon_sym_STAR_EQ] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG_TILDE] = ACTIONS(77), - [anon_sym_STAR_TILDE] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_PLUS_EQ] = ACTIONS(77), - [anon_sym_DASH_EQ] = ACTIONS(77), - [anon_sym_u00d7] = ACTIONS(77), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_u00f7] = ACTIONS(77), - [anon_sym_STAR_STAR] = ACTIONS(77), - [anon_sym_u220b] = ACTIONS(77), - [anon_sym_u220c] = ACTIONS(77), - [anon_sym_u2287] = ACTIONS(77), - [anon_sym_u2283] = ACTIONS(77), - [anon_sym_u2285] = ACTIONS(77), - [anon_sym_u2208] = ACTIONS(77), - [anon_sym_u2209] = ACTIONS(77), - [anon_sym_u2286] = ACTIONS(77), - [anon_sym_u2282] = ACTIONS(77), - [anon_sym_u2284] = ACTIONS(77), - [anon_sym_AT_AT] = ACTIONS(77), + [sym_semi_colon] = ACTIONS(97), + [sym_keyword_value] = ACTIONS(97), + [sym_keyword_explain] = ACTIONS(97), + [sym_keyword_parallel] = ACTIONS(97), + [sym_keyword_timeout] = ACTIONS(97), + [sym_keyword_fetch] = ACTIONS(97), + [sym_keyword_limit] = ACTIONS(97), + [sym_keyword_rand] = ACTIONS(97), + [sym_keyword_collate] = ACTIONS(97), + [sym_keyword_numeric] = ACTIONS(97), + [sym_keyword_asc] = ACTIONS(97), + [sym_keyword_desc] = ACTIONS(97), + [sym_keyword_and] = ACTIONS(97), + [sym_keyword_or] = ACTIONS(97), + [sym_keyword_is] = ACTIONS(97), + [sym_keyword_not] = ACTIONS(99), + [sym_keyword_contains] = ACTIONS(97), + [sym_keyword_contains_not] = ACTIONS(97), + [sym_keyword_contains_all] = ACTIONS(97), + [sym_keyword_contains_any] = ACTIONS(97), + [sym_keyword_contains_none] = ACTIONS(97), + [sym_keyword_inside] = ACTIONS(97), + [sym_keyword_in] = ACTIONS(99), + [sym_keyword_not_inside] = ACTIONS(97), + [sym_keyword_all_inside] = ACTIONS(97), + [sym_keyword_any_inside] = ACTIONS(97), + [sym_keyword_none_inside] = ACTIONS(97), + [sym_keyword_outside] = ACTIONS(97), + [sym_keyword_intersects] = ACTIONS(97), + [sym_keyword_flexible] = ACTIONS(97), + [sym_keyword_readonly] = ACTIONS(97), + [sym_keyword_type] = ACTIONS(97), + [sym_keyword_default] = ACTIONS(97), + [sym_keyword_assert] = ACTIONS(97), + [sym_keyword_permissions] = ACTIONS(97), + [sym_keyword_for] = ACTIONS(97), + [sym_keyword_comment] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(97), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(97), + [anon_sym_LT_DASH] = ACTIONS(99), + [anon_sym_LT_DASH_GT] = ACTIONS(97), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_EQ] = ACTIONS(99), + [sym_duration_part] = ACTIONS(286), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_LT_PIPE] = ACTIONS(97), + [anon_sym_AMP_AMP] = ACTIONS(97), + [anon_sym_PIPE_PIPE] = ACTIONS(97), + [anon_sym_QMARK_QMARK] = ACTIONS(97), + [anon_sym_QMARK_COLON] = ACTIONS(97), + [anon_sym_BANG_EQ] = ACTIONS(97), + [anon_sym_EQ_EQ] = ACTIONS(97), + [anon_sym_QMARK_EQ] = ACTIONS(97), + [anon_sym_STAR_EQ] = ACTIONS(97), + [anon_sym_TILDE] = ACTIONS(97), + [anon_sym_BANG_TILDE] = ACTIONS(97), + [anon_sym_STAR_TILDE] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(97), + [anon_sym_DASH_EQ] = ACTIONS(97), + [anon_sym_u00d7] = ACTIONS(97), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_u00f7] = ACTIONS(97), + [anon_sym_STAR_STAR] = ACTIONS(97), + [anon_sym_u220b] = ACTIONS(97), + [anon_sym_u220c] = ACTIONS(97), + [anon_sym_u2287] = ACTIONS(97), + [anon_sym_u2283] = ACTIONS(97), + [anon_sym_u2285] = ACTIONS(97), + [anon_sym_u2208] = ACTIONS(97), + [anon_sym_u2209] = ACTIONS(97), + [anon_sym_u2286] = ACTIONS(97), + [anon_sym_u2282] = ACTIONS(97), + [anon_sym_u2284] = ACTIONS(97), + [anon_sym_AT_AT] = ACTIONS(97), }, [94] = { [sym_comment] = ACTIONS(3), @@ -25188,92 +25208,614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [95] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(116), - [sym_keyword_value] = ACTIONS(116), - [sym_keyword_explain] = ACTIONS(116), - [sym_keyword_parallel] = ACTIONS(116), - [sym_keyword_timeout] = ACTIONS(116), - [sym_keyword_fetch] = ACTIONS(116), - [sym_keyword_limit] = ACTIONS(116), - [sym_keyword_rand] = ACTIONS(116), - [sym_keyword_collate] = ACTIONS(116), - [sym_keyword_numeric] = ACTIONS(116), - [sym_keyword_asc] = ACTIONS(116), - [sym_keyword_desc] = ACTIONS(116), - [sym_keyword_and] = ACTIONS(116), - [sym_keyword_or] = ACTIONS(116), - [sym_keyword_is] = ACTIONS(116), - [sym_keyword_not] = ACTIONS(118), - [sym_keyword_contains] = ACTIONS(116), - [sym_keyword_contains_not] = ACTIONS(116), - [sym_keyword_contains_all] = ACTIONS(116), - [sym_keyword_contains_any] = ACTIONS(116), - [sym_keyword_contains_none] = ACTIONS(116), - [sym_keyword_inside] = ACTIONS(116), - [sym_keyword_in] = ACTIONS(118), - [sym_keyword_not_inside] = ACTIONS(116), - [sym_keyword_all_inside] = ACTIONS(116), - [sym_keyword_any_inside] = ACTIONS(116), - [sym_keyword_none_inside] = ACTIONS(116), - [sym_keyword_outside] = ACTIONS(116), - [sym_keyword_intersects] = ACTIONS(116), - [sym_keyword_flexible] = ACTIONS(116), - [sym_keyword_readonly] = ACTIONS(116), - [sym_keyword_type] = ACTIONS(116), - [sym_keyword_default] = ACTIONS(116), - [sym_keyword_assert] = ACTIONS(116), - [sym_keyword_permissions] = ACTIONS(116), - [sym_keyword_for] = ACTIONS(116), - [sym_keyword_comment] = ACTIONS(116), - [anon_sym_COMMA] = ACTIONS(116), - [anon_sym_DASH_GT] = ACTIONS(116), - [anon_sym_LBRACK] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(116), - [anon_sym_RBRACE] = ACTIONS(116), - [anon_sym_LT_DASH] = ACTIONS(118), - [anon_sym_LT_DASH_GT] = ACTIONS(116), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT_DOT] = ACTIONS(116), - [anon_sym_EQ] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_AT] = ACTIONS(118), - [anon_sym_LT_PIPE] = ACTIONS(116), - [anon_sym_AMP_AMP] = ACTIONS(116), - [anon_sym_PIPE_PIPE] = ACTIONS(116), - [anon_sym_QMARK_QMARK] = ACTIONS(116), - [anon_sym_QMARK_COLON] = ACTIONS(116), - [anon_sym_BANG_EQ] = ACTIONS(116), - [anon_sym_EQ_EQ] = ACTIONS(116), - [anon_sym_QMARK_EQ] = ACTIONS(116), - [anon_sym_STAR_EQ] = ACTIONS(116), - [anon_sym_TILDE] = ACTIONS(116), - [anon_sym_BANG_TILDE] = ACTIONS(116), - [anon_sym_STAR_TILDE] = ACTIONS(116), - [anon_sym_LT_EQ] = ACTIONS(116), - [anon_sym_GT_EQ] = ACTIONS(116), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(116), - [anon_sym_DASH_EQ] = ACTIONS(116), - [anon_sym_u00d7] = ACTIONS(116), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_u00f7] = ACTIONS(116), - [anon_sym_STAR_STAR] = ACTIONS(116), - [anon_sym_u220b] = ACTIONS(116), - [anon_sym_u220c] = ACTIONS(116), - [anon_sym_u2287] = ACTIONS(116), - [anon_sym_u2283] = ACTIONS(116), - [anon_sym_u2285] = ACTIONS(116), - [anon_sym_u2208] = ACTIONS(116), - [anon_sym_u2209] = ACTIONS(116), - [anon_sym_u2286] = ACTIONS(116), - [anon_sym_u2282] = ACTIONS(116), - [anon_sym_u2284] = ACTIONS(116), - [anon_sym_AT_AT] = ACTIONS(116), + [sym_semi_colon] = ACTIONS(57), + [sym_keyword_value] = ACTIONS(57), + [sym_keyword_explain] = ACTIONS(57), + [sym_keyword_parallel] = ACTIONS(57), + [sym_keyword_timeout] = ACTIONS(57), + [sym_keyword_fetch] = ACTIONS(57), + [sym_keyword_limit] = ACTIONS(57), + [sym_keyword_rand] = ACTIONS(57), + [sym_keyword_collate] = ACTIONS(57), + [sym_keyword_numeric] = ACTIONS(57), + [sym_keyword_asc] = ACTIONS(57), + [sym_keyword_desc] = ACTIONS(57), + [sym_keyword_and] = ACTIONS(57), + [sym_keyword_or] = ACTIONS(57), + [sym_keyword_is] = ACTIONS(57), + [sym_keyword_not] = ACTIONS(59), + [sym_keyword_contains] = ACTIONS(57), + [sym_keyword_contains_not] = ACTIONS(57), + [sym_keyword_contains_all] = ACTIONS(57), + [sym_keyword_contains_any] = ACTIONS(57), + [sym_keyword_contains_none] = ACTIONS(57), + [sym_keyword_inside] = ACTIONS(57), + [sym_keyword_in] = ACTIONS(59), + [sym_keyword_not_inside] = ACTIONS(57), + [sym_keyword_all_inside] = ACTIONS(57), + [sym_keyword_any_inside] = ACTIONS(57), + [sym_keyword_none_inside] = ACTIONS(57), + [sym_keyword_outside] = ACTIONS(57), + [sym_keyword_intersects] = ACTIONS(57), + [sym_keyword_flexible] = ACTIONS(57), + [sym_keyword_readonly] = ACTIONS(57), + [sym_keyword_type] = ACTIONS(57), + [sym_keyword_default] = ACTIONS(57), + [sym_keyword_assert] = ACTIONS(57), + [sym_keyword_permissions] = ACTIONS(57), + [sym_keyword_for] = ACTIONS(57), + [sym_keyword_comment] = ACTIONS(57), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_DASH_GT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [anon_sym_LT_DASH_GT] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_DOT] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LT_PIPE] = ACTIONS(57), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_QMARK_COLON] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_QMARK_EQ] = ACTIONS(57), + [anon_sym_STAR_EQ] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG_TILDE] = ACTIONS(57), + [anon_sym_STAR_TILDE] = ACTIONS(57), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_DASH_EQ] = ACTIONS(57), + [anon_sym_u00d7] = ACTIONS(57), + [anon_sym_SLASH] = ACTIONS(59), + [anon_sym_u00f7] = ACTIONS(57), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_u220b] = ACTIONS(57), + [anon_sym_u220c] = ACTIONS(57), + [anon_sym_u2287] = ACTIONS(57), + [anon_sym_u2283] = ACTIONS(57), + [anon_sym_u2285] = ACTIONS(57), + [anon_sym_u2208] = ACTIONS(57), + [anon_sym_u2209] = ACTIONS(57), + [anon_sym_u2286] = ACTIONS(57), + [anon_sym_u2282] = ACTIONS(57), + [anon_sym_u2284] = ACTIONS(57), + [anon_sym_AT_AT] = ACTIONS(57), + }, + [96] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(114), + [sym_keyword_value] = ACTIONS(114), + [sym_keyword_explain] = ACTIONS(114), + [sym_keyword_parallel] = ACTIONS(114), + [sym_keyword_timeout] = ACTIONS(114), + [sym_keyword_fetch] = ACTIONS(114), + [sym_keyword_limit] = ACTIONS(114), + [sym_keyword_rand] = ACTIONS(114), + [sym_keyword_collate] = ACTIONS(114), + [sym_keyword_numeric] = ACTIONS(114), + [sym_keyword_asc] = ACTIONS(114), + [sym_keyword_desc] = ACTIONS(114), + [sym_keyword_and] = ACTIONS(114), + [sym_keyword_or] = ACTIONS(114), + [sym_keyword_is] = ACTIONS(114), + [sym_keyword_not] = ACTIONS(116), + [sym_keyword_contains] = ACTIONS(114), + [sym_keyword_contains_not] = ACTIONS(114), + [sym_keyword_contains_all] = ACTIONS(114), + [sym_keyword_contains_any] = ACTIONS(114), + [sym_keyword_contains_none] = ACTIONS(114), + [sym_keyword_inside] = ACTIONS(114), + [sym_keyword_in] = ACTIONS(116), + [sym_keyword_not_inside] = ACTIONS(114), + [sym_keyword_all_inside] = ACTIONS(114), + [sym_keyword_any_inside] = ACTIONS(114), + [sym_keyword_none_inside] = ACTIONS(114), + [sym_keyword_outside] = ACTIONS(114), + [sym_keyword_intersects] = ACTIONS(114), + [sym_keyword_flexible] = ACTIONS(114), + [sym_keyword_readonly] = ACTIONS(114), + [sym_keyword_type] = ACTIONS(114), + [sym_keyword_default] = ACTIONS(114), + [sym_keyword_assert] = ACTIONS(114), + [sym_keyword_permissions] = ACTIONS(114), + [sym_keyword_for] = ACTIONS(114), + [sym_keyword_comment] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_DASH_GT] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_RPAREN] = ACTIONS(114), + [anon_sym_RBRACE] = ACTIONS(114), + [anon_sym_LT_DASH] = ACTIONS(116), + [anon_sym_LT_DASH_GT] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(116), + [anon_sym_LT] = ACTIONS(116), + [anon_sym_GT] = ACTIONS(116), + [anon_sym_DOT_DOT] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_DASH] = ACTIONS(116), + [anon_sym_AT] = ACTIONS(116), + [anon_sym_LT_PIPE] = ACTIONS(114), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_QMARK_COLON] = ACTIONS(114), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_QMARK_EQ] = ACTIONS(114), + [anon_sym_STAR_EQ] = ACTIONS(114), + [anon_sym_TILDE] = ACTIONS(114), + [anon_sym_BANG_TILDE] = ACTIONS(114), + [anon_sym_STAR_TILDE] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(114), + [anon_sym_GT_EQ] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(116), + [anon_sym_PLUS_EQ] = ACTIONS(114), + [anon_sym_DASH_EQ] = ACTIONS(114), + [anon_sym_u00d7] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(116), + [anon_sym_u00f7] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_u220b] = ACTIONS(114), + [anon_sym_u220c] = ACTIONS(114), + [anon_sym_u2287] = ACTIONS(114), + [anon_sym_u2283] = ACTIONS(114), + [anon_sym_u2285] = ACTIONS(114), + [anon_sym_u2208] = ACTIONS(114), + [anon_sym_u2209] = ACTIONS(114), + [anon_sym_u2286] = ACTIONS(114), + [anon_sym_u2282] = ACTIONS(114), + [anon_sym_u2284] = ACTIONS(114), + [anon_sym_AT_AT] = ACTIONS(114), + }, + [97] = { + [aux_sym_duration_repeat1] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(104), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(104), + [sym_keyword_value] = ACTIONS(104), + [sym_keyword_explain] = ACTIONS(104), + [sym_keyword_parallel] = ACTIONS(104), + [sym_keyword_timeout] = ACTIONS(104), + [sym_keyword_fetch] = ACTIONS(104), + [sym_keyword_limit] = ACTIONS(104), + [sym_keyword_rand] = ACTIONS(104), + [sym_keyword_collate] = ACTIONS(104), + [sym_keyword_numeric] = ACTIONS(104), + [sym_keyword_asc] = ACTIONS(104), + [sym_keyword_desc] = ACTIONS(104), + [sym_keyword_and] = ACTIONS(104), + [sym_keyword_or] = ACTIONS(104), + [sym_keyword_is] = ACTIONS(104), + [sym_keyword_not] = ACTIONS(106), + [sym_keyword_contains] = ACTIONS(104), + [sym_keyword_contains_not] = ACTIONS(104), + [sym_keyword_contains_all] = ACTIONS(104), + [sym_keyword_contains_any] = ACTIONS(104), + [sym_keyword_contains_none] = ACTIONS(104), + [sym_keyword_inside] = ACTIONS(104), + [sym_keyword_in] = ACTIONS(106), + [sym_keyword_not_inside] = ACTIONS(104), + [sym_keyword_all_inside] = ACTIONS(104), + [sym_keyword_any_inside] = ACTIONS(104), + [sym_keyword_none_inside] = ACTIONS(104), + [sym_keyword_outside] = ACTIONS(104), + [sym_keyword_intersects] = ACTIONS(104), + [sym_keyword_flexible] = ACTIONS(104), + [sym_keyword_readonly] = ACTIONS(104), + [sym_keyword_type] = ACTIONS(104), + [sym_keyword_default] = ACTIONS(104), + [sym_keyword_assert] = ACTIONS(104), + [sym_keyword_permissions] = ACTIONS(104), + [sym_keyword_for] = ACTIONS(104), + [sym_keyword_comment] = ACTIONS(104), + [anon_sym_COMMA] = ACTIONS(104), + [anon_sym_DASH_GT] = ACTIONS(104), + [anon_sym_LBRACK] = ACTIONS(104), + [anon_sym_LT_DASH] = ACTIONS(106), + [anon_sym_LT_DASH_GT] = ACTIONS(104), + [anon_sym_STAR] = ACTIONS(106), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LT] = ACTIONS(106), + [anon_sym_GT] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(106), + [sym_duration_part] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(106), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_LT_PIPE] = ACTIONS(104), + [anon_sym_AMP_AMP] = ACTIONS(104), + [anon_sym_PIPE_PIPE] = ACTIONS(104), + [anon_sym_QMARK_QMARK] = ACTIONS(104), + [anon_sym_QMARK_COLON] = ACTIONS(104), + [anon_sym_BANG_EQ] = ACTIONS(104), + [anon_sym_EQ_EQ] = ACTIONS(104), + [anon_sym_QMARK_EQ] = ACTIONS(104), + [anon_sym_STAR_EQ] = ACTIONS(104), + [anon_sym_TILDE] = ACTIONS(104), + [anon_sym_BANG_TILDE] = ACTIONS(104), + [anon_sym_STAR_TILDE] = ACTIONS(104), + [anon_sym_LT_EQ] = ACTIONS(104), + [anon_sym_GT_EQ] = ACTIONS(104), + [anon_sym_PLUS] = ACTIONS(106), + [anon_sym_PLUS_EQ] = ACTIONS(104), + [anon_sym_DASH_EQ] = ACTIONS(104), + [anon_sym_u00d7] = ACTIONS(104), + [anon_sym_SLASH] = ACTIONS(106), + [anon_sym_u00f7] = ACTIONS(104), + [anon_sym_STAR_STAR] = ACTIONS(104), + [anon_sym_u220b] = ACTIONS(104), + [anon_sym_u220c] = ACTIONS(104), + [anon_sym_u2287] = ACTIONS(104), + [anon_sym_u2283] = ACTIONS(104), + [anon_sym_u2285] = ACTIONS(104), + [anon_sym_u2208] = ACTIONS(104), + [anon_sym_u2209] = ACTIONS(104), + [anon_sym_u2286] = ACTIONS(104), + [anon_sym_u2282] = ACTIONS(104), + [anon_sym_u2284] = ACTIONS(104), + [anon_sym_AT_AT] = ACTIONS(104), + }, + [98] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(118), + [sym_keyword_value] = ACTIONS(118), + [sym_keyword_explain] = ACTIONS(118), + [sym_keyword_parallel] = ACTIONS(118), + [sym_keyword_timeout] = ACTIONS(118), + [sym_keyword_fetch] = ACTIONS(118), + [sym_keyword_limit] = ACTIONS(118), + [sym_keyword_rand] = ACTIONS(118), + [sym_keyword_collate] = ACTIONS(118), + [sym_keyword_numeric] = ACTIONS(118), + [sym_keyword_asc] = ACTIONS(118), + [sym_keyword_desc] = ACTIONS(118), + [sym_keyword_and] = ACTIONS(118), + [sym_keyword_or] = ACTIONS(118), + [sym_keyword_is] = ACTIONS(118), + [sym_keyword_not] = ACTIONS(120), + [sym_keyword_contains] = ACTIONS(118), + [sym_keyword_contains_not] = ACTIONS(118), + [sym_keyword_contains_all] = ACTIONS(118), + [sym_keyword_contains_any] = ACTIONS(118), + [sym_keyword_contains_none] = ACTIONS(118), + [sym_keyword_inside] = ACTIONS(118), + [sym_keyword_in] = ACTIONS(120), + [sym_keyword_not_inside] = ACTIONS(118), + [sym_keyword_all_inside] = ACTIONS(118), + [sym_keyword_any_inside] = ACTIONS(118), + [sym_keyword_none_inside] = ACTIONS(118), + [sym_keyword_outside] = ACTIONS(118), + [sym_keyword_intersects] = ACTIONS(118), + [sym_keyword_flexible] = ACTIONS(118), + [sym_keyword_readonly] = ACTIONS(118), + [sym_keyword_type] = ACTIONS(118), + [sym_keyword_default] = ACTIONS(118), + [sym_keyword_assert] = ACTIONS(118), + [sym_keyword_permissions] = ACTIONS(118), + [sym_keyword_for] = ACTIONS(118), + [sym_keyword_comment] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_DASH_GT] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_LT_DASH] = ACTIONS(120), + [anon_sym_LT_DASH_GT] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT_DOT] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_AT] = ACTIONS(120), + [anon_sym_LT_PIPE] = ACTIONS(118), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_QMARK_COLON] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_QMARK_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(118), + [anon_sym_BANG_TILDE] = ACTIONS(118), + [anon_sym_STAR_TILDE] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_u00d7] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_u00f7] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_u220b] = ACTIONS(118), + [anon_sym_u220c] = ACTIONS(118), + [anon_sym_u2287] = ACTIONS(118), + [anon_sym_u2283] = ACTIONS(118), + [anon_sym_u2285] = ACTIONS(118), + [anon_sym_u2208] = ACTIONS(118), + [anon_sym_u2209] = ACTIONS(118), + [anon_sym_u2286] = ACTIONS(118), + [anon_sym_u2282] = ACTIONS(118), + [anon_sym_u2284] = ACTIONS(118), + [anon_sym_AT_AT] = ACTIONS(118), + }, + [99] = { + [ts_builtin_sym_end] = ACTIONS(61), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(61), + [sym_keyword_return] = ACTIONS(61), + [sym_keyword_value] = ACTIONS(61), + [sym_keyword_explain] = ACTIONS(61), + [sym_keyword_parallel] = ACTIONS(61), + [sym_keyword_timeout] = ACTIONS(61), + [sym_keyword_fetch] = ACTIONS(61), + [sym_keyword_limit] = ACTIONS(61), + [sym_keyword_rand] = ACTIONS(61), + [sym_keyword_collate] = ACTIONS(61), + [sym_keyword_numeric] = ACTIONS(61), + [sym_keyword_asc] = ACTIONS(61), + [sym_keyword_desc] = ACTIONS(61), + [sym_keyword_where] = ACTIONS(61), + [sym_keyword_and] = ACTIONS(61), + [sym_keyword_or] = ACTIONS(61), + [sym_keyword_is] = ACTIONS(61), + [sym_keyword_not] = ACTIONS(63), + [sym_keyword_contains] = ACTIONS(61), + [sym_keyword_contains_not] = ACTIONS(61), + [sym_keyword_contains_all] = ACTIONS(61), + [sym_keyword_contains_any] = ACTIONS(61), + [sym_keyword_contains_none] = ACTIONS(61), + [sym_keyword_inside] = ACTIONS(61), + [sym_keyword_in] = ACTIONS(63), + [sym_keyword_not_inside] = ACTIONS(61), + [sym_keyword_all_inside] = ACTIONS(61), + [sym_keyword_any_inside] = ACTIONS(61), + [sym_keyword_none_inside] = ACTIONS(61), + [sym_keyword_outside] = ACTIONS(61), + [sym_keyword_intersects] = ACTIONS(61), + [sym_keyword_flexible] = ACTIONS(61), + [sym_keyword_readonly] = ACTIONS(61), + [sym_keyword_content] = ACTIONS(61), + [sym_keyword_merge] = ACTIONS(61), + [sym_keyword_patch] = ACTIONS(61), + [sym_keyword_type] = ACTIONS(61), + [sym_keyword_default] = ACTIONS(61), + [sym_keyword_assert] = ACTIONS(61), + [sym_keyword_permissions] = ACTIONS(61), + [sym_keyword_for] = ACTIONS(61), + [sym_keyword_comment] = ACTIONS(61), + [sym_keyword_set] = ACTIONS(61), + [sym_keyword_unset] = ACTIONS(61), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_LT_PIPE] = ACTIONS(61), + [anon_sym_AMP_AMP] = ACTIONS(61), + [anon_sym_PIPE_PIPE] = ACTIONS(61), + [anon_sym_QMARK_QMARK] = ACTIONS(61), + [anon_sym_QMARK_COLON] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(61), + [anon_sym_EQ_EQ] = ACTIONS(61), + [anon_sym_QMARK_EQ] = ACTIONS(61), + [anon_sym_STAR_EQ] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_BANG_TILDE] = ACTIONS(61), + [anon_sym_STAR_TILDE] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(61), + [anon_sym_GT_EQ] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_PLUS_EQ] = ACTIONS(61), + [anon_sym_DASH_EQ] = ACTIONS(61), + [anon_sym_u00d7] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_u00f7] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(61), + [anon_sym_u220b] = ACTIONS(61), + [anon_sym_u220c] = ACTIONS(61), + [anon_sym_u2287] = ACTIONS(61), + [anon_sym_u2283] = ACTIONS(61), + [anon_sym_u2285] = ACTIONS(61), + [anon_sym_u2208] = ACTIONS(61), + [anon_sym_u2209] = ACTIONS(61), + [anon_sym_u2286] = ACTIONS(61), + [anon_sym_u2282] = ACTIONS(61), + [anon_sym_u2284] = ACTIONS(61), + [anon_sym_AT_AT] = ACTIONS(61), + }, + [100] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(126), + [sym_keyword_value] = ACTIONS(126), + [sym_keyword_explain] = ACTIONS(126), + [sym_keyword_parallel] = ACTIONS(126), + [sym_keyword_timeout] = ACTIONS(126), + [sym_keyword_fetch] = ACTIONS(126), + [sym_keyword_limit] = ACTIONS(126), + [sym_keyword_rand] = ACTIONS(126), + [sym_keyword_collate] = ACTIONS(126), + [sym_keyword_numeric] = ACTIONS(126), + [sym_keyword_asc] = ACTIONS(126), + [sym_keyword_desc] = ACTIONS(126), + [sym_keyword_and] = ACTIONS(126), + [sym_keyword_or] = ACTIONS(126), + [sym_keyword_is] = ACTIONS(126), + [sym_keyword_not] = ACTIONS(128), + [sym_keyword_contains] = ACTIONS(126), + [sym_keyword_contains_not] = ACTIONS(126), + [sym_keyword_contains_all] = ACTIONS(126), + [sym_keyword_contains_any] = ACTIONS(126), + [sym_keyword_contains_none] = ACTIONS(126), + [sym_keyword_inside] = ACTIONS(126), + [sym_keyword_in] = ACTIONS(128), + [sym_keyword_not_inside] = ACTIONS(126), + [sym_keyword_all_inside] = ACTIONS(126), + [sym_keyword_any_inside] = ACTIONS(126), + [sym_keyword_none_inside] = ACTIONS(126), + [sym_keyword_outside] = ACTIONS(126), + [sym_keyword_intersects] = ACTIONS(126), + [sym_keyword_flexible] = ACTIONS(126), + [sym_keyword_readonly] = ACTIONS(126), + [sym_keyword_type] = ACTIONS(126), + [sym_keyword_default] = ACTIONS(126), + [sym_keyword_assert] = ACTIONS(126), + [sym_keyword_permissions] = ACTIONS(126), + [sym_keyword_for] = ACTIONS(126), + [sym_keyword_comment] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_DASH_GT] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_LT_DASH] = ACTIONS(128), + [anon_sym_LT_DASH_GT] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(128), + [anon_sym_DOT] = ACTIONS(128), + [anon_sym_LT] = ACTIONS(128), + [anon_sym_GT] = ACTIONS(128), + [anon_sym_DOT_DOT] = ACTIONS(126), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_DASH] = ACTIONS(128), + [anon_sym_AT] = ACTIONS(128), + [anon_sym_LT_PIPE] = ACTIONS(126), + [anon_sym_AMP_AMP] = ACTIONS(126), + [anon_sym_PIPE_PIPE] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(126), + [anon_sym_QMARK_COLON] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_QMARK_EQ] = ACTIONS(126), + [anon_sym_STAR_EQ] = ACTIONS(126), + [anon_sym_TILDE] = ACTIONS(126), + [anon_sym_BANG_TILDE] = ACTIONS(126), + [anon_sym_STAR_TILDE] = ACTIONS(126), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(128), + [anon_sym_PLUS_EQ] = ACTIONS(126), + [anon_sym_DASH_EQ] = ACTIONS(126), + [anon_sym_u00d7] = ACTIONS(126), + [anon_sym_SLASH] = ACTIONS(128), + [anon_sym_u00f7] = ACTIONS(126), + [anon_sym_STAR_STAR] = ACTIONS(126), + [anon_sym_u220b] = ACTIONS(126), + [anon_sym_u220c] = ACTIONS(126), + [anon_sym_u2287] = ACTIONS(126), + [anon_sym_u2283] = ACTIONS(126), + [anon_sym_u2285] = ACTIONS(126), + [anon_sym_u2208] = ACTIONS(126), + [anon_sym_u2209] = ACTIONS(126), + [anon_sym_u2286] = ACTIONS(126), + [anon_sym_u2282] = ACTIONS(126), + [anon_sym_u2284] = ACTIONS(126), + [anon_sym_AT_AT] = ACTIONS(126), + }, + [101] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(110), + [sym_keyword_value] = ACTIONS(110), + [sym_keyword_explain] = ACTIONS(110), + [sym_keyword_parallel] = ACTIONS(110), + [sym_keyword_timeout] = ACTIONS(110), + [sym_keyword_fetch] = ACTIONS(110), + [sym_keyword_limit] = ACTIONS(110), + [sym_keyword_rand] = ACTIONS(110), + [sym_keyword_collate] = ACTIONS(110), + [sym_keyword_numeric] = ACTIONS(110), + [sym_keyword_asc] = ACTIONS(110), + [sym_keyword_desc] = ACTIONS(110), + [sym_keyword_and] = ACTIONS(110), + [sym_keyword_or] = ACTIONS(110), + [sym_keyword_is] = ACTIONS(110), + [sym_keyword_not] = ACTIONS(112), + [sym_keyword_contains] = ACTIONS(110), + [sym_keyword_contains_not] = ACTIONS(110), + [sym_keyword_contains_all] = ACTIONS(110), + [sym_keyword_contains_any] = ACTIONS(110), + [sym_keyword_contains_none] = ACTIONS(110), + [sym_keyword_inside] = ACTIONS(110), + [sym_keyword_in] = ACTIONS(112), + [sym_keyword_not_inside] = ACTIONS(110), + [sym_keyword_all_inside] = ACTIONS(110), + [sym_keyword_any_inside] = ACTIONS(110), + [sym_keyword_none_inside] = ACTIONS(110), + [sym_keyword_outside] = ACTIONS(110), + [sym_keyword_intersects] = ACTIONS(110), + [sym_keyword_flexible] = ACTIONS(110), + [sym_keyword_readonly] = ACTIONS(110), + [sym_keyword_type] = ACTIONS(110), + [sym_keyword_default] = ACTIONS(110), + [sym_keyword_assert] = ACTIONS(110), + [sym_keyword_permissions] = ACTIONS(110), + [sym_keyword_for] = ACTIONS(110), + [sym_keyword_comment] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(110), + [anon_sym_DASH_GT] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(110), + [anon_sym_RPAREN] = ACTIONS(110), + [anon_sym_RBRACE] = ACTIONS(110), + [anon_sym_LT_DASH] = ACTIONS(112), + [anon_sym_LT_DASH_GT] = ACTIONS(110), + [anon_sym_STAR] = ACTIONS(112), + [anon_sym_DOT] = ACTIONS(112), + [anon_sym_LT] = ACTIONS(112), + [anon_sym_GT] = ACTIONS(112), + [anon_sym_DOT_DOT] = ACTIONS(110), + [anon_sym_EQ] = ACTIONS(112), + [anon_sym_DASH] = ACTIONS(112), + [anon_sym_AT] = ACTIONS(112), + [anon_sym_LT_PIPE] = ACTIONS(110), + [anon_sym_AMP_AMP] = ACTIONS(110), + [anon_sym_PIPE_PIPE] = ACTIONS(110), + [anon_sym_QMARK_QMARK] = ACTIONS(110), + [anon_sym_QMARK_COLON] = ACTIONS(110), + [anon_sym_BANG_EQ] = ACTIONS(110), + [anon_sym_EQ_EQ] = ACTIONS(110), + [anon_sym_QMARK_EQ] = ACTIONS(110), + [anon_sym_STAR_EQ] = ACTIONS(110), + [anon_sym_TILDE] = ACTIONS(110), + [anon_sym_BANG_TILDE] = ACTIONS(110), + [anon_sym_STAR_TILDE] = ACTIONS(110), + [anon_sym_LT_EQ] = ACTIONS(110), + [anon_sym_GT_EQ] = ACTIONS(110), + [anon_sym_PLUS] = ACTIONS(112), + [anon_sym_PLUS_EQ] = ACTIONS(110), + [anon_sym_DASH_EQ] = ACTIONS(110), + [anon_sym_u00d7] = ACTIONS(110), + [anon_sym_SLASH] = ACTIONS(112), + [anon_sym_u00f7] = ACTIONS(110), + [anon_sym_STAR_STAR] = ACTIONS(110), + [anon_sym_u220b] = ACTIONS(110), + [anon_sym_u220c] = ACTIONS(110), + [anon_sym_u2287] = ACTIONS(110), + [anon_sym_u2283] = ACTIONS(110), + [anon_sym_u2285] = ACTIONS(110), + [anon_sym_u2208] = ACTIONS(110), + [anon_sym_u2209] = ACTIONS(110), + [anon_sym_u2286] = ACTIONS(110), + [anon_sym_u2282] = ACTIONS(110), + [anon_sym_u2284] = ACTIONS(110), + [anon_sym_AT_AT] = ACTIONS(110), }, - [96] = { + [102] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(132), [sym_keyword_value] = ACTIONS(132), @@ -25360,701 +25902,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(132), [anon_sym_AT_AT] = ACTIONS(132), }, - [97] = { - [aux_sym_duration_repeat1] = STATE(101), - [ts_builtin_sym_end] = ACTIONS(97), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(97), - [sym_keyword_value] = ACTIONS(97), - [sym_keyword_explain] = ACTIONS(97), - [sym_keyword_parallel] = ACTIONS(97), - [sym_keyword_timeout] = ACTIONS(97), - [sym_keyword_fetch] = ACTIONS(97), - [sym_keyword_limit] = ACTIONS(97), - [sym_keyword_rand] = ACTIONS(97), - [sym_keyword_collate] = ACTIONS(97), - [sym_keyword_numeric] = ACTIONS(97), - [sym_keyword_asc] = ACTIONS(97), - [sym_keyword_desc] = ACTIONS(97), - [sym_keyword_and] = ACTIONS(97), - [sym_keyword_or] = ACTIONS(97), - [sym_keyword_is] = ACTIONS(97), - [sym_keyword_not] = ACTIONS(99), - [sym_keyword_contains] = ACTIONS(97), - [sym_keyword_contains_not] = ACTIONS(97), - [sym_keyword_contains_all] = ACTIONS(97), - [sym_keyword_contains_any] = ACTIONS(97), - [sym_keyword_contains_none] = ACTIONS(97), - [sym_keyword_inside] = ACTIONS(97), - [sym_keyword_in] = ACTIONS(99), - [sym_keyword_not_inside] = ACTIONS(97), - [sym_keyword_all_inside] = ACTIONS(97), - [sym_keyword_any_inside] = ACTIONS(97), - [sym_keyword_none_inside] = ACTIONS(97), - [sym_keyword_outside] = ACTIONS(97), - [sym_keyword_intersects] = ACTIONS(97), - [sym_keyword_flexible] = ACTIONS(97), - [sym_keyword_readonly] = ACTIONS(97), - [sym_keyword_type] = ACTIONS(97), - [sym_keyword_default] = ACTIONS(97), - [sym_keyword_assert] = ACTIONS(97), - [sym_keyword_permissions] = ACTIONS(97), - [sym_keyword_for] = ACTIONS(97), - [sym_keyword_comment] = ACTIONS(97), - [anon_sym_COMMA] = ACTIONS(97), - [anon_sym_DASH_GT] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LT_DASH] = ACTIONS(99), - [anon_sym_LT_DASH_GT] = ACTIONS(97), - [anon_sym_STAR] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_EQ] = ACTIONS(99), - [sym_duration_part] = ACTIONS(286), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_LT_PIPE] = ACTIONS(97), - [anon_sym_AMP_AMP] = ACTIONS(97), - [anon_sym_PIPE_PIPE] = ACTIONS(97), - [anon_sym_QMARK_QMARK] = ACTIONS(97), - [anon_sym_QMARK_COLON] = ACTIONS(97), - [anon_sym_BANG_EQ] = ACTIONS(97), - [anon_sym_EQ_EQ] = ACTIONS(97), - [anon_sym_QMARK_EQ] = ACTIONS(97), - [anon_sym_STAR_EQ] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_BANG_TILDE] = ACTIONS(97), - [anon_sym_STAR_TILDE] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(99), - [anon_sym_PLUS_EQ] = ACTIONS(97), - [anon_sym_DASH_EQ] = ACTIONS(97), - [anon_sym_u00d7] = ACTIONS(97), - [anon_sym_SLASH] = ACTIONS(99), - [anon_sym_u00f7] = ACTIONS(97), - [anon_sym_STAR_STAR] = ACTIONS(97), - [anon_sym_u220b] = ACTIONS(97), - [anon_sym_u220c] = ACTIONS(97), - [anon_sym_u2287] = ACTIONS(97), - [anon_sym_u2283] = ACTIONS(97), - [anon_sym_u2285] = ACTIONS(97), - [anon_sym_u2208] = ACTIONS(97), - [anon_sym_u2209] = ACTIONS(97), - [anon_sym_u2286] = ACTIONS(97), - [anon_sym_u2282] = ACTIONS(97), - [anon_sym_u2284] = ACTIONS(97), - [anon_sym_AT_AT] = ACTIONS(97), - }, - [98] = { + [103] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(57), - [sym_keyword_value] = ACTIONS(57), - [sym_keyword_explain] = ACTIONS(57), - [sym_keyword_parallel] = ACTIONS(57), - [sym_keyword_timeout] = ACTIONS(57), - [sym_keyword_fetch] = ACTIONS(57), - [sym_keyword_limit] = ACTIONS(57), - [sym_keyword_rand] = ACTIONS(57), - [sym_keyword_collate] = ACTIONS(57), - [sym_keyword_numeric] = ACTIONS(57), - [sym_keyword_asc] = ACTIONS(57), - [sym_keyword_desc] = ACTIONS(57), - [sym_keyword_and] = ACTIONS(57), - [sym_keyword_or] = ACTIONS(57), - [sym_keyword_is] = ACTIONS(57), - [sym_keyword_not] = ACTIONS(59), - [sym_keyword_contains] = ACTIONS(57), - [sym_keyword_contains_not] = ACTIONS(57), - [sym_keyword_contains_all] = ACTIONS(57), - [sym_keyword_contains_any] = ACTIONS(57), - [sym_keyword_contains_none] = ACTIONS(57), - [sym_keyword_inside] = ACTIONS(57), - [sym_keyword_in] = ACTIONS(59), - [sym_keyword_not_inside] = ACTIONS(57), - [sym_keyword_all_inside] = ACTIONS(57), - [sym_keyword_any_inside] = ACTIONS(57), - [sym_keyword_none_inside] = ACTIONS(57), - [sym_keyword_outside] = ACTIONS(57), - [sym_keyword_intersects] = ACTIONS(57), - [sym_keyword_flexible] = ACTIONS(57), - [sym_keyword_readonly] = ACTIONS(57), - [sym_keyword_type] = ACTIONS(57), - [sym_keyword_default] = ACTIONS(57), - [sym_keyword_assert] = ACTIONS(57), - [sym_keyword_permissions] = ACTIONS(57), - [sym_keyword_for] = ACTIONS(57), - [sym_keyword_comment] = ACTIONS(57), - [anon_sym_COMMA] = ACTIONS(57), - [anon_sym_DASH_GT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(57), - [anon_sym_COLON] = ACTIONS(114), - [anon_sym_RBRACE] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [anon_sym_LT_DASH_GT] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(59), - [anon_sym_LT_PIPE] = ACTIONS(57), - [anon_sym_AMP_AMP] = ACTIONS(57), - [anon_sym_PIPE_PIPE] = ACTIONS(57), - [anon_sym_QMARK_QMARK] = ACTIONS(57), - [anon_sym_QMARK_COLON] = ACTIONS(57), - [anon_sym_BANG_EQ] = ACTIONS(57), - [anon_sym_EQ_EQ] = ACTIONS(57), - [anon_sym_QMARK_EQ] = ACTIONS(57), - [anon_sym_STAR_EQ] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_BANG_TILDE] = ACTIONS(57), - [anon_sym_STAR_TILDE] = ACTIONS(57), - [anon_sym_LT_EQ] = ACTIONS(57), - [anon_sym_GT_EQ] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_PLUS_EQ] = ACTIONS(57), - [anon_sym_DASH_EQ] = ACTIONS(57), - [anon_sym_u00d7] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_u00f7] = ACTIONS(57), - [anon_sym_STAR_STAR] = ACTIONS(57), - [anon_sym_u220b] = ACTIONS(57), - [anon_sym_u220c] = ACTIONS(57), - [anon_sym_u2287] = ACTIONS(57), - [anon_sym_u2283] = ACTIONS(57), - [anon_sym_u2285] = ACTIONS(57), - [anon_sym_u2208] = ACTIONS(57), - [anon_sym_u2209] = ACTIONS(57), - [anon_sym_u2286] = ACTIONS(57), - [anon_sym_u2282] = ACTIONS(57), - [anon_sym_u2284] = ACTIONS(57), - [anon_sym_AT_AT] = ACTIONS(57), + [sym_semi_colon] = ACTIONS(168), + [sym_keyword_value] = ACTIONS(168), + [sym_keyword_explain] = ACTIONS(168), + [sym_keyword_parallel] = ACTIONS(168), + [sym_keyword_timeout] = ACTIONS(168), + [sym_keyword_fetch] = ACTIONS(168), + [sym_keyword_limit] = ACTIONS(168), + [sym_keyword_rand] = ACTIONS(168), + [sym_keyword_collate] = ACTIONS(168), + [sym_keyword_numeric] = ACTIONS(168), + [sym_keyword_asc] = ACTIONS(168), + [sym_keyword_desc] = ACTIONS(168), + [sym_keyword_and] = ACTIONS(168), + [sym_keyword_or] = ACTIONS(168), + [sym_keyword_is] = ACTIONS(168), + [sym_keyword_not] = ACTIONS(170), + [sym_keyword_contains] = ACTIONS(168), + [sym_keyword_contains_not] = ACTIONS(168), + [sym_keyword_contains_all] = ACTIONS(168), + [sym_keyword_contains_any] = ACTIONS(168), + [sym_keyword_contains_none] = ACTIONS(168), + [sym_keyword_inside] = ACTIONS(168), + [sym_keyword_in] = ACTIONS(170), + [sym_keyword_not_inside] = ACTIONS(168), + [sym_keyword_all_inside] = ACTIONS(168), + [sym_keyword_any_inside] = ACTIONS(168), + [sym_keyword_none_inside] = ACTIONS(168), + [sym_keyword_outside] = ACTIONS(168), + [sym_keyword_intersects] = ACTIONS(168), + [sym_keyword_flexible] = ACTIONS(168), + [sym_keyword_readonly] = ACTIONS(168), + [sym_keyword_type] = ACTIONS(168), + [sym_keyword_default] = ACTIONS(168), + [sym_keyword_assert] = ACTIONS(168), + [sym_keyword_permissions] = ACTIONS(168), + [sym_keyword_for] = ACTIONS(168), + [sym_keyword_comment] = ACTIONS(168), + [anon_sym_COMMA] = ACTIONS(168), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_LT_DASH] = ACTIONS(170), + [anon_sym_LT_DASH_GT] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_GT] = ACTIONS(170), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(170), + [anon_sym_LT_PIPE] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(168), + [anon_sym_QMARK_QMARK] = ACTIONS(168), + [anon_sym_QMARK_COLON] = ACTIONS(168), + [anon_sym_BANG_EQ] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(168), + [anon_sym_QMARK_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_BANG_TILDE] = ACTIONS(168), + [anon_sym_STAR_TILDE] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(168), + [anon_sym_GT_EQ] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_u00d7] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_u00f7] = ACTIONS(168), + [anon_sym_STAR_STAR] = ACTIONS(168), + [anon_sym_u220b] = ACTIONS(168), + [anon_sym_u220c] = ACTIONS(168), + [anon_sym_u2287] = ACTIONS(168), + [anon_sym_u2283] = ACTIONS(168), + [anon_sym_u2285] = ACTIONS(168), + [anon_sym_u2208] = ACTIONS(168), + [anon_sym_u2209] = ACTIONS(168), + [anon_sym_u2286] = ACTIONS(168), + [anon_sym_u2282] = ACTIONS(168), + [anon_sym_u2284] = ACTIONS(168), + [anon_sym_AT_AT] = ACTIONS(168), }, - [99] = { + [104] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(128), - [sym_keyword_value] = ACTIONS(128), - [sym_keyword_explain] = ACTIONS(128), - [sym_keyword_parallel] = ACTIONS(128), - [sym_keyword_timeout] = ACTIONS(128), - [sym_keyword_fetch] = ACTIONS(128), - [sym_keyword_limit] = ACTIONS(128), - [sym_keyword_rand] = ACTIONS(128), - [sym_keyword_collate] = ACTIONS(128), - [sym_keyword_numeric] = ACTIONS(128), - [sym_keyword_asc] = ACTIONS(128), - [sym_keyword_desc] = ACTIONS(128), - [sym_keyword_and] = ACTIONS(128), - [sym_keyword_or] = ACTIONS(128), - [sym_keyword_is] = ACTIONS(128), - [sym_keyword_not] = ACTIONS(130), - [sym_keyword_contains] = ACTIONS(128), - [sym_keyword_contains_not] = ACTIONS(128), - [sym_keyword_contains_all] = ACTIONS(128), - [sym_keyword_contains_any] = ACTIONS(128), - [sym_keyword_contains_none] = ACTIONS(128), - [sym_keyword_inside] = ACTIONS(128), - [sym_keyword_in] = ACTIONS(130), - [sym_keyword_not_inside] = ACTIONS(128), - [sym_keyword_all_inside] = ACTIONS(128), - [sym_keyword_any_inside] = ACTIONS(128), - [sym_keyword_none_inside] = ACTIONS(128), - [sym_keyword_outside] = ACTIONS(128), - [sym_keyword_intersects] = ACTIONS(128), - [sym_keyword_flexible] = ACTIONS(128), - [sym_keyword_readonly] = ACTIONS(128), - [sym_keyword_type] = ACTIONS(128), - [sym_keyword_default] = ACTIONS(128), - [sym_keyword_assert] = ACTIONS(128), - [sym_keyword_permissions] = ACTIONS(128), - [sym_keyword_for] = ACTIONS(128), - [sym_keyword_comment] = ACTIONS(128), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_DASH_GT] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_LT_DASH] = ACTIONS(130), - [anon_sym_LT_DASH_GT] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(130), - [anon_sym_LT] = ACTIONS(130), - [anon_sym_GT] = ACTIONS(130), - [anon_sym_DOT_DOT] = ACTIONS(128), - [anon_sym_EQ] = ACTIONS(130), - [anon_sym_DASH] = ACTIONS(130), - [anon_sym_AT] = ACTIONS(130), - [anon_sym_LT_PIPE] = ACTIONS(128), - [anon_sym_AMP_AMP] = ACTIONS(128), - [anon_sym_PIPE_PIPE] = ACTIONS(128), - [anon_sym_QMARK_QMARK] = ACTIONS(128), - [anon_sym_QMARK_COLON] = ACTIONS(128), - [anon_sym_BANG_EQ] = ACTIONS(128), - [anon_sym_EQ_EQ] = ACTIONS(128), - [anon_sym_QMARK_EQ] = ACTIONS(128), - [anon_sym_STAR_EQ] = ACTIONS(128), - [anon_sym_TILDE] = ACTIONS(128), - [anon_sym_BANG_TILDE] = ACTIONS(128), - [anon_sym_STAR_TILDE] = ACTIONS(128), - [anon_sym_LT_EQ] = ACTIONS(128), - [anon_sym_GT_EQ] = ACTIONS(128), - [anon_sym_PLUS] = ACTIONS(130), - [anon_sym_PLUS_EQ] = ACTIONS(128), - [anon_sym_DASH_EQ] = ACTIONS(128), - [anon_sym_u00d7] = ACTIONS(128), - [anon_sym_SLASH] = ACTIONS(130), - [anon_sym_u00f7] = ACTIONS(128), - [anon_sym_STAR_STAR] = ACTIONS(128), - [anon_sym_u220b] = ACTIONS(128), - [anon_sym_u220c] = ACTIONS(128), - [anon_sym_u2287] = ACTIONS(128), - [anon_sym_u2283] = ACTIONS(128), - [anon_sym_u2285] = ACTIONS(128), - [anon_sym_u2208] = ACTIONS(128), - [anon_sym_u2209] = ACTIONS(128), - [anon_sym_u2286] = ACTIONS(128), - [anon_sym_u2282] = ACTIONS(128), - [anon_sym_u2284] = ACTIONS(128), - [anon_sym_AT_AT] = ACTIONS(128), + [sym_semi_colon] = ACTIONS(208), + [sym_keyword_value] = ACTIONS(208), + [sym_keyword_explain] = ACTIONS(208), + [sym_keyword_parallel] = ACTIONS(208), + [sym_keyword_timeout] = ACTIONS(208), + [sym_keyword_fetch] = ACTIONS(208), + [sym_keyword_limit] = ACTIONS(208), + [sym_keyword_rand] = ACTIONS(208), + [sym_keyword_collate] = ACTIONS(208), + [sym_keyword_numeric] = ACTIONS(208), + [sym_keyword_asc] = ACTIONS(208), + [sym_keyword_desc] = ACTIONS(208), + [sym_keyword_and] = ACTIONS(208), + [sym_keyword_or] = ACTIONS(208), + [sym_keyword_is] = ACTIONS(208), + [sym_keyword_not] = ACTIONS(210), + [sym_keyword_contains] = ACTIONS(208), + [sym_keyword_contains_not] = ACTIONS(208), + [sym_keyword_contains_all] = ACTIONS(208), + [sym_keyword_contains_any] = ACTIONS(208), + [sym_keyword_contains_none] = ACTIONS(208), + [sym_keyword_inside] = ACTIONS(208), + [sym_keyword_in] = ACTIONS(210), + [sym_keyword_not_inside] = ACTIONS(208), + [sym_keyword_all_inside] = ACTIONS(208), + [sym_keyword_any_inside] = ACTIONS(208), + [sym_keyword_none_inside] = ACTIONS(208), + [sym_keyword_outside] = ACTIONS(208), + [sym_keyword_intersects] = ACTIONS(208), + [sym_keyword_flexible] = ACTIONS(208), + [sym_keyword_readonly] = ACTIONS(208), + [sym_keyword_type] = ACTIONS(208), + [sym_keyword_default] = ACTIONS(208), + [sym_keyword_assert] = ACTIONS(208), + [sym_keyword_permissions] = ACTIONS(208), + [sym_keyword_for] = ACTIONS(208), + [sym_keyword_comment] = ACTIONS(208), + [anon_sym_COMMA] = ACTIONS(208), + [anon_sym_DASH_GT] = ACTIONS(208), + [anon_sym_LBRACK] = ACTIONS(208), + [anon_sym_RPAREN] = ACTIONS(208), + [anon_sym_RBRACE] = ACTIONS(208), + [anon_sym_LT_DASH] = ACTIONS(210), + [anon_sym_LT_DASH_GT] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(208), + [anon_sym_LT] = ACTIONS(210), + [anon_sym_GT] = ACTIONS(210), + [anon_sym_EQ] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(210), + [anon_sym_LT_PIPE] = ACTIONS(208), + [anon_sym_AMP_AMP] = ACTIONS(208), + [anon_sym_PIPE_PIPE] = ACTIONS(208), + [anon_sym_QMARK_QMARK] = ACTIONS(208), + [anon_sym_QMARK_COLON] = ACTIONS(208), + [anon_sym_BANG_EQ] = ACTIONS(208), + [anon_sym_EQ_EQ] = ACTIONS(208), + [anon_sym_QMARK_EQ] = ACTIONS(208), + [anon_sym_STAR_EQ] = ACTIONS(208), + [anon_sym_TILDE] = ACTIONS(208), + [anon_sym_BANG_TILDE] = ACTIONS(208), + [anon_sym_STAR_TILDE] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(208), + [anon_sym_GT_EQ] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_PLUS_EQ] = ACTIONS(208), + [anon_sym_DASH_EQ] = ACTIONS(208), + [anon_sym_u00d7] = ACTIONS(208), + [anon_sym_SLASH] = ACTIONS(210), + [anon_sym_u00f7] = ACTIONS(208), + [anon_sym_STAR_STAR] = ACTIONS(208), + [anon_sym_u220b] = ACTIONS(208), + [anon_sym_u220c] = ACTIONS(208), + [anon_sym_u2287] = ACTIONS(208), + [anon_sym_u2283] = ACTIONS(208), + [anon_sym_u2285] = ACTIONS(208), + [anon_sym_u2208] = ACTIONS(208), + [anon_sym_u2209] = ACTIONS(208), + [anon_sym_u2286] = ACTIONS(208), + [anon_sym_u2282] = ACTIONS(208), + [anon_sym_u2284] = ACTIONS(208), + [anon_sym_AT_AT] = ACTIONS(208), }, - [100] = { + [105] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(124), - [sym_keyword_value] = ACTIONS(124), - [sym_keyword_explain] = ACTIONS(124), - [sym_keyword_parallel] = ACTIONS(124), - [sym_keyword_timeout] = ACTIONS(124), - [sym_keyword_fetch] = ACTIONS(124), - [sym_keyword_limit] = ACTIONS(124), - [sym_keyword_rand] = ACTIONS(124), - [sym_keyword_collate] = ACTIONS(124), - [sym_keyword_numeric] = ACTIONS(124), - [sym_keyword_asc] = ACTIONS(124), - [sym_keyword_desc] = ACTIONS(124), - [sym_keyword_and] = ACTIONS(124), - [sym_keyword_or] = ACTIONS(124), - [sym_keyword_is] = ACTIONS(124), - [sym_keyword_not] = ACTIONS(126), - [sym_keyword_contains] = ACTIONS(124), - [sym_keyword_contains_not] = ACTIONS(124), - [sym_keyword_contains_all] = ACTIONS(124), - [sym_keyword_contains_any] = ACTIONS(124), - [sym_keyword_contains_none] = ACTIONS(124), - [sym_keyword_inside] = ACTIONS(124), - [sym_keyword_in] = ACTIONS(126), - [sym_keyword_not_inside] = ACTIONS(124), - [sym_keyword_all_inside] = ACTIONS(124), - [sym_keyword_any_inside] = ACTIONS(124), - [sym_keyword_none_inside] = ACTIONS(124), - [sym_keyword_outside] = ACTIONS(124), - [sym_keyword_intersects] = ACTIONS(124), - [sym_keyword_flexible] = ACTIONS(124), - [sym_keyword_readonly] = ACTIONS(124), - [sym_keyword_type] = ACTIONS(124), - [sym_keyword_default] = ACTIONS(124), - [sym_keyword_assert] = ACTIONS(124), - [sym_keyword_permissions] = ACTIONS(124), - [sym_keyword_for] = ACTIONS(124), - [sym_keyword_comment] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_DASH_GT] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(124), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_LT_DASH] = ACTIONS(126), - [anon_sym_LT_DASH_GT] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_LT] = ACTIONS(126), - [anon_sym_GT] = ACTIONS(126), - [anon_sym_DOT_DOT] = ACTIONS(124), - [anon_sym_EQ] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), - [anon_sym_AT] = ACTIONS(126), - [anon_sym_LT_PIPE] = ACTIONS(124), - [anon_sym_AMP_AMP] = ACTIONS(124), - [anon_sym_PIPE_PIPE] = ACTIONS(124), - [anon_sym_QMARK_QMARK] = ACTIONS(124), - [anon_sym_QMARK_COLON] = ACTIONS(124), - [anon_sym_BANG_EQ] = ACTIONS(124), - [anon_sym_EQ_EQ] = ACTIONS(124), - [anon_sym_QMARK_EQ] = ACTIONS(124), - [anon_sym_STAR_EQ] = ACTIONS(124), - [anon_sym_TILDE] = ACTIONS(124), - [anon_sym_BANG_TILDE] = ACTIONS(124), - [anon_sym_STAR_TILDE] = ACTIONS(124), - [anon_sym_LT_EQ] = ACTIONS(124), - [anon_sym_GT_EQ] = ACTIONS(124), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_PLUS_EQ] = ACTIONS(124), - [anon_sym_DASH_EQ] = ACTIONS(124), - [anon_sym_u00d7] = ACTIONS(124), - [anon_sym_SLASH] = ACTIONS(126), - [anon_sym_u00f7] = ACTIONS(124), - [anon_sym_STAR_STAR] = ACTIONS(124), - [anon_sym_u220b] = ACTIONS(124), - [anon_sym_u220c] = ACTIONS(124), - [anon_sym_u2287] = ACTIONS(124), - [anon_sym_u2283] = ACTIONS(124), - [anon_sym_u2285] = ACTIONS(124), - [anon_sym_u2208] = ACTIONS(124), - [anon_sym_u2209] = ACTIONS(124), - [anon_sym_u2286] = ACTIONS(124), - [anon_sym_u2282] = ACTIONS(124), - [anon_sym_u2284] = ACTIONS(124), - [anon_sym_AT_AT] = ACTIONS(124), - }, - [101] = { - [aux_sym_duration_repeat1] = STATE(101), - [ts_builtin_sym_end] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(103), - [sym_keyword_value] = ACTIONS(103), - [sym_keyword_explain] = ACTIONS(103), - [sym_keyword_parallel] = ACTIONS(103), - [sym_keyword_timeout] = ACTIONS(103), - [sym_keyword_fetch] = ACTIONS(103), - [sym_keyword_limit] = ACTIONS(103), - [sym_keyword_rand] = ACTIONS(103), - [sym_keyword_collate] = ACTIONS(103), - [sym_keyword_numeric] = ACTIONS(103), - [sym_keyword_asc] = ACTIONS(103), - [sym_keyword_desc] = ACTIONS(103), - [sym_keyword_and] = ACTIONS(103), - [sym_keyword_or] = ACTIONS(103), - [sym_keyword_is] = ACTIONS(103), - [sym_keyword_not] = ACTIONS(105), - [sym_keyword_contains] = ACTIONS(103), - [sym_keyword_contains_not] = ACTIONS(103), - [sym_keyword_contains_all] = ACTIONS(103), - [sym_keyword_contains_any] = ACTIONS(103), - [sym_keyword_contains_none] = ACTIONS(103), - [sym_keyword_inside] = ACTIONS(103), - [sym_keyword_in] = ACTIONS(105), - [sym_keyword_not_inside] = ACTIONS(103), - [sym_keyword_all_inside] = ACTIONS(103), - [sym_keyword_any_inside] = ACTIONS(103), - [sym_keyword_none_inside] = ACTIONS(103), - [sym_keyword_outside] = ACTIONS(103), - [sym_keyword_intersects] = ACTIONS(103), - [sym_keyword_flexible] = ACTIONS(103), - [sym_keyword_readonly] = ACTIONS(103), - [sym_keyword_type] = ACTIONS(103), - [sym_keyword_default] = ACTIONS(103), - [sym_keyword_assert] = ACTIONS(103), - [sym_keyword_permissions] = ACTIONS(103), - [sym_keyword_for] = ACTIONS(103), - [sym_keyword_comment] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_DASH_GT] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(105), - [anon_sym_LT_DASH_GT] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_EQ] = ACTIONS(105), - [sym_duration_part] = ACTIONS(288), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_AT] = ACTIONS(105), - [anon_sym_LT_PIPE] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_PIPE_PIPE] = ACTIONS(103), - [anon_sym_QMARK_QMARK] = ACTIONS(103), - [anon_sym_QMARK_COLON] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_QMARK_EQ] = ACTIONS(103), - [anon_sym_STAR_EQ] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_STAR_TILDE] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_PLUS_EQ] = ACTIONS(103), - [anon_sym_DASH_EQ] = ACTIONS(103), - [anon_sym_u00d7] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(105), - [anon_sym_u00f7] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_u220b] = ACTIONS(103), - [anon_sym_u220c] = ACTIONS(103), - [anon_sym_u2287] = ACTIONS(103), - [anon_sym_u2283] = ACTIONS(103), - [anon_sym_u2285] = ACTIONS(103), - [anon_sym_u2208] = ACTIONS(103), - [anon_sym_u2209] = ACTIONS(103), - [anon_sym_u2286] = ACTIONS(103), - [anon_sym_u2282] = ACTIONS(103), - [anon_sym_u2284] = ACTIONS(103), - [anon_sym_AT_AT] = ACTIONS(103), + [sym_semi_colon] = ACTIONS(172), + [sym_keyword_value] = ACTIONS(172), + [sym_keyword_explain] = ACTIONS(172), + [sym_keyword_parallel] = ACTIONS(172), + [sym_keyword_timeout] = ACTIONS(172), + [sym_keyword_fetch] = ACTIONS(172), + [sym_keyword_limit] = ACTIONS(172), + [sym_keyword_rand] = ACTIONS(172), + [sym_keyword_collate] = ACTIONS(172), + [sym_keyword_numeric] = ACTIONS(172), + [sym_keyword_asc] = ACTIONS(172), + [sym_keyword_desc] = ACTIONS(172), + [sym_keyword_and] = ACTIONS(172), + [sym_keyword_or] = ACTIONS(172), + [sym_keyword_is] = ACTIONS(172), + [sym_keyword_not] = ACTIONS(174), + [sym_keyword_contains] = ACTIONS(172), + [sym_keyword_contains_not] = ACTIONS(172), + [sym_keyword_contains_all] = ACTIONS(172), + [sym_keyword_contains_any] = ACTIONS(172), + [sym_keyword_contains_none] = ACTIONS(172), + [sym_keyword_inside] = ACTIONS(172), + [sym_keyword_in] = ACTIONS(174), + [sym_keyword_not_inside] = ACTIONS(172), + [sym_keyword_all_inside] = ACTIONS(172), + [sym_keyword_any_inside] = ACTIONS(172), + [sym_keyword_none_inside] = ACTIONS(172), + [sym_keyword_outside] = ACTIONS(172), + [sym_keyword_intersects] = ACTIONS(172), + [sym_keyword_flexible] = ACTIONS(172), + [sym_keyword_readonly] = ACTIONS(172), + [sym_keyword_type] = ACTIONS(172), + [sym_keyword_default] = ACTIONS(172), + [sym_keyword_assert] = ACTIONS(172), + [sym_keyword_permissions] = ACTIONS(172), + [sym_keyword_for] = ACTIONS(172), + [sym_keyword_comment] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_DASH_GT] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_RPAREN] = ACTIONS(172), + [anon_sym_RBRACE] = ACTIONS(172), + [anon_sym_LT_DASH] = ACTIONS(174), + [anon_sym_LT_DASH_GT] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_EQ] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_AT] = ACTIONS(174), + [anon_sym_LT_PIPE] = ACTIONS(172), + [anon_sym_AMP_AMP] = ACTIONS(172), + [anon_sym_PIPE_PIPE] = ACTIONS(172), + [anon_sym_QMARK_QMARK] = ACTIONS(172), + [anon_sym_QMARK_COLON] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_EQ_EQ] = ACTIONS(172), + [anon_sym_QMARK_EQ] = ACTIONS(172), + [anon_sym_STAR_EQ] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_BANG_TILDE] = ACTIONS(172), + [anon_sym_STAR_TILDE] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_PLUS_EQ] = ACTIONS(172), + [anon_sym_DASH_EQ] = ACTIONS(172), + [anon_sym_u00d7] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_u00f7] = ACTIONS(172), + [anon_sym_STAR_STAR] = ACTIONS(172), + [anon_sym_u220b] = ACTIONS(172), + [anon_sym_u220c] = ACTIONS(172), + [anon_sym_u2287] = ACTIONS(172), + [anon_sym_u2283] = ACTIONS(172), + [anon_sym_u2285] = ACTIONS(172), + [anon_sym_u2208] = ACTIONS(172), + [anon_sym_u2209] = ACTIONS(172), + [anon_sym_u2286] = ACTIONS(172), + [anon_sym_u2282] = ACTIONS(172), + [anon_sym_u2284] = ACTIONS(172), + [anon_sym_AT_AT] = ACTIONS(172), }, - [102] = { + [106] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(120), - [sym_keyword_value] = ACTIONS(120), - [sym_keyword_explain] = ACTIONS(120), - [sym_keyword_parallel] = ACTIONS(120), - [sym_keyword_timeout] = ACTIONS(120), - [sym_keyword_fetch] = ACTIONS(120), - [sym_keyword_limit] = ACTIONS(120), - [sym_keyword_rand] = ACTIONS(120), - [sym_keyword_collate] = ACTIONS(120), - [sym_keyword_numeric] = ACTIONS(120), - [sym_keyword_asc] = ACTIONS(120), - [sym_keyword_desc] = ACTIONS(120), - [sym_keyword_and] = ACTIONS(120), - [sym_keyword_or] = ACTIONS(120), - [sym_keyword_is] = ACTIONS(120), - [sym_keyword_not] = ACTIONS(122), - [sym_keyword_contains] = ACTIONS(120), - [sym_keyword_contains_not] = ACTIONS(120), - [sym_keyword_contains_all] = ACTIONS(120), - [sym_keyword_contains_any] = ACTIONS(120), - [sym_keyword_contains_none] = ACTIONS(120), - [sym_keyword_inside] = ACTIONS(120), - [sym_keyword_in] = ACTIONS(122), - [sym_keyword_not_inside] = ACTIONS(120), - [sym_keyword_all_inside] = ACTIONS(120), - [sym_keyword_any_inside] = ACTIONS(120), - [sym_keyword_none_inside] = ACTIONS(120), - [sym_keyword_outside] = ACTIONS(120), - [sym_keyword_intersects] = ACTIONS(120), - [sym_keyword_flexible] = ACTIONS(120), - [sym_keyword_readonly] = ACTIONS(120), - [sym_keyword_type] = ACTIONS(120), - [sym_keyword_default] = ACTIONS(120), - [sym_keyword_assert] = ACTIONS(120), - [sym_keyword_permissions] = ACTIONS(120), - [sym_keyword_for] = ACTIONS(120), - [sym_keyword_comment] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_DASH_GT] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(120), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_RBRACE] = ACTIONS(120), - [anon_sym_LT_DASH] = ACTIONS(122), - [anon_sym_LT_DASH_GT] = ACTIONS(120), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_AT] = ACTIONS(122), - [anon_sym_LT_PIPE] = ACTIONS(120), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_QMARK_COLON] = ACTIONS(120), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_QMARK_EQ] = ACTIONS(120), - [anon_sym_STAR_EQ] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(120), - [anon_sym_BANG_TILDE] = ACTIONS(120), - [anon_sym_STAR_TILDE] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(120), - [anon_sym_GT_EQ] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_PLUS_EQ] = ACTIONS(120), - [anon_sym_DASH_EQ] = ACTIONS(120), - [anon_sym_u00d7] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_u00f7] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_u220b] = ACTIONS(120), - [anon_sym_u220c] = ACTIONS(120), - [anon_sym_u2287] = ACTIONS(120), - [anon_sym_u2283] = ACTIONS(120), - [anon_sym_u2285] = ACTIONS(120), - [anon_sym_u2208] = ACTIONS(120), - [anon_sym_u2209] = ACTIONS(120), - [anon_sym_u2286] = ACTIONS(120), - [anon_sym_u2282] = ACTIONS(120), - [anon_sym_u2284] = ACTIONS(120), - [anon_sym_AT_AT] = ACTIONS(120), + [sym_semi_colon] = ACTIONS(212), + [sym_keyword_value] = ACTIONS(212), + [sym_keyword_explain] = ACTIONS(212), + [sym_keyword_parallel] = ACTIONS(212), + [sym_keyword_timeout] = ACTIONS(212), + [sym_keyword_fetch] = ACTIONS(212), + [sym_keyword_limit] = ACTIONS(212), + [sym_keyword_rand] = ACTIONS(212), + [sym_keyword_collate] = ACTIONS(212), + [sym_keyword_numeric] = ACTIONS(212), + [sym_keyword_asc] = ACTIONS(212), + [sym_keyword_desc] = ACTIONS(212), + [sym_keyword_and] = ACTIONS(212), + [sym_keyword_or] = ACTIONS(212), + [sym_keyword_is] = ACTIONS(212), + [sym_keyword_not] = ACTIONS(214), + [sym_keyword_contains] = ACTIONS(212), + [sym_keyword_contains_not] = ACTIONS(212), + [sym_keyword_contains_all] = ACTIONS(212), + [sym_keyword_contains_any] = ACTIONS(212), + [sym_keyword_contains_none] = ACTIONS(212), + [sym_keyword_inside] = ACTIONS(212), + [sym_keyword_in] = ACTIONS(214), + [sym_keyword_not_inside] = ACTIONS(212), + [sym_keyword_all_inside] = ACTIONS(212), + [sym_keyword_any_inside] = ACTIONS(212), + [sym_keyword_none_inside] = ACTIONS(212), + [sym_keyword_outside] = ACTIONS(212), + [sym_keyword_intersects] = ACTIONS(212), + [sym_keyword_flexible] = ACTIONS(212), + [sym_keyword_readonly] = ACTIONS(212), + [sym_keyword_type] = ACTIONS(212), + [sym_keyword_default] = ACTIONS(212), + [sym_keyword_assert] = ACTIONS(212), + [sym_keyword_permissions] = ACTIONS(212), + [sym_keyword_for] = ACTIONS(212), + [sym_keyword_comment] = ACTIONS(212), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_DASH_GT] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(212), + [anon_sym_RPAREN] = ACTIONS(212), + [anon_sym_RBRACE] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(214), + [anon_sym_LT_DASH_GT] = ACTIONS(212), + [anon_sym_STAR] = ACTIONS(214), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_EQ] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_AT] = ACTIONS(214), + [anon_sym_LT_PIPE] = ACTIONS(212), + [anon_sym_AMP_AMP] = ACTIONS(212), + [anon_sym_PIPE_PIPE] = ACTIONS(212), + [anon_sym_QMARK_QMARK] = ACTIONS(212), + [anon_sym_QMARK_COLON] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(212), + [anon_sym_QMARK_EQ] = ACTIONS(212), + [anon_sym_STAR_EQ] = ACTIONS(212), + [anon_sym_TILDE] = ACTIONS(212), + [anon_sym_BANG_TILDE] = ACTIONS(212), + [anon_sym_STAR_TILDE] = ACTIONS(212), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_PLUS_EQ] = ACTIONS(212), + [anon_sym_DASH_EQ] = ACTIONS(212), + [anon_sym_u00d7] = ACTIONS(212), + [anon_sym_SLASH] = ACTIONS(214), + [anon_sym_u00f7] = ACTIONS(212), + [anon_sym_STAR_STAR] = ACTIONS(212), + [anon_sym_u220b] = ACTIONS(212), + [anon_sym_u220c] = ACTIONS(212), + [anon_sym_u2287] = ACTIONS(212), + [anon_sym_u2283] = ACTIONS(212), + [anon_sym_u2285] = ACTIONS(212), + [anon_sym_u2208] = ACTIONS(212), + [anon_sym_u2209] = ACTIONS(212), + [anon_sym_u2286] = ACTIONS(212), + [anon_sym_u2282] = ACTIONS(212), + [anon_sym_u2284] = ACTIONS(212), + [anon_sym_AT_AT] = ACTIONS(212), }, - [103] = { + [107] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(140), - [sym_keyword_value] = ACTIONS(140), - [sym_keyword_explain] = ACTIONS(140), - [sym_keyword_parallel] = ACTIONS(140), - [sym_keyword_timeout] = ACTIONS(140), - [sym_keyword_fetch] = ACTIONS(140), - [sym_keyword_limit] = ACTIONS(140), - [sym_keyword_rand] = ACTIONS(140), - [sym_keyword_collate] = ACTIONS(140), - [sym_keyword_numeric] = ACTIONS(140), - [sym_keyword_asc] = ACTIONS(140), - [sym_keyword_desc] = ACTIONS(140), - [sym_keyword_and] = ACTIONS(140), - [sym_keyword_or] = ACTIONS(140), - [sym_keyword_is] = ACTIONS(140), - [sym_keyword_not] = ACTIONS(142), - [sym_keyword_contains] = ACTIONS(140), - [sym_keyword_contains_not] = ACTIONS(140), - [sym_keyword_contains_all] = ACTIONS(140), - [sym_keyword_contains_any] = ACTIONS(140), - [sym_keyword_contains_none] = ACTIONS(140), - [sym_keyword_inside] = ACTIONS(140), - [sym_keyword_in] = ACTIONS(142), - [sym_keyword_not_inside] = ACTIONS(140), - [sym_keyword_all_inside] = ACTIONS(140), - [sym_keyword_any_inside] = ACTIONS(140), - [sym_keyword_none_inside] = ACTIONS(140), - [sym_keyword_outside] = ACTIONS(140), - [sym_keyword_intersects] = ACTIONS(140), - [sym_keyword_flexible] = ACTIONS(140), - [sym_keyword_readonly] = ACTIONS(140), - [sym_keyword_type] = ACTIONS(140), - [sym_keyword_default] = ACTIONS(140), - [sym_keyword_assert] = ACTIONS(140), - [sym_keyword_permissions] = ACTIONS(140), - [sym_keyword_for] = ACTIONS(140), - [sym_keyword_comment] = ACTIONS(140), - [anon_sym_COMMA] = ACTIONS(140), - [anon_sym_DASH_GT] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(140), - [anon_sym_RPAREN] = ACTIONS(140), - [anon_sym_RBRACE] = ACTIONS(140), - [anon_sym_LT_DASH] = ACTIONS(142), - [anon_sym_LT_DASH_GT] = ACTIONS(140), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_DOT] = ACTIONS(140), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_GT] = ACTIONS(142), - [anon_sym_EQ] = ACTIONS(142), - [anon_sym_DASH] = ACTIONS(142), - [anon_sym_AT] = ACTIONS(142), - [anon_sym_LT_PIPE] = ACTIONS(140), - [anon_sym_AMP_AMP] = ACTIONS(140), - [anon_sym_PIPE_PIPE] = ACTIONS(140), - [anon_sym_QMARK_QMARK] = ACTIONS(140), - [anon_sym_QMARK_COLON] = ACTIONS(140), - [anon_sym_BANG_EQ] = ACTIONS(140), - [anon_sym_EQ_EQ] = ACTIONS(140), - [anon_sym_QMARK_EQ] = ACTIONS(140), - [anon_sym_STAR_EQ] = ACTIONS(140), - [anon_sym_TILDE] = ACTIONS(140), - [anon_sym_BANG_TILDE] = ACTIONS(140), - [anon_sym_STAR_TILDE] = ACTIONS(140), - [anon_sym_LT_EQ] = ACTIONS(140), - [anon_sym_GT_EQ] = ACTIONS(140), - [anon_sym_PLUS] = ACTIONS(142), - [anon_sym_PLUS_EQ] = ACTIONS(140), - [anon_sym_DASH_EQ] = ACTIONS(140), - [anon_sym_u00d7] = ACTIONS(140), - [anon_sym_SLASH] = ACTIONS(142), - [anon_sym_u00f7] = ACTIONS(140), - [anon_sym_STAR_STAR] = ACTIONS(140), - [anon_sym_u220b] = ACTIONS(140), - [anon_sym_u220c] = ACTIONS(140), - [anon_sym_u2287] = ACTIONS(140), - [anon_sym_u2283] = ACTIONS(140), - [anon_sym_u2285] = ACTIONS(140), - [anon_sym_u2208] = ACTIONS(140), - [anon_sym_u2209] = ACTIONS(140), - [anon_sym_u2286] = ACTIONS(140), - [anon_sym_u2282] = ACTIONS(140), - [anon_sym_u2284] = ACTIONS(140), - [anon_sym_AT_AT] = ACTIONS(140), + [sym_semi_colon] = ACTIONS(180), + [sym_keyword_value] = ACTIONS(180), + [sym_keyword_explain] = ACTIONS(180), + [sym_keyword_parallel] = ACTIONS(180), + [sym_keyword_timeout] = ACTIONS(180), + [sym_keyword_fetch] = ACTIONS(180), + [sym_keyword_limit] = ACTIONS(180), + [sym_keyword_rand] = ACTIONS(180), + [sym_keyword_collate] = ACTIONS(180), + [sym_keyword_numeric] = ACTIONS(180), + [sym_keyword_asc] = ACTIONS(180), + [sym_keyword_desc] = ACTIONS(180), + [sym_keyword_and] = ACTIONS(180), + [sym_keyword_or] = ACTIONS(180), + [sym_keyword_is] = ACTIONS(180), + [sym_keyword_not] = ACTIONS(182), + [sym_keyword_contains] = ACTIONS(180), + [sym_keyword_contains_not] = ACTIONS(180), + [sym_keyword_contains_all] = ACTIONS(180), + [sym_keyword_contains_any] = ACTIONS(180), + [sym_keyword_contains_none] = ACTIONS(180), + [sym_keyword_inside] = ACTIONS(180), + [sym_keyword_in] = ACTIONS(182), + [sym_keyword_not_inside] = ACTIONS(180), + [sym_keyword_all_inside] = ACTIONS(180), + [sym_keyword_any_inside] = ACTIONS(180), + [sym_keyword_none_inside] = ACTIONS(180), + [sym_keyword_outside] = ACTIONS(180), + [sym_keyword_intersects] = ACTIONS(180), + [sym_keyword_flexible] = ACTIONS(180), + [sym_keyword_readonly] = ACTIONS(180), + [sym_keyword_type] = ACTIONS(180), + [sym_keyword_default] = ACTIONS(180), + [sym_keyword_assert] = ACTIONS(180), + [sym_keyword_permissions] = ACTIONS(180), + [sym_keyword_for] = ACTIONS(180), + [sym_keyword_comment] = ACTIONS(180), + [anon_sym_COMMA] = ACTIONS(180), + [anon_sym_DASH_GT] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LT_DASH] = ACTIONS(182), + [anon_sym_LT_DASH_GT] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(182), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(182), + [anon_sym_GT] = ACTIONS(182), + [anon_sym_EQ] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_AT] = ACTIONS(182), + [anon_sym_LT_PIPE] = ACTIONS(180), + [anon_sym_AMP_AMP] = ACTIONS(180), + [anon_sym_PIPE_PIPE] = ACTIONS(180), + [anon_sym_QMARK_QMARK] = ACTIONS(180), + [anon_sym_QMARK_COLON] = ACTIONS(180), + [anon_sym_BANG_EQ] = ACTIONS(180), + [anon_sym_EQ_EQ] = ACTIONS(180), + [anon_sym_QMARK_EQ] = ACTIONS(180), + [anon_sym_STAR_EQ] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_BANG_TILDE] = ACTIONS(180), + [anon_sym_STAR_TILDE] = ACTIONS(180), + [anon_sym_LT_EQ] = ACTIONS(180), + [anon_sym_GT_EQ] = ACTIONS(180), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_PLUS_EQ] = ACTIONS(180), + [anon_sym_DASH_EQ] = ACTIONS(180), + [anon_sym_u00d7] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(182), + [anon_sym_u00f7] = ACTIONS(180), + [anon_sym_STAR_STAR] = ACTIONS(180), + [anon_sym_u220b] = ACTIONS(180), + [anon_sym_u220c] = ACTIONS(180), + [anon_sym_u2287] = ACTIONS(180), + [anon_sym_u2283] = ACTIONS(180), + [anon_sym_u2285] = ACTIONS(180), + [anon_sym_u2208] = ACTIONS(180), + [anon_sym_u2209] = ACTIONS(180), + [anon_sym_u2286] = ACTIONS(180), + [anon_sym_u2282] = ACTIONS(180), + [anon_sym_u2284] = ACTIONS(180), + [anon_sym_AT_AT] = ACTIONS(180), }, - [104] = { + [108] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(156), - [sym_keyword_value] = ACTIONS(156), - [sym_keyword_explain] = ACTIONS(156), - [sym_keyword_parallel] = ACTIONS(156), - [sym_keyword_timeout] = ACTIONS(156), - [sym_keyword_fetch] = ACTIONS(156), - [sym_keyword_limit] = ACTIONS(156), - [sym_keyword_rand] = ACTIONS(156), - [sym_keyword_collate] = ACTIONS(156), - [sym_keyword_numeric] = ACTIONS(156), - [sym_keyword_asc] = ACTIONS(156), - [sym_keyword_desc] = ACTIONS(156), - [sym_keyword_and] = ACTIONS(156), - [sym_keyword_or] = ACTIONS(156), - [sym_keyword_is] = ACTIONS(156), - [sym_keyword_not] = ACTIONS(158), - [sym_keyword_contains] = ACTIONS(156), - [sym_keyword_contains_not] = ACTIONS(156), - [sym_keyword_contains_all] = ACTIONS(156), - [sym_keyword_contains_any] = ACTIONS(156), - [sym_keyword_contains_none] = ACTIONS(156), - [sym_keyword_inside] = ACTIONS(156), - [sym_keyword_in] = ACTIONS(158), - [sym_keyword_not_inside] = ACTIONS(156), - [sym_keyword_all_inside] = ACTIONS(156), - [sym_keyword_any_inside] = ACTIONS(156), - [sym_keyword_none_inside] = ACTIONS(156), - [sym_keyword_outside] = ACTIONS(156), - [sym_keyword_intersects] = ACTIONS(156), - [sym_keyword_flexible] = ACTIONS(156), - [sym_keyword_readonly] = ACTIONS(156), - [sym_keyword_type] = ACTIONS(156), - [sym_keyword_default] = ACTIONS(156), - [sym_keyword_assert] = ACTIONS(156), - [sym_keyword_permissions] = ACTIONS(156), - [sym_keyword_for] = ACTIONS(156), - [sym_keyword_comment] = ACTIONS(156), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_DASH_GT] = ACTIONS(156), - [anon_sym_LBRACK] = ACTIONS(156), - [anon_sym_RPAREN] = ACTIONS(156), - [anon_sym_RBRACE] = ACTIONS(156), - [anon_sym_LT_DASH] = ACTIONS(158), - [anon_sym_LT_DASH_GT] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(156), - [anon_sym_LT] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(158), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(158), - [anon_sym_LT_PIPE] = ACTIONS(156), - [anon_sym_AMP_AMP] = ACTIONS(156), - [anon_sym_PIPE_PIPE] = ACTIONS(156), - [anon_sym_QMARK_QMARK] = ACTIONS(156), - [anon_sym_QMARK_COLON] = ACTIONS(156), - [anon_sym_BANG_EQ] = ACTIONS(156), - [anon_sym_EQ_EQ] = ACTIONS(156), - [anon_sym_QMARK_EQ] = ACTIONS(156), - [anon_sym_STAR_EQ] = ACTIONS(156), - [anon_sym_TILDE] = ACTIONS(156), - [anon_sym_BANG_TILDE] = ACTIONS(156), - [anon_sym_STAR_TILDE] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(156), - [anon_sym_DASH_EQ] = ACTIONS(156), - [anon_sym_u00d7] = ACTIONS(156), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_u00f7] = ACTIONS(156), - [anon_sym_STAR_STAR] = ACTIONS(156), - [anon_sym_u220b] = ACTIONS(156), - [anon_sym_u220c] = ACTIONS(156), - [anon_sym_u2287] = ACTIONS(156), - [anon_sym_u2283] = ACTIONS(156), - [anon_sym_u2285] = ACTIONS(156), - [anon_sym_u2208] = ACTIONS(156), - [anon_sym_u2209] = ACTIONS(156), - [anon_sym_u2286] = ACTIONS(156), - [anon_sym_u2282] = ACTIONS(156), - [anon_sym_u2284] = ACTIONS(156), - [anon_sym_AT_AT] = ACTIONS(156), + [sym_semi_colon] = ACTIONS(192), + [sym_keyword_value] = ACTIONS(192), + [sym_keyword_explain] = ACTIONS(192), + [sym_keyword_parallel] = ACTIONS(192), + [sym_keyword_timeout] = ACTIONS(192), + [sym_keyword_fetch] = ACTIONS(192), + [sym_keyword_limit] = ACTIONS(192), + [sym_keyword_rand] = ACTIONS(192), + [sym_keyword_collate] = ACTIONS(192), + [sym_keyword_numeric] = ACTIONS(192), + [sym_keyword_asc] = ACTIONS(192), + [sym_keyword_desc] = ACTIONS(192), + [sym_keyword_and] = ACTIONS(192), + [sym_keyword_or] = ACTIONS(192), + [sym_keyword_is] = ACTIONS(192), + [sym_keyword_not] = ACTIONS(194), + [sym_keyword_contains] = ACTIONS(192), + [sym_keyword_contains_not] = ACTIONS(192), + [sym_keyword_contains_all] = ACTIONS(192), + [sym_keyword_contains_any] = ACTIONS(192), + [sym_keyword_contains_none] = ACTIONS(192), + [sym_keyword_inside] = ACTIONS(192), + [sym_keyword_in] = ACTIONS(194), + [sym_keyword_not_inside] = ACTIONS(192), + [sym_keyword_all_inside] = ACTIONS(192), + [sym_keyword_any_inside] = ACTIONS(192), + [sym_keyword_none_inside] = ACTIONS(192), + [sym_keyword_outside] = ACTIONS(192), + [sym_keyword_intersects] = ACTIONS(192), + [sym_keyword_flexible] = ACTIONS(192), + [sym_keyword_readonly] = ACTIONS(192), + [sym_keyword_type] = ACTIONS(192), + [sym_keyword_default] = ACTIONS(192), + [sym_keyword_assert] = ACTIONS(192), + [sym_keyword_permissions] = ACTIONS(192), + [sym_keyword_for] = ACTIONS(192), + [sym_keyword_comment] = ACTIONS(192), + [anon_sym_COMMA] = ACTIONS(192), + [anon_sym_DASH_GT] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(192), + [anon_sym_RPAREN] = ACTIONS(192), + [anon_sym_RBRACE] = ACTIONS(192), + [anon_sym_LT_DASH] = ACTIONS(194), + [anon_sym_LT_DASH_GT] = ACTIONS(192), + [anon_sym_STAR] = ACTIONS(194), + [anon_sym_DOT] = ACTIONS(192), + [anon_sym_LT] = ACTIONS(194), + [anon_sym_GT] = ACTIONS(194), + [anon_sym_EQ] = ACTIONS(194), + [anon_sym_DASH] = ACTIONS(194), + [anon_sym_AT] = ACTIONS(194), + [anon_sym_LT_PIPE] = ACTIONS(192), + [anon_sym_AMP_AMP] = ACTIONS(192), + [anon_sym_PIPE_PIPE] = ACTIONS(192), + [anon_sym_QMARK_QMARK] = ACTIONS(192), + [anon_sym_QMARK_COLON] = ACTIONS(192), + [anon_sym_BANG_EQ] = ACTIONS(192), + [anon_sym_EQ_EQ] = ACTIONS(192), + [anon_sym_QMARK_EQ] = ACTIONS(192), + [anon_sym_STAR_EQ] = ACTIONS(192), + [anon_sym_TILDE] = ACTIONS(192), + [anon_sym_BANG_TILDE] = ACTIONS(192), + [anon_sym_STAR_TILDE] = ACTIONS(192), + [anon_sym_LT_EQ] = ACTIONS(192), + [anon_sym_GT_EQ] = ACTIONS(192), + [anon_sym_PLUS] = ACTIONS(194), + [anon_sym_PLUS_EQ] = ACTIONS(192), + [anon_sym_DASH_EQ] = ACTIONS(192), + [anon_sym_u00d7] = ACTIONS(192), + [anon_sym_SLASH] = ACTIONS(194), + [anon_sym_u00f7] = ACTIONS(192), + [anon_sym_STAR_STAR] = ACTIONS(192), + [anon_sym_u220b] = ACTIONS(192), + [anon_sym_u220c] = ACTIONS(192), + [anon_sym_u2287] = ACTIONS(192), + [anon_sym_u2283] = ACTIONS(192), + [anon_sym_u2285] = ACTIONS(192), + [anon_sym_u2208] = ACTIONS(192), + [anon_sym_u2209] = ACTIONS(192), + [anon_sym_u2286] = ACTIONS(192), + [anon_sym_u2282] = ACTIONS(192), + [anon_sym_u2284] = ACTIONS(192), + [anon_sym_AT_AT] = ACTIONS(192), }, - [105] = { + [109] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(188), [sym_keyword_value] = ACTIONS(188), @@ -26069,250 +26433,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_asc] = ACTIONS(188), [sym_keyword_desc] = ACTIONS(188), [sym_keyword_and] = ACTIONS(188), - [sym_keyword_or] = ACTIONS(188), - [sym_keyword_is] = ACTIONS(188), - [sym_keyword_not] = ACTIONS(190), - [sym_keyword_contains] = ACTIONS(188), - [sym_keyword_contains_not] = ACTIONS(188), - [sym_keyword_contains_all] = ACTIONS(188), - [sym_keyword_contains_any] = ACTIONS(188), - [sym_keyword_contains_none] = ACTIONS(188), - [sym_keyword_inside] = ACTIONS(188), - [sym_keyword_in] = ACTIONS(190), - [sym_keyword_not_inside] = ACTIONS(188), - [sym_keyword_all_inside] = ACTIONS(188), - [sym_keyword_any_inside] = ACTIONS(188), - [sym_keyword_none_inside] = ACTIONS(188), - [sym_keyword_outside] = ACTIONS(188), - [sym_keyword_intersects] = ACTIONS(188), - [sym_keyword_flexible] = ACTIONS(188), - [sym_keyword_readonly] = ACTIONS(188), - [sym_keyword_type] = ACTIONS(188), - [sym_keyword_default] = ACTIONS(188), - [sym_keyword_assert] = ACTIONS(188), - [sym_keyword_permissions] = ACTIONS(188), - [sym_keyword_for] = ACTIONS(188), - [sym_keyword_comment] = ACTIONS(188), - [anon_sym_COMMA] = ACTIONS(188), - [anon_sym_DASH_GT] = ACTIONS(188), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_RPAREN] = ACTIONS(188), - [anon_sym_RBRACE] = ACTIONS(188), - [anon_sym_LT_DASH] = ACTIONS(190), - [anon_sym_LT_DASH_GT] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(190), - [anon_sym_DOT] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(190), - [anon_sym_GT] = ACTIONS(190), - [anon_sym_EQ] = ACTIONS(190), - [anon_sym_DASH] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(190), - [anon_sym_LT_PIPE] = ACTIONS(188), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_QMARK_QMARK] = ACTIONS(188), - [anon_sym_QMARK_COLON] = ACTIONS(188), - [anon_sym_BANG_EQ] = ACTIONS(188), - [anon_sym_EQ_EQ] = ACTIONS(188), - [anon_sym_QMARK_EQ] = ACTIONS(188), - [anon_sym_STAR_EQ] = ACTIONS(188), - [anon_sym_TILDE] = ACTIONS(188), - [anon_sym_BANG_TILDE] = ACTIONS(188), - [anon_sym_STAR_TILDE] = ACTIONS(188), - [anon_sym_LT_EQ] = ACTIONS(188), - [anon_sym_GT_EQ] = ACTIONS(188), - [anon_sym_PLUS] = ACTIONS(190), - [anon_sym_PLUS_EQ] = ACTIONS(188), - [anon_sym_DASH_EQ] = ACTIONS(188), - [anon_sym_u00d7] = ACTIONS(188), - [anon_sym_SLASH] = ACTIONS(190), - [anon_sym_u00f7] = ACTIONS(188), - [anon_sym_STAR_STAR] = ACTIONS(188), - [anon_sym_u220b] = ACTIONS(188), - [anon_sym_u220c] = ACTIONS(188), - [anon_sym_u2287] = ACTIONS(188), - [anon_sym_u2283] = ACTIONS(188), - [anon_sym_u2285] = ACTIONS(188), - [anon_sym_u2208] = ACTIONS(188), - [anon_sym_u2209] = ACTIONS(188), - [anon_sym_u2286] = ACTIONS(188), - [anon_sym_u2282] = ACTIONS(188), - [anon_sym_u2284] = ACTIONS(188), - [anon_sym_AT_AT] = ACTIONS(188), - }, - [106] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(196), - [sym_keyword_value] = ACTIONS(196), - [sym_keyword_explain] = ACTIONS(196), - [sym_keyword_parallel] = ACTIONS(196), - [sym_keyword_timeout] = ACTIONS(196), - [sym_keyword_fetch] = ACTIONS(196), - [sym_keyword_limit] = ACTIONS(196), - [sym_keyword_rand] = ACTIONS(196), - [sym_keyword_collate] = ACTIONS(196), - [sym_keyword_numeric] = ACTIONS(196), - [sym_keyword_asc] = ACTIONS(196), - [sym_keyword_desc] = ACTIONS(196), - [sym_keyword_and] = ACTIONS(196), - [sym_keyword_or] = ACTIONS(196), - [sym_keyword_is] = ACTIONS(196), - [sym_keyword_not] = ACTIONS(198), - [sym_keyword_contains] = ACTIONS(196), - [sym_keyword_contains_not] = ACTIONS(196), - [sym_keyword_contains_all] = ACTIONS(196), - [sym_keyword_contains_any] = ACTIONS(196), - [sym_keyword_contains_none] = ACTIONS(196), - [sym_keyword_inside] = ACTIONS(196), - [sym_keyword_in] = ACTIONS(198), - [sym_keyword_not_inside] = ACTIONS(196), - [sym_keyword_all_inside] = ACTIONS(196), - [sym_keyword_any_inside] = ACTIONS(196), - [sym_keyword_none_inside] = ACTIONS(196), - [sym_keyword_outside] = ACTIONS(196), - [sym_keyword_intersects] = ACTIONS(196), - [sym_keyword_flexible] = ACTIONS(196), - [sym_keyword_readonly] = ACTIONS(196), - [sym_keyword_type] = ACTIONS(196), - [sym_keyword_default] = ACTIONS(196), - [sym_keyword_assert] = ACTIONS(196), - [sym_keyword_permissions] = ACTIONS(196), - [sym_keyword_for] = ACTIONS(196), - [sym_keyword_comment] = ACTIONS(196), - [anon_sym_COMMA] = ACTIONS(196), - [anon_sym_DASH_GT] = ACTIONS(196), - [anon_sym_LBRACK] = ACTIONS(196), - [anon_sym_RPAREN] = ACTIONS(196), - [anon_sym_RBRACE] = ACTIONS(196), - [anon_sym_LT_DASH] = ACTIONS(198), - [anon_sym_LT_DASH_GT] = ACTIONS(196), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_DOT] = ACTIONS(196), - [anon_sym_LT] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(198), - [anon_sym_AT] = ACTIONS(198), - [anon_sym_LT_PIPE] = ACTIONS(196), - [anon_sym_AMP_AMP] = ACTIONS(196), - [anon_sym_PIPE_PIPE] = ACTIONS(196), - [anon_sym_QMARK_QMARK] = ACTIONS(196), - [anon_sym_QMARK_COLON] = ACTIONS(196), - [anon_sym_BANG_EQ] = ACTIONS(196), - [anon_sym_EQ_EQ] = ACTIONS(196), - [anon_sym_QMARK_EQ] = ACTIONS(196), - [anon_sym_STAR_EQ] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_BANG_TILDE] = ACTIONS(196), - [anon_sym_STAR_TILDE] = ACTIONS(196), - [anon_sym_LT_EQ] = ACTIONS(196), - [anon_sym_GT_EQ] = ACTIONS(196), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_PLUS_EQ] = ACTIONS(196), - [anon_sym_DASH_EQ] = ACTIONS(196), - [anon_sym_u00d7] = ACTIONS(196), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_u00f7] = ACTIONS(196), - [anon_sym_STAR_STAR] = ACTIONS(196), - [anon_sym_u220b] = ACTIONS(196), - [anon_sym_u220c] = ACTIONS(196), - [anon_sym_u2287] = ACTIONS(196), - [anon_sym_u2283] = ACTIONS(196), - [anon_sym_u2285] = ACTIONS(196), - [anon_sym_u2208] = ACTIONS(196), - [anon_sym_u2209] = ACTIONS(196), - [anon_sym_u2286] = ACTIONS(196), - [anon_sym_u2282] = ACTIONS(196), - [anon_sym_u2284] = ACTIONS(196), - [anon_sym_AT_AT] = ACTIONS(196), + [sym_keyword_or] = ACTIONS(188), + [sym_keyword_is] = ACTIONS(188), + [sym_keyword_not] = ACTIONS(190), + [sym_keyword_contains] = ACTIONS(188), + [sym_keyword_contains_not] = ACTIONS(188), + [sym_keyword_contains_all] = ACTIONS(188), + [sym_keyword_contains_any] = ACTIONS(188), + [sym_keyword_contains_none] = ACTIONS(188), + [sym_keyword_inside] = ACTIONS(188), + [sym_keyword_in] = ACTIONS(190), + [sym_keyword_not_inside] = ACTIONS(188), + [sym_keyword_all_inside] = ACTIONS(188), + [sym_keyword_any_inside] = ACTIONS(188), + [sym_keyword_none_inside] = ACTIONS(188), + [sym_keyword_outside] = ACTIONS(188), + [sym_keyword_intersects] = ACTIONS(188), + [sym_keyword_flexible] = ACTIONS(188), + [sym_keyword_readonly] = ACTIONS(188), + [sym_keyword_type] = ACTIONS(188), + [sym_keyword_default] = ACTIONS(188), + [sym_keyword_assert] = ACTIONS(188), + [sym_keyword_permissions] = ACTIONS(188), + [sym_keyword_for] = ACTIONS(188), + [sym_keyword_comment] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_DASH_GT] = ACTIONS(188), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RPAREN] = ACTIONS(188), + [anon_sym_RBRACE] = ACTIONS(188), + [anon_sym_LT_DASH] = ACTIONS(190), + [anon_sym_LT_DASH_GT] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_DOT] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_LT_PIPE] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_QMARK_QMARK] = ACTIONS(188), + [anon_sym_QMARK_COLON] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_QMARK_EQ] = ACTIONS(188), + [anon_sym_STAR_EQ] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_BANG_TILDE] = ACTIONS(188), + [anon_sym_STAR_TILDE] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_u00d7] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_u00f7] = ACTIONS(188), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_u220b] = ACTIONS(188), + [anon_sym_u220c] = ACTIONS(188), + [anon_sym_u2287] = ACTIONS(188), + [anon_sym_u2283] = ACTIONS(188), + [anon_sym_u2285] = ACTIONS(188), + [anon_sym_u2208] = ACTIONS(188), + [anon_sym_u2209] = ACTIONS(188), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), }, - [107] = { + [110] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_value] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(212), - [sym_keyword_parallel] = ACTIONS(212), - [sym_keyword_timeout] = ACTIONS(212), - [sym_keyword_fetch] = ACTIONS(212), - [sym_keyword_limit] = ACTIONS(212), - [sym_keyword_rand] = ACTIONS(212), - [sym_keyword_collate] = ACTIONS(212), - [sym_keyword_numeric] = ACTIONS(212), - [sym_keyword_asc] = ACTIONS(212), - [sym_keyword_desc] = ACTIONS(212), - [sym_keyword_and] = ACTIONS(212), - [sym_keyword_or] = ACTIONS(212), - [sym_keyword_is] = ACTIONS(212), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(212), - [sym_keyword_contains_not] = ACTIONS(212), - [sym_keyword_contains_all] = ACTIONS(212), - [sym_keyword_contains_any] = ACTIONS(212), - [sym_keyword_contains_none] = ACTIONS(212), - [sym_keyword_inside] = ACTIONS(212), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(212), - [sym_keyword_all_inside] = ACTIONS(212), - [sym_keyword_any_inside] = ACTIONS(212), - [sym_keyword_none_inside] = ACTIONS(212), - [sym_keyword_outside] = ACTIONS(212), - [sym_keyword_intersects] = ACTIONS(212), - [sym_keyword_flexible] = ACTIONS(212), - [sym_keyword_readonly] = ACTIONS(212), - [sym_keyword_type] = ACTIONS(212), - [sym_keyword_default] = ACTIONS(212), - [sym_keyword_assert] = ACTIONS(212), - [sym_keyword_permissions] = ACTIONS(212), - [sym_keyword_for] = ACTIONS(212), - [sym_keyword_comment] = ACTIONS(212), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(122), + [sym_keyword_value] = ACTIONS(122), + [sym_keyword_explain] = ACTIONS(122), + [sym_keyword_parallel] = ACTIONS(122), + [sym_keyword_timeout] = ACTIONS(122), + [sym_keyword_fetch] = ACTIONS(122), + [sym_keyword_limit] = ACTIONS(122), + [sym_keyword_rand] = ACTIONS(122), + [sym_keyword_collate] = ACTIONS(122), + [sym_keyword_numeric] = ACTIONS(122), + [sym_keyword_asc] = ACTIONS(122), + [sym_keyword_desc] = ACTIONS(122), + [sym_keyword_and] = ACTIONS(122), + [sym_keyword_or] = ACTIONS(122), + [sym_keyword_is] = ACTIONS(122), + [sym_keyword_not] = ACTIONS(124), + [sym_keyword_contains] = ACTIONS(122), + [sym_keyword_contains_not] = ACTIONS(122), + [sym_keyword_contains_all] = ACTIONS(122), + [sym_keyword_contains_any] = ACTIONS(122), + [sym_keyword_contains_none] = ACTIONS(122), + [sym_keyword_inside] = ACTIONS(122), + [sym_keyword_in] = ACTIONS(124), + [sym_keyword_not_inside] = ACTIONS(122), + [sym_keyword_all_inside] = ACTIONS(122), + [sym_keyword_any_inside] = ACTIONS(122), + [sym_keyword_none_inside] = ACTIONS(122), + [sym_keyword_outside] = ACTIONS(122), + [sym_keyword_intersects] = ACTIONS(122), + [sym_keyword_flexible] = ACTIONS(122), + [sym_keyword_readonly] = ACTIONS(122), + [sym_keyword_type] = ACTIONS(122), + [sym_keyword_default] = ACTIONS(122), + [sym_keyword_assert] = ACTIONS(122), + [sym_keyword_permissions] = ACTIONS(122), + [sym_keyword_for] = ACTIONS(122), + [sym_keyword_comment] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(122), + [anon_sym_DASH_GT] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(122), + [anon_sym_RPAREN] = ACTIONS(122), + [anon_sym_RBRACE] = ACTIONS(122), + [anon_sym_LT_DASH] = ACTIONS(124), + [anon_sym_LT_DASH_GT] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(124), + [anon_sym_GT] = ACTIONS(124), + [anon_sym_EQ] = ACTIONS(124), + [anon_sym_DASH] = ACTIONS(124), + [anon_sym_AT] = ACTIONS(124), + [anon_sym_LT_PIPE] = ACTIONS(122), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_QMARK_COLON] = ACTIONS(122), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_QMARK_EQ] = ACTIONS(122), + [anon_sym_STAR_EQ] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(122), + [anon_sym_BANG_TILDE] = ACTIONS(122), + [anon_sym_STAR_TILDE] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(122), + [anon_sym_GT_EQ] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(124), + [anon_sym_PLUS_EQ] = ACTIONS(122), + [anon_sym_DASH_EQ] = ACTIONS(122), + [anon_sym_u00d7] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(124), + [anon_sym_u00f7] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_u220b] = ACTIONS(122), + [anon_sym_u220c] = ACTIONS(122), + [anon_sym_u2287] = ACTIONS(122), + [anon_sym_u2283] = ACTIONS(122), + [anon_sym_u2285] = ACTIONS(122), + [anon_sym_u2208] = ACTIONS(122), + [anon_sym_u2209] = ACTIONS(122), + [anon_sym_u2286] = ACTIONS(122), + [anon_sym_u2282] = ACTIONS(122), + [anon_sym_u2284] = ACTIONS(122), + [anon_sym_AT_AT] = ACTIONS(122), }, - [108] = { + [111] = { [ts_builtin_sym_end] = ACTIONS(57), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(57), @@ -26398,523 +26676,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(57), [anon_sym_AT_AT] = ACTIONS(57), }, - [109] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_value] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(160), - [sym_keyword_parallel] = ACTIONS(160), - [sym_keyword_timeout] = ACTIONS(160), - [sym_keyword_fetch] = ACTIONS(160), - [sym_keyword_limit] = ACTIONS(160), - [sym_keyword_rand] = ACTIONS(160), - [sym_keyword_collate] = ACTIONS(160), - [sym_keyword_numeric] = ACTIONS(160), - [sym_keyword_asc] = ACTIONS(160), - [sym_keyword_desc] = ACTIONS(160), - [sym_keyword_and] = ACTIONS(160), - [sym_keyword_or] = ACTIONS(160), - [sym_keyword_is] = ACTIONS(160), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(160), - [sym_keyword_contains_not] = ACTIONS(160), - [sym_keyword_contains_all] = ACTIONS(160), - [sym_keyword_contains_any] = ACTIONS(160), - [sym_keyword_contains_none] = ACTIONS(160), - [sym_keyword_inside] = ACTIONS(160), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(160), - [sym_keyword_all_inside] = ACTIONS(160), - [sym_keyword_any_inside] = ACTIONS(160), - [sym_keyword_none_inside] = ACTIONS(160), - [sym_keyword_outside] = ACTIONS(160), - [sym_keyword_intersects] = ACTIONS(160), - [sym_keyword_flexible] = ACTIONS(160), - [sym_keyword_readonly] = ACTIONS(160), - [sym_keyword_type] = ACTIONS(160), - [sym_keyword_default] = ACTIONS(160), - [sym_keyword_assert] = ACTIONS(160), - [sym_keyword_permissions] = ACTIONS(160), - [sym_keyword_for] = ACTIONS(160), - [sym_keyword_comment] = ACTIONS(160), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [110] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(148), - [sym_keyword_value] = ACTIONS(148), - [sym_keyword_explain] = ACTIONS(148), - [sym_keyword_parallel] = ACTIONS(148), - [sym_keyword_timeout] = ACTIONS(148), - [sym_keyword_fetch] = ACTIONS(148), - [sym_keyword_limit] = ACTIONS(148), - [sym_keyword_rand] = ACTIONS(148), - [sym_keyword_collate] = ACTIONS(148), - [sym_keyword_numeric] = ACTIONS(148), - [sym_keyword_asc] = ACTIONS(148), - [sym_keyword_desc] = ACTIONS(148), - [sym_keyword_and] = ACTIONS(148), - [sym_keyword_or] = ACTIONS(148), - [sym_keyword_is] = ACTIONS(148), - [sym_keyword_not] = ACTIONS(150), - [sym_keyword_contains] = ACTIONS(148), - [sym_keyword_contains_not] = ACTIONS(148), - [sym_keyword_contains_all] = ACTIONS(148), - [sym_keyword_contains_any] = ACTIONS(148), - [sym_keyword_contains_none] = ACTIONS(148), - [sym_keyword_inside] = ACTIONS(148), - [sym_keyword_in] = ACTIONS(150), - [sym_keyword_not_inside] = ACTIONS(148), - [sym_keyword_all_inside] = ACTIONS(148), - [sym_keyword_any_inside] = ACTIONS(148), - [sym_keyword_none_inside] = ACTIONS(148), - [sym_keyword_outside] = ACTIONS(148), - [sym_keyword_intersects] = ACTIONS(148), - [sym_keyword_flexible] = ACTIONS(148), - [sym_keyword_readonly] = ACTIONS(148), - [sym_keyword_type] = ACTIONS(148), - [sym_keyword_default] = ACTIONS(148), - [sym_keyword_assert] = ACTIONS(148), - [sym_keyword_permissions] = ACTIONS(148), - [sym_keyword_for] = ACTIONS(148), - [sym_keyword_comment] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_DASH_GT] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_LT_DASH] = ACTIONS(150), - [anon_sym_LT_DASH_GT] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_EQ] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(150), - [anon_sym_LT_PIPE] = ACTIONS(148), - [anon_sym_AMP_AMP] = ACTIONS(148), - [anon_sym_PIPE_PIPE] = ACTIONS(148), - [anon_sym_QMARK_QMARK] = ACTIONS(148), - [anon_sym_QMARK_COLON] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_QMARK_EQ] = ACTIONS(148), - [anon_sym_STAR_EQ] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_STAR_TILDE] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(148), - [anon_sym_DASH_EQ] = ACTIONS(148), - [anon_sym_u00d7] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(150), - [anon_sym_u00f7] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_u220b] = ACTIONS(148), - [anon_sym_u220c] = ACTIONS(148), - [anon_sym_u2287] = ACTIONS(148), - [anon_sym_u2283] = ACTIONS(148), - [anon_sym_u2285] = ACTIONS(148), - [anon_sym_u2208] = ACTIONS(148), - [anon_sym_u2209] = ACTIONS(148), - [anon_sym_u2286] = ACTIONS(148), - [anon_sym_u2282] = ACTIONS(148), - [anon_sym_u2284] = ACTIONS(148), - [anon_sym_AT_AT] = ACTIONS(148), - }, - [111] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(176), - [sym_keyword_value] = ACTIONS(176), - [sym_keyword_explain] = ACTIONS(176), - [sym_keyword_parallel] = ACTIONS(176), - [sym_keyword_timeout] = ACTIONS(176), - [sym_keyword_fetch] = ACTIONS(176), - [sym_keyword_limit] = ACTIONS(176), - [sym_keyword_rand] = ACTIONS(176), - [sym_keyword_collate] = ACTIONS(176), - [sym_keyword_numeric] = ACTIONS(176), - [sym_keyword_asc] = ACTIONS(176), - [sym_keyword_desc] = ACTIONS(176), - [sym_keyword_and] = ACTIONS(176), - [sym_keyword_or] = ACTIONS(176), - [sym_keyword_is] = ACTIONS(176), - [sym_keyword_not] = ACTIONS(178), - [sym_keyword_contains] = ACTIONS(176), - [sym_keyword_contains_not] = ACTIONS(176), - [sym_keyword_contains_all] = ACTIONS(176), - [sym_keyword_contains_any] = ACTIONS(176), - [sym_keyword_contains_none] = ACTIONS(176), - [sym_keyword_inside] = ACTIONS(176), - [sym_keyword_in] = ACTIONS(178), - [sym_keyword_not_inside] = ACTIONS(176), - [sym_keyword_all_inside] = ACTIONS(176), - [sym_keyword_any_inside] = ACTIONS(176), - [sym_keyword_none_inside] = ACTIONS(176), - [sym_keyword_outside] = ACTIONS(176), - [sym_keyword_intersects] = ACTIONS(176), - [sym_keyword_flexible] = ACTIONS(176), - [sym_keyword_readonly] = ACTIONS(176), - [sym_keyword_type] = ACTIONS(176), - [sym_keyword_default] = ACTIONS(176), - [sym_keyword_assert] = ACTIONS(176), - [sym_keyword_permissions] = ACTIONS(176), - [sym_keyword_for] = ACTIONS(176), - [sym_keyword_comment] = ACTIONS(176), - [anon_sym_COMMA] = ACTIONS(176), - [anon_sym_DASH_GT] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(176), - [anon_sym_RPAREN] = ACTIONS(176), - [anon_sym_RBRACE] = ACTIONS(176), - [anon_sym_LT_DASH] = ACTIONS(178), - [anon_sym_LT_DASH_GT] = ACTIONS(176), - [anon_sym_STAR] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(176), - [anon_sym_LT] = ACTIONS(178), - [anon_sym_GT] = ACTIONS(178), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(178), - [anon_sym_AT] = ACTIONS(178), - [anon_sym_LT_PIPE] = ACTIONS(176), - [anon_sym_AMP_AMP] = ACTIONS(176), - [anon_sym_PIPE_PIPE] = ACTIONS(176), - [anon_sym_QMARK_QMARK] = ACTIONS(176), - [anon_sym_QMARK_COLON] = ACTIONS(176), - [anon_sym_BANG_EQ] = ACTIONS(176), - [anon_sym_EQ_EQ] = ACTIONS(176), - [anon_sym_QMARK_EQ] = ACTIONS(176), - [anon_sym_STAR_EQ] = ACTIONS(176), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_BANG_TILDE] = ACTIONS(176), - [anon_sym_STAR_TILDE] = ACTIONS(176), - [anon_sym_LT_EQ] = ACTIONS(176), - [anon_sym_GT_EQ] = ACTIONS(176), - [anon_sym_PLUS] = ACTIONS(178), - [anon_sym_PLUS_EQ] = ACTIONS(176), - [anon_sym_DASH_EQ] = ACTIONS(176), - [anon_sym_u00d7] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(178), - [anon_sym_u00f7] = ACTIONS(176), - [anon_sym_STAR_STAR] = ACTIONS(176), - [anon_sym_u220b] = ACTIONS(176), - [anon_sym_u220c] = ACTIONS(176), - [anon_sym_u2287] = ACTIONS(176), - [anon_sym_u2283] = ACTIONS(176), - [anon_sym_u2285] = ACTIONS(176), - [anon_sym_u2208] = ACTIONS(176), - [anon_sym_u2209] = ACTIONS(176), - [anon_sym_u2286] = ACTIONS(176), - [anon_sym_u2282] = ACTIONS(176), - [anon_sym_u2284] = ACTIONS(176), - [anon_sym_AT_AT] = ACTIONS(176), - }, [112] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(184), - [sym_keyword_value] = ACTIONS(184), - [sym_keyword_explain] = ACTIONS(184), - [sym_keyword_parallel] = ACTIONS(184), - [sym_keyword_timeout] = ACTIONS(184), - [sym_keyword_fetch] = ACTIONS(184), - [sym_keyword_limit] = ACTIONS(184), - [sym_keyword_rand] = ACTIONS(184), - [sym_keyword_collate] = ACTIONS(184), - [sym_keyword_numeric] = ACTIONS(184), - [sym_keyword_asc] = ACTIONS(184), - [sym_keyword_desc] = ACTIONS(184), - [sym_keyword_and] = ACTIONS(184), - [sym_keyword_or] = ACTIONS(184), - [sym_keyword_is] = ACTIONS(184), - [sym_keyword_not] = ACTIONS(186), - [sym_keyword_contains] = ACTIONS(184), - [sym_keyword_contains_not] = ACTIONS(184), - [sym_keyword_contains_all] = ACTIONS(184), - [sym_keyword_contains_any] = ACTIONS(184), - [sym_keyword_contains_none] = ACTIONS(184), - [sym_keyword_inside] = ACTIONS(184), - [sym_keyword_in] = ACTIONS(186), - [sym_keyword_not_inside] = ACTIONS(184), - [sym_keyword_all_inside] = ACTIONS(184), - [sym_keyword_any_inside] = ACTIONS(184), - [sym_keyword_none_inside] = ACTIONS(184), - [sym_keyword_outside] = ACTIONS(184), - [sym_keyword_intersects] = ACTIONS(184), - [sym_keyword_flexible] = ACTIONS(184), - [sym_keyword_readonly] = ACTIONS(184), - [sym_keyword_type] = ACTIONS(184), - [sym_keyword_default] = ACTIONS(184), - [sym_keyword_assert] = ACTIONS(184), - [sym_keyword_permissions] = ACTIONS(184), - [sym_keyword_for] = ACTIONS(184), - [sym_keyword_comment] = ACTIONS(184), - [anon_sym_COMMA] = ACTIONS(184), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_RPAREN] = ACTIONS(184), - [anon_sym_RBRACE] = ACTIONS(184), - [anon_sym_LT_DASH] = ACTIONS(186), - [anon_sym_LT_DASH_GT] = ACTIONS(184), - [anon_sym_STAR] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(186), - [anon_sym_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_AT] = ACTIONS(186), - [anon_sym_LT_PIPE] = ACTIONS(184), - [anon_sym_AMP_AMP] = ACTIONS(184), - [anon_sym_PIPE_PIPE] = ACTIONS(184), - [anon_sym_QMARK_QMARK] = ACTIONS(184), - [anon_sym_QMARK_COLON] = ACTIONS(184), - [anon_sym_BANG_EQ] = ACTIONS(184), - [anon_sym_EQ_EQ] = ACTIONS(184), - [anon_sym_QMARK_EQ] = ACTIONS(184), - [anon_sym_STAR_EQ] = ACTIONS(184), - [anon_sym_TILDE] = ACTIONS(184), - [anon_sym_BANG_TILDE] = ACTIONS(184), - [anon_sym_STAR_TILDE] = ACTIONS(184), - [anon_sym_LT_EQ] = ACTIONS(184), - [anon_sym_GT_EQ] = ACTIONS(184), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_PLUS_EQ] = ACTIONS(184), - [anon_sym_DASH_EQ] = ACTIONS(184), - [anon_sym_u00d7] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(186), - [anon_sym_u00f7] = ACTIONS(184), - [anon_sym_STAR_STAR] = ACTIONS(184), - [anon_sym_u220b] = ACTIONS(184), - [anon_sym_u220c] = ACTIONS(184), - [anon_sym_u2287] = ACTIONS(184), - [anon_sym_u2283] = ACTIONS(184), - [anon_sym_u2285] = ACTIONS(184), - [anon_sym_u2208] = ACTIONS(184), - [anon_sym_u2209] = ACTIONS(184), - [anon_sym_u2286] = ACTIONS(184), - [anon_sym_u2282] = ACTIONS(184), - [anon_sym_u2284] = ACTIONS(184), - [anon_sym_AT_AT] = ACTIONS(184), + [sym_semi_colon] = ACTIONS(164), + [sym_keyword_value] = ACTIONS(164), + [sym_keyword_explain] = ACTIONS(164), + [sym_keyword_parallel] = ACTIONS(164), + [sym_keyword_timeout] = ACTIONS(164), + [sym_keyword_fetch] = ACTIONS(164), + [sym_keyword_limit] = ACTIONS(164), + [sym_keyword_rand] = ACTIONS(164), + [sym_keyword_collate] = ACTIONS(164), + [sym_keyword_numeric] = ACTIONS(164), + [sym_keyword_asc] = ACTIONS(164), + [sym_keyword_desc] = ACTIONS(164), + [sym_keyword_and] = ACTIONS(164), + [sym_keyword_or] = ACTIONS(164), + [sym_keyword_is] = ACTIONS(164), + [sym_keyword_not] = ACTIONS(166), + [sym_keyword_contains] = ACTIONS(164), + [sym_keyword_contains_not] = ACTIONS(164), + [sym_keyword_contains_all] = ACTIONS(164), + [sym_keyword_contains_any] = ACTIONS(164), + [sym_keyword_contains_none] = ACTIONS(164), + [sym_keyword_inside] = ACTIONS(164), + [sym_keyword_in] = ACTIONS(166), + [sym_keyword_not_inside] = ACTIONS(164), + [sym_keyword_all_inside] = ACTIONS(164), + [sym_keyword_any_inside] = ACTIONS(164), + [sym_keyword_none_inside] = ACTIONS(164), + [sym_keyword_outside] = ACTIONS(164), + [sym_keyword_intersects] = ACTIONS(164), + [sym_keyword_flexible] = ACTIONS(164), + [sym_keyword_readonly] = ACTIONS(164), + [sym_keyword_type] = ACTIONS(164), + [sym_keyword_default] = ACTIONS(164), + [sym_keyword_assert] = ACTIONS(164), + [sym_keyword_permissions] = ACTIONS(164), + [sym_keyword_for] = ACTIONS(164), + [sym_keyword_comment] = ACTIONS(164), + [anon_sym_COMMA] = ACTIONS(164), + [anon_sym_DASH_GT] = ACTIONS(164), + [anon_sym_LBRACK] = ACTIONS(164), + [anon_sym_RPAREN] = ACTIONS(164), + [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_LT_DASH] = ACTIONS(166), + [anon_sym_LT_DASH_GT] = ACTIONS(164), + [anon_sym_STAR] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(164), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(166), + [anon_sym_DASH] = ACTIONS(166), + [anon_sym_AT] = ACTIONS(166), + [anon_sym_LT_PIPE] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(164), + [anon_sym_PIPE_PIPE] = ACTIONS(164), + [anon_sym_QMARK_QMARK] = ACTIONS(164), + [anon_sym_QMARK_COLON] = ACTIONS(164), + [anon_sym_BANG_EQ] = ACTIONS(164), + [anon_sym_EQ_EQ] = ACTIONS(164), + [anon_sym_QMARK_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_TILDE] = ACTIONS(164), + [anon_sym_BANG_TILDE] = ACTIONS(164), + [anon_sym_STAR_TILDE] = ACTIONS(164), + [anon_sym_LT_EQ] = ACTIONS(164), + [anon_sym_GT_EQ] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_u00d7] = ACTIONS(164), + [anon_sym_SLASH] = ACTIONS(166), + [anon_sym_u00f7] = ACTIONS(164), + [anon_sym_STAR_STAR] = ACTIONS(164), + [anon_sym_u220b] = ACTIONS(164), + [anon_sym_u220c] = ACTIONS(164), + [anon_sym_u2287] = ACTIONS(164), + [anon_sym_u2283] = ACTIONS(164), + [anon_sym_u2285] = ACTIONS(164), + [anon_sym_u2208] = ACTIONS(164), + [anon_sym_u2209] = ACTIONS(164), + [anon_sym_u2286] = ACTIONS(164), + [anon_sym_u2282] = ACTIONS(164), + [anon_sym_u2284] = ACTIONS(164), + [anon_sym_AT_AT] = ACTIONS(164), }, [113] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(204), - [sym_keyword_value] = ACTIONS(204), - [sym_keyword_explain] = ACTIONS(204), - [sym_keyword_parallel] = ACTIONS(204), - [sym_keyword_timeout] = ACTIONS(204), - [sym_keyword_fetch] = ACTIONS(204), - [sym_keyword_limit] = ACTIONS(204), - [sym_keyword_rand] = ACTIONS(204), - [sym_keyword_collate] = ACTIONS(204), - [sym_keyword_numeric] = ACTIONS(204), - [sym_keyword_asc] = ACTIONS(204), - [sym_keyword_desc] = ACTIONS(204), - [sym_keyword_and] = ACTIONS(204), - [sym_keyword_or] = ACTIONS(204), - [sym_keyword_is] = ACTIONS(204), - [sym_keyword_not] = ACTIONS(206), - [sym_keyword_contains] = ACTIONS(204), - [sym_keyword_contains_not] = ACTIONS(204), - [sym_keyword_contains_all] = ACTIONS(204), - [sym_keyword_contains_any] = ACTIONS(204), - [sym_keyword_contains_none] = ACTIONS(204), - [sym_keyword_inside] = ACTIONS(204), - [sym_keyword_in] = ACTIONS(206), - [sym_keyword_not_inside] = ACTIONS(204), - [sym_keyword_all_inside] = ACTIONS(204), - [sym_keyword_any_inside] = ACTIONS(204), - [sym_keyword_none_inside] = ACTIONS(204), - [sym_keyword_outside] = ACTIONS(204), - [sym_keyword_intersects] = ACTIONS(204), - [sym_keyword_flexible] = ACTIONS(204), - [sym_keyword_readonly] = ACTIONS(204), - [sym_keyword_type] = ACTIONS(204), - [sym_keyword_default] = ACTIONS(204), - [sym_keyword_assert] = ACTIONS(204), - [sym_keyword_permissions] = ACTIONS(204), - [sym_keyword_for] = ACTIONS(204), - [sym_keyword_comment] = ACTIONS(204), - [anon_sym_COMMA] = ACTIONS(204), - [anon_sym_DASH_GT] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_RPAREN] = ACTIONS(204), - [anon_sym_RBRACE] = ACTIONS(204), - [anon_sym_LT_DASH] = ACTIONS(206), - [anon_sym_LT_DASH_GT] = ACTIONS(204), - [anon_sym_STAR] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(206), - [anon_sym_GT] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_AT] = ACTIONS(206), - [anon_sym_LT_PIPE] = ACTIONS(204), - [anon_sym_AMP_AMP] = ACTIONS(204), - [anon_sym_PIPE_PIPE] = ACTIONS(204), - [anon_sym_QMARK_QMARK] = ACTIONS(204), - [anon_sym_QMARK_COLON] = ACTIONS(204), - [anon_sym_BANG_EQ] = ACTIONS(204), - [anon_sym_EQ_EQ] = ACTIONS(204), - [anon_sym_QMARK_EQ] = ACTIONS(204), - [anon_sym_STAR_EQ] = ACTIONS(204), - [anon_sym_TILDE] = ACTIONS(204), - [anon_sym_BANG_TILDE] = ACTIONS(204), - [anon_sym_STAR_TILDE] = ACTIONS(204), - [anon_sym_LT_EQ] = ACTIONS(204), - [anon_sym_GT_EQ] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(206), - [anon_sym_PLUS_EQ] = ACTIONS(204), - [anon_sym_DASH_EQ] = ACTIONS(204), - [anon_sym_u00d7] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(206), - [anon_sym_u00f7] = ACTIONS(204), - [anon_sym_STAR_STAR] = ACTIONS(204), - [anon_sym_u220b] = ACTIONS(204), - [anon_sym_u220c] = ACTIONS(204), - [anon_sym_u2287] = ACTIONS(204), - [anon_sym_u2283] = ACTIONS(204), - [anon_sym_u2285] = ACTIONS(204), - [anon_sym_u2208] = ACTIONS(204), - [anon_sym_u2209] = ACTIONS(204), - [anon_sym_u2286] = ACTIONS(204), - [anon_sym_u2282] = ACTIONS(204), - [anon_sym_u2284] = ACTIONS(204), - [anon_sym_AT_AT] = ACTIONS(204), + [sym_semi_colon] = ACTIONS(156), + [sym_keyword_value] = ACTIONS(156), + [sym_keyword_explain] = ACTIONS(156), + [sym_keyword_parallel] = ACTIONS(156), + [sym_keyword_timeout] = ACTIONS(156), + [sym_keyword_fetch] = ACTIONS(156), + [sym_keyword_limit] = ACTIONS(156), + [sym_keyword_rand] = ACTIONS(156), + [sym_keyword_collate] = ACTIONS(156), + [sym_keyword_numeric] = ACTIONS(156), + [sym_keyword_asc] = ACTIONS(156), + [sym_keyword_desc] = ACTIONS(156), + [sym_keyword_and] = ACTIONS(156), + [sym_keyword_or] = ACTIONS(156), + [sym_keyword_is] = ACTIONS(156), + [sym_keyword_not] = ACTIONS(158), + [sym_keyword_contains] = ACTIONS(156), + [sym_keyword_contains_not] = ACTIONS(156), + [sym_keyword_contains_all] = ACTIONS(156), + [sym_keyword_contains_any] = ACTIONS(156), + [sym_keyword_contains_none] = ACTIONS(156), + [sym_keyword_inside] = ACTIONS(156), + [sym_keyword_in] = ACTIONS(158), + [sym_keyword_not_inside] = ACTIONS(156), + [sym_keyword_all_inside] = ACTIONS(156), + [sym_keyword_any_inside] = ACTIONS(156), + [sym_keyword_none_inside] = ACTIONS(156), + [sym_keyword_outside] = ACTIONS(156), + [sym_keyword_intersects] = ACTIONS(156), + [sym_keyword_flexible] = ACTIONS(156), + [sym_keyword_readonly] = ACTIONS(156), + [sym_keyword_type] = ACTIONS(156), + [sym_keyword_default] = ACTIONS(156), + [sym_keyword_assert] = ACTIONS(156), + [sym_keyword_permissions] = ACTIONS(156), + [sym_keyword_for] = ACTIONS(156), + [sym_keyword_comment] = ACTIONS(156), + [anon_sym_COMMA] = ACTIONS(156), + [anon_sym_DASH_GT] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(156), + [anon_sym_RPAREN] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(156), + [anon_sym_LT_DASH] = ACTIONS(158), + [anon_sym_LT_DASH_GT] = ACTIONS(156), + [anon_sym_STAR] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(156), + [anon_sym_LT] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(158), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_DASH] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(158), + [anon_sym_LT_PIPE] = ACTIONS(156), + [anon_sym_AMP_AMP] = ACTIONS(156), + [anon_sym_PIPE_PIPE] = ACTIONS(156), + [anon_sym_QMARK_QMARK] = ACTIONS(156), + [anon_sym_QMARK_COLON] = ACTIONS(156), + [anon_sym_BANG_EQ] = ACTIONS(156), + [anon_sym_EQ_EQ] = ACTIONS(156), + [anon_sym_QMARK_EQ] = ACTIONS(156), + [anon_sym_STAR_EQ] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_BANG_TILDE] = ACTIONS(156), + [anon_sym_STAR_TILDE] = ACTIONS(156), + [anon_sym_LT_EQ] = ACTIONS(156), + [anon_sym_GT_EQ] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(156), + [anon_sym_DASH_EQ] = ACTIONS(156), + [anon_sym_u00d7] = ACTIONS(156), + [anon_sym_SLASH] = ACTIONS(158), + [anon_sym_u00f7] = ACTIONS(156), + [anon_sym_STAR_STAR] = ACTIONS(156), + [anon_sym_u220b] = ACTIONS(156), + [anon_sym_u220c] = ACTIONS(156), + [anon_sym_u2287] = ACTIONS(156), + [anon_sym_u2283] = ACTIONS(156), + [anon_sym_u2285] = ACTIONS(156), + [anon_sym_u2208] = ACTIONS(156), + [anon_sym_u2209] = ACTIONS(156), + [anon_sym_u2286] = ACTIONS(156), + [anon_sym_u2282] = ACTIONS(156), + [anon_sym_u2284] = ACTIONS(156), + [anon_sym_AT_AT] = ACTIONS(156), }, [114] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(152), - [sym_keyword_value] = ACTIONS(152), - [sym_keyword_explain] = ACTIONS(152), - [sym_keyword_parallel] = ACTIONS(152), - [sym_keyword_timeout] = ACTIONS(152), - [sym_keyword_fetch] = ACTIONS(152), - [sym_keyword_limit] = ACTIONS(152), - [sym_keyword_rand] = ACTIONS(152), - [sym_keyword_collate] = ACTIONS(152), - [sym_keyword_numeric] = ACTIONS(152), - [sym_keyword_asc] = ACTIONS(152), - [sym_keyword_desc] = ACTIONS(152), - [sym_keyword_and] = ACTIONS(152), - [sym_keyword_or] = ACTIONS(152), - [sym_keyword_is] = ACTIONS(152), - [sym_keyword_not] = ACTIONS(154), - [sym_keyword_contains] = ACTIONS(152), - [sym_keyword_contains_not] = ACTIONS(152), - [sym_keyword_contains_all] = ACTIONS(152), - [sym_keyword_contains_any] = ACTIONS(152), - [sym_keyword_contains_none] = ACTIONS(152), - [sym_keyword_inside] = ACTIONS(152), - [sym_keyword_in] = ACTIONS(154), - [sym_keyword_not_inside] = ACTIONS(152), - [sym_keyword_all_inside] = ACTIONS(152), - [sym_keyword_any_inside] = ACTIONS(152), - [sym_keyword_none_inside] = ACTIONS(152), - [sym_keyword_outside] = ACTIONS(152), - [sym_keyword_intersects] = ACTIONS(152), - [sym_keyword_flexible] = ACTIONS(152), - [sym_keyword_readonly] = ACTIONS(152), - [sym_keyword_type] = ACTIONS(152), - [sym_keyword_default] = ACTIONS(152), - [sym_keyword_assert] = ACTIONS(152), - [sym_keyword_permissions] = ACTIONS(152), - [sym_keyword_for] = ACTIONS(152), - [sym_keyword_comment] = ACTIONS(152), - [anon_sym_COMMA] = ACTIONS(152), - [anon_sym_DASH_GT] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(152), - [anon_sym_RPAREN] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(152), - [anon_sym_LT_DASH] = ACTIONS(154), - [anon_sym_LT_DASH_GT] = ACTIONS(152), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LT] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_AT] = ACTIONS(154), - [anon_sym_LT_PIPE] = ACTIONS(152), - [anon_sym_AMP_AMP] = ACTIONS(152), - [anon_sym_PIPE_PIPE] = ACTIONS(152), - [anon_sym_QMARK_QMARK] = ACTIONS(152), - [anon_sym_QMARK_COLON] = ACTIONS(152), - [anon_sym_BANG_EQ] = ACTIONS(152), - [anon_sym_EQ_EQ] = ACTIONS(152), - [anon_sym_QMARK_EQ] = ACTIONS(152), - [anon_sym_STAR_EQ] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_BANG_TILDE] = ACTIONS(152), - [anon_sym_STAR_TILDE] = ACTIONS(152), - [anon_sym_LT_EQ] = ACTIONS(152), - [anon_sym_GT_EQ] = ACTIONS(152), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(152), - [anon_sym_DASH_EQ] = ACTIONS(152), - [anon_sym_u00d7] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(154), - [anon_sym_u00f7] = ACTIONS(152), - [anon_sym_STAR_STAR] = ACTIONS(152), - [anon_sym_u220b] = ACTIONS(152), - [anon_sym_u220c] = ACTIONS(152), - [anon_sym_u2287] = ACTIONS(152), - [anon_sym_u2283] = ACTIONS(152), - [anon_sym_u2285] = ACTIONS(152), - [anon_sym_u2208] = ACTIONS(152), - [anon_sym_u2209] = ACTIONS(152), - [anon_sym_u2286] = ACTIONS(152), - [anon_sym_u2282] = ACTIONS(152), - [anon_sym_u2284] = ACTIONS(152), - [anon_sym_AT_AT] = ACTIONS(152), - }, - [115] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(144), [sym_keyword_value] = ACTIONS(144), @@ -27000,523 +26934,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(144), [anon_sym_AT_AT] = ACTIONS(144), }, + [115] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(204), + [sym_keyword_value] = ACTIONS(204), + [sym_keyword_explain] = ACTIONS(204), + [sym_keyword_parallel] = ACTIONS(204), + [sym_keyword_timeout] = ACTIONS(204), + [sym_keyword_fetch] = ACTIONS(204), + [sym_keyword_limit] = ACTIONS(204), + [sym_keyword_rand] = ACTIONS(204), + [sym_keyword_collate] = ACTIONS(204), + [sym_keyword_numeric] = ACTIONS(204), + [sym_keyword_asc] = ACTIONS(204), + [sym_keyword_desc] = ACTIONS(204), + [sym_keyword_and] = ACTIONS(204), + [sym_keyword_or] = ACTIONS(204), + [sym_keyword_is] = ACTIONS(204), + [sym_keyword_not] = ACTIONS(206), + [sym_keyword_contains] = ACTIONS(204), + [sym_keyword_contains_not] = ACTIONS(204), + [sym_keyword_contains_all] = ACTIONS(204), + [sym_keyword_contains_any] = ACTIONS(204), + [sym_keyword_contains_none] = ACTIONS(204), + [sym_keyword_inside] = ACTIONS(204), + [sym_keyword_in] = ACTIONS(206), + [sym_keyword_not_inside] = ACTIONS(204), + [sym_keyword_all_inside] = ACTIONS(204), + [sym_keyword_any_inside] = ACTIONS(204), + [sym_keyword_none_inside] = ACTIONS(204), + [sym_keyword_outside] = ACTIONS(204), + [sym_keyword_intersects] = ACTIONS(204), + [sym_keyword_flexible] = ACTIONS(204), + [sym_keyword_readonly] = ACTIONS(204), + [sym_keyword_type] = ACTIONS(204), + [sym_keyword_default] = ACTIONS(204), + [sym_keyword_assert] = ACTIONS(204), + [sym_keyword_permissions] = ACTIONS(204), + [sym_keyword_for] = ACTIONS(204), + [sym_keyword_comment] = ACTIONS(204), + [anon_sym_COMMA] = ACTIONS(204), + [anon_sym_DASH_GT] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(204), + [anon_sym_RPAREN] = ACTIONS(204), + [anon_sym_RBRACE] = ACTIONS(204), + [anon_sym_LT_DASH] = ACTIONS(206), + [anon_sym_LT_DASH_GT] = ACTIONS(204), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(204), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_DASH] = ACTIONS(206), + [anon_sym_AT] = ACTIONS(206), + [anon_sym_LT_PIPE] = ACTIONS(204), + [anon_sym_AMP_AMP] = ACTIONS(204), + [anon_sym_PIPE_PIPE] = ACTIONS(204), + [anon_sym_QMARK_QMARK] = ACTIONS(204), + [anon_sym_QMARK_COLON] = ACTIONS(204), + [anon_sym_BANG_EQ] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(204), + [anon_sym_QMARK_EQ] = ACTIONS(204), + [anon_sym_STAR_EQ] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(204), + [anon_sym_BANG_TILDE] = ACTIONS(204), + [anon_sym_STAR_TILDE] = ACTIONS(204), + [anon_sym_LT_EQ] = ACTIONS(204), + [anon_sym_GT_EQ] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(206), + [anon_sym_PLUS_EQ] = ACTIONS(204), + [anon_sym_DASH_EQ] = ACTIONS(204), + [anon_sym_u00d7] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(206), + [anon_sym_u00f7] = ACTIONS(204), + [anon_sym_STAR_STAR] = ACTIONS(204), + [anon_sym_u220b] = ACTIONS(204), + [anon_sym_u220c] = ACTIONS(204), + [anon_sym_u2287] = ACTIONS(204), + [anon_sym_u2283] = ACTIONS(204), + [anon_sym_u2285] = ACTIONS(204), + [anon_sym_u2208] = ACTIONS(204), + [anon_sym_u2209] = ACTIONS(204), + [anon_sym_u2286] = ACTIONS(204), + [anon_sym_u2282] = ACTIONS(204), + [anon_sym_u2284] = ACTIONS(204), + [anon_sym_AT_AT] = ACTIONS(204), + }, [116] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(172), - [sym_keyword_value] = ACTIONS(172), - [sym_keyword_explain] = ACTIONS(172), - [sym_keyword_parallel] = ACTIONS(172), - [sym_keyword_timeout] = ACTIONS(172), - [sym_keyword_fetch] = ACTIONS(172), - [sym_keyword_limit] = ACTIONS(172), - [sym_keyword_rand] = ACTIONS(172), - [sym_keyword_collate] = ACTIONS(172), - [sym_keyword_numeric] = ACTIONS(172), - [sym_keyword_asc] = ACTIONS(172), - [sym_keyword_desc] = ACTIONS(172), - [sym_keyword_and] = ACTIONS(172), - [sym_keyword_or] = ACTIONS(172), - [sym_keyword_is] = ACTIONS(172), - [sym_keyword_not] = ACTIONS(174), - [sym_keyword_contains] = ACTIONS(172), - [sym_keyword_contains_not] = ACTIONS(172), - [sym_keyword_contains_all] = ACTIONS(172), - [sym_keyword_contains_any] = ACTIONS(172), - [sym_keyword_contains_none] = ACTIONS(172), - [sym_keyword_inside] = ACTIONS(172), - [sym_keyword_in] = ACTIONS(174), - [sym_keyword_not_inside] = ACTIONS(172), - [sym_keyword_all_inside] = ACTIONS(172), - [sym_keyword_any_inside] = ACTIONS(172), - [sym_keyword_none_inside] = ACTIONS(172), - [sym_keyword_outside] = ACTIONS(172), - [sym_keyword_intersects] = ACTIONS(172), - [sym_keyword_flexible] = ACTIONS(172), - [sym_keyword_readonly] = ACTIONS(172), - [sym_keyword_type] = ACTIONS(172), - [sym_keyword_default] = ACTIONS(172), - [sym_keyword_assert] = ACTIONS(172), - [sym_keyword_permissions] = ACTIONS(172), - [sym_keyword_for] = ACTIONS(172), - [sym_keyword_comment] = ACTIONS(172), - [anon_sym_COMMA] = ACTIONS(172), - [anon_sym_DASH_GT] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(172), - [anon_sym_RPAREN] = ACTIONS(172), - [anon_sym_RBRACE] = ACTIONS(172), - [anon_sym_LT_DASH] = ACTIONS(174), - [anon_sym_LT_DASH_GT] = ACTIONS(172), - [anon_sym_STAR] = ACTIONS(174), - [anon_sym_DOT] = ACTIONS(172), - [anon_sym_LT] = ACTIONS(174), - [anon_sym_GT] = ACTIONS(174), - [anon_sym_EQ] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_AT] = ACTIONS(174), - [anon_sym_LT_PIPE] = ACTIONS(172), - [anon_sym_AMP_AMP] = ACTIONS(172), - [anon_sym_PIPE_PIPE] = ACTIONS(172), - [anon_sym_QMARK_QMARK] = ACTIONS(172), - [anon_sym_QMARK_COLON] = ACTIONS(172), - [anon_sym_BANG_EQ] = ACTIONS(172), - [anon_sym_EQ_EQ] = ACTIONS(172), - [anon_sym_QMARK_EQ] = ACTIONS(172), - [anon_sym_STAR_EQ] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_BANG_TILDE] = ACTIONS(172), - [anon_sym_STAR_TILDE] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(172), - [anon_sym_GT_EQ] = ACTIONS(172), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_PLUS_EQ] = ACTIONS(172), - [anon_sym_DASH_EQ] = ACTIONS(172), - [anon_sym_u00d7] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(174), - [anon_sym_u00f7] = ACTIONS(172), - [anon_sym_STAR_STAR] = ACTIONS(172), - [anon_sym_u220b] = ACTIONS(172), - [anon_sym_u220c] = ACTIONS(172), - [anon_sym_u2287] = ACTIONS(172), - [anon_sym_u2283] = ACTIONS(172), - [anon_sym_u2285] = ACTIONS(172), - [anon_sym_u2208] = ACTIONS(172), - [anon_sym_u2209] = ACTIONS(172), - [anon_sym_u2286] = ACTIONS(172), - [anon_sym_u2282] = ACTIONS(172), - [anon_sym_u2284] = ACTIONS(172), - [anon_sym_AT_AT] = ACTIONS(172), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_value] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(140), + [sym_keyword_parallel] = ACTIONS(140), + [sym_keyword_timeout] = ACTIONS(140), + [sym_keyword_fetch] = ACTIONS(140), + [sym_keyword_limit] = ACTIONS(140), + [sym_keyword_rand] = ACTIONS(140), + [sym_keyword_collate] = ACTIONS(140), + [sym_keyword_numeric] = ACTIONS(140), + [sym_keyword_asc] = ACTIONS(140), + [sym_keyword_desc] = ACTIONS(140), + [sym_keyword_and] = ACTIONS(140), + [sym_keyword_or] = ACTIONS(140), + [sym_keyword_is] = ACTIONS(140), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(140), + [sym_keyword_contains_not] = ACTIONS(140), + [sym_keyword_contains_all] = ACTIONS(140), + [sym_keyword_contains_any] = ACTIONS(140), + [sym_keyword_contains_none] = ACTIONS(140), + [sym_keyword_inside] = ACTIONS(140), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(140), + [sym_keyword_all_inside] = ACTIONS(140), + [sym_keyword_any_inside] = ACTIONS(140), + [sym_keyword_none_inside] = ACTIONS(140), + [sym_keyword_outside] = ACTIONS(140), + [sym_keyword_intersects] = ACTIONS(140), + [sym_keyword_flexible] = ACTIONS(140), + [sym_keyword_readonly] = ACTIONS(140), + [sym_keyword_type] = ACTIONS(140), + [sym_keyword_default] = ACTIONS(140), + [sym_keyword_assert] = ACTIONS(140), + [sym_keyword_permissions] = ACTIONS(140), + [sym_keyword_for] = ACTIONS(140), + [sym_keyword_comment] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [117] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(164), - [sym_keyword_value] = ACTIONS(164), - [sym_keyword_explain] = ACTIONS(164), - [sym_keyword_parallel] = ACTIONS(164), - [sym_keyword_timeout] = ACTIONS(164), - [sym_keyword_fetch] = ACTIONS(164), - [sym_keyword_limit] = ACTIONS(164), - [sym_keyword_rand] = ACTIONS(164), - [sym_keyword_collate] = ACTIONS(164), - [sym_keyword_numeric] = ACTIONS(164), - [sym_keyword_asc] = ACTIONS(164), - [sym_keyword_desc] = ACTIONS(164), - [sym_keyword_and] = ACTIONS(164), - [sym_keyword_or] = ACTIONS(164), - [sym_keyword_is] = ACTIONS(164), - [sym_keyword_not] = ACTIONS(166), - [sym_keyword_contains] = ACTIONS(164), - [sym_keyword_contains_not] = ACTIONS(164), - [sym_keyword_contains_all] = ACTIONS(164), - [sym_keyword_contains_any] = ACTIONS(164), - [sym_keyword_contains_none] = ACTIONS(164), - [sym_keyword_inside] = ACTIONS(164), - [sym_keyword_in] = ACTIONS(166), - [sym_keyword_not_inside] = ACTIONS(164), - [sym_keyword_all_inside] = ACTIONS(164), - [sym_keyword_any_inside] = ACTIONS(164), - [sym_keyword_none_inside] = ACTIONS(164), - [sym_keyword_outside] = ACTIONS(164), - [sym_keyword_intersects] = ACTIONS(164), - [sym_keyword_flexible] = ACTIONS(164), - [sym_keyword_readonly] = ACTIONS(164), - [sym_keyword_type] = ACTIONS(164), - [sym_keyword_default] = ACTIONS(164), - [sym_keyword_assert] = ACTIONS(164), - [sym_keyword_permissions] = ACTIONS(164), - [sym_keyword_for] = ACTIONS(164), - [sym_keyword_comment] = ACTIONS(164), - [anon_sym_COMMA] = ACTIONS(164), - [anon_sym_DASH_GT] = ACTIONS(164), - [anon_sym_LBRACK] = ACTIONS(164), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LT_DASH] = ACTIONS(166), - [anon_sym_LT_DASH_GT] = ACTIONS(164), - [anon_sym_STAR] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(164), - [anon_sym_LT] = ACTIONS(166), - [anon_sym_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_AT] = ACTIONS(166), - [anon_sym_LT_PIPE] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(164), - [anon_sym_PIPE_PIPE] = ACTIONS(164), - [anon_sym_QMARK_QMARK] = ACTIONS(164), - [anon_sym_QMARK_COLON] = ACTIONS(164), - [anon_sym_BANG_EQ] = ACTIONS(164), - [anon_sym_EQ_EQ] = ACTIONS(164), - [anon_sym_QMARK_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_BANG_TILDE] = ACTIONS(164), - [anon_sym_STAR_TILDE] = ACTIONS(164), - [anon_sym_LT_EQ] = ACTIONS(164), - [anon_sym_GT_EQ] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_u00d7] = ACTIONS(164), - [anon_sym_SLASH] = ACTIONS(166), - [anon_sym_u00f7] = ACTIONS(164), - [anon_sym_STAR_STAR] = ACTIONS(164), - [anon_sym_u220b] = ACTIONS(164), - [anon_sym_u220c] = ACTIONS(164), - [anon_sym_u2287] = ACTIONS(164), - [anon_sym_u2283] = ACTIONS(164), - [anon_sym_u2285] = ACTIONS(164), - [anon_sym_u2208] = ACTIONS(164), - [anon_sym_u2209] = ACTIONS(164), - [anon_sym_u2286] = ACTIONS(164), - [anon_sym_u2282] = ACTIONS(164), - [anon_sym_u2284] = ACTIONS(164), - [anon_sym_AT_AT] = ACTIONS(164), + [sym_semi_colon] = ACTIONS(176), + [sym_keyword_value] = ACTIONS(176), + [sym_keyword_explain] = ACTIONS(176), + [sym_keyword_parallel] = ACTIONS(176), + [sym_keyword_timeout] = ACTIONS(176), + [sym_keyword_fetch] = ACTIONS(176), + [sym_keyword_limit] = ACTIONS(176), + [sym_keyword_rand] = ACTIONS(176), + [sym_keyword_collate] = ACTIONS(176), + [sym_keyword_numeric] = ACTIONS(176), + [sym_keyword_asc] = ACTIONS(176), + [sym_keyword_desc] = ACTIONS(176), + [sym_keyword_and] = ACTIONS(176), + [sym_keyword_or] = ACTIONS(176), + [sym_keyword_is] = ACTIONS(176), + [sym_keyword_not] = ACTIONS(178), + [sym_keyword_contains] = ACTIONS(176), + [sym_keyword_contains_not] = ACTIONS(176), + [sym_keyword_contains_all] = ACTIONS(176), + [sym_keyword_contains_any] = ACTIONS(176), + [sym_keyword_contains_none] = ACTIONS(176), + [sym_keyword_inside] = ACTIONS(176), + [sym_keyword_in] = ACTIONS(178), + [sym_keyword_not_inside] = ACTIONS(176), + [sym_keyword_all_inside] = ACTIONS(176), + [sym_keyword_any_inside] = ACTIONS(176), + [sym_keyword_none_inside] = ACTIONS(176), + [sym_keyword_outside] = ACTIONS(176), + [sym_keyword_intersects] = ACTIONS(176), + [sym_keyword_flexible] = ACTIONS(176), + [sym_keyword_readonly] = ACTIONS(176), + [sym_keyword_type] = ACTIONS(176), + [sym_keyword_default] = ACTIONS(176), + [sym_keyword_assert] = ACTIONS(176), + [sym_keyword_permissions] = ACTIONS(176), + [sym_keyword_for] = ACTIONS(176), + [sym_keyword_comment] = ACTIONS(176), + [anon_sym_COMMA] = ACTIONS(176), + [anon_sym_DASH_GT] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(176), + [anon_sym_RPAREN] = ACTIONS(176), + [anon_sym_RBRACE] = ACTIONS(176), + [anon_sym_LT_DASH] = ACTIONS(178), + [anon_sym_LT_DASH_GT] = ACTIONS(176), + [anon_sym_STAR] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(176), + [anon_sym_LT] = ACTIONS(178), + [anon_sym_GT] = ACTIONS(178), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_AT] = ACTIONS(178), + [anon_sym_LT_PIPE] = ACTIONS(176), + [anon_sym_AMP_AMP] = ACTIONS(176), + [anon_sym_PIPE_PIPE] = ACTIONS(176), + [anon_sym_QMARK_QMARK] = ACTIONS(176), + [anon_sym_QMARK_COLON] = ACTIONS(176), + [anon_sym_BANG_EQ] = ACTIONS(176), + [anon_sym_EQ_EQ] = ACTIONS(176), + [anon_sym_QMARK_EQ] = ACTIONS(176), + [anon_sym_STAR_EQ] = ACTIONS(176), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_BANG_TILDE] = ACTIONS(176), + [anon_sym_STAR_TILDE] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(176), + [anon_sym_GT_EQ] = ACTIONS(176), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_PLUS_EQ] = ACTIONS(176), + [anon_sym_DASH_EQ] = ACTIONS(176), + [anon_sym_u00d7] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(178), + [anon_sym_u00f7] = ACTIONS(176), + [anon_sym_STAR_STAR] = ACTIONS(176), + [anon_sym_u220b] = ACTIONS(176), + [anon_sym_u220c] = ACTIONS(176), + [anon_sym_u2287] = ACTIONS(176), + [anon_sym_u2283] = ACTIONS(176), + [anon_sym_u2285] = ACTIONS(176), + [anon_sym_u2208] = ACTIONS(176), + [anon_sym_u2209] = ACTIONS(176), + [anon_sym_u2286] = ACTIONS(176), + [anon_sym_u2282] = ACTIONS(176), + [anon_sym_u2284] = ACTIONS(176), + [anon_sym_AT_AT] = ACTIONS(176), }, [118] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(110), - [sym_keyword_value] = ACTIONS(110), - [sym_keyword_explain] = ACTIONS(110), - [sym_keyword_parallel] = ACTIONS(110), - [sym_keyword_timeout] = ACTIONS(110), - [sym_keyword_fetch] = ACTIONS(110), - [sym_keyword_limit] = ACTIONS(110), - [sym_keyword_rand] = ACTIONS(110), - [sym_keyword_collate] = ACTIONS(110), - [sym_keyword_numeric] = ACTIONS(110), - [sym_keyword_asc] = ACTIONS(110), - [sym_keyword_desc] = ACTIONS(110), - [sym_keyword_and] = ACTIONS(110), - [sym_keyword_or] = ACTIONS(110), - [sym_keyword_is] = ACTIONS(110), - [sym_keyword_not] = ACTIONS(112), - [sym_keyword_contains] = ACTIONS(110), - [sym_keyword_contains_not] = ACTIONS(110), - [sym_keyword_contains_all] = ACTIONS(110), - [sym_keyword_contains_any] = ACTIONS(110), - [sym_keyword_contains_none] = ACTIONS(110), - [sym_keyword_inside] = ACTIONS(110), - [sym_keyword_in] = ACTIONS(112), - [sym_keyword_not_inside] = ACTIONS(110), - [sym_keyword_all_inside] = ACTIONS(110), - [sym_keyword_any_inside] = ACTIONS(110), - [sym_keyword_none_inside] = ACTIONS(110), - [sym_keyword_outside] = ACTIONS(110), - [sym_keyword_intersects] = ACTIONS(110), - [sym_keyword_flexible] = ACTIONS(110), - [sym_keyword_readonly] = ACTIONS(110), - [sym_keyword_type] = ACTIONS(110), - [sym_keyword_default] = ACTIONS(110), - [sym_keyword_assert] = ACTIONS(110), - [sym_keyword_permissions] = ACTIONS(110), - [sym_keyword_for] = ACTIONS(110), - [sym_keyword_comment] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(110), - [anon_sym_DASH_GT] = ACTIONS(110), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_RPAREN] = ACTIONS(110), - [anon_sym_RBRACE] = ACTIONS(110), - [anon_sym_LT_DASH] = ACTIONS(112), - [anon_sym_LT_DASH_GT] = ACTIONS(110), - [anon_sym_STAR] = ACTIONS(112), - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_LT] = ACTIONS(112), - [anon_sym_GT] = ACTIONS(112), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_DASH] = ACTIONS(112), - [anon_sym_AT] = ACTIONS(112), - [anon_sym_LT_PIPE] = ACTIONS(110), - [anon_sym_AMP_AMP] = ACTIONS(110), - [anon_sym_PIPE_PIPE] = ACTIONS(110), - [anon_sym_QMARK_QMARK] = ACTIONS(110), - [anon_sym_QMARK_COLON] = ACTIONS(110), - [anon_sym_BANG_EQ] = ACTIONS(110), - [anon_sym_EQ_EQ] = ACTIONS(110), - [anon_sym_QMARK_EQ] = ACTIONS(110), - [anon_sym_STAR_EQ] = ACTIONS(110), - [anon_sym_TILDE] = ACTIONS(110), - [anon_sym_BANG_TILDE] = ACTIONS(110), - [anon_sym_STAR_TILDE] = ACTIONS(110), - [anon_sym_LT_EQ] = ACTIONS(110), - [anon_sym_GT_EQ] = ACTIONS(110), - [anon_sym_PLUS] = ACTIONS(112), - [anon_sym_PLUS_EQ] = ACTIONS(110), - [anon_sym_DASH_EQ] = ACTIONS(110), - [anon_sym_u00d7] = ACTIONS(110), - [anon_sym_SLASH] = ACTIONS(112), - [anon_sym_u00f7] = ACTIONS(110), - [anon_sym_STAR_STAR] = ACTIONS(110), - [anon_sym_u220b] = ACTIONS(110), - [anon_sym_u220c] = ACTIONS(110), - [anon_sym_u2287] = ACTIONS(110), - [anon_sym_u2283] = ACTIONS(110), - [anon_sym_u2285] = ACTIONS(110), - [anon_sym_u2208] = ACTIONS(110), - [anon_sym_u2209] = ACTIONS(110), - [anon_sym_u2286] = ACTIONS(110), - [anon_sym_u2282] = ACTIONS(110), - [anon_sym_u2284] = ACTIONS(110), - [anon_sym_AT_AT] = ACTIONS(110), + [sym_semi_colon] = ACTIONS(196), + [sym_keyword_value] = ACTIONS(196), + [sym_keyword_explain] = ACTIONS(196), + [sym_keyword_parallel] = ACTIONS(196), + [sym_keyword_timeout] = ACTIONS(196), + [sym_keyword_fetch] = ACTIONS(196), + [sym_keyword_limit] = ACTIONS(196), + [sym_keyword_rand] = ACTIONS(196), + [sym_keyword_collate] = ACTIONS(196), + [sym_keyword_numeric] = ACTIONS(196), + [sym_keyword_asc] = ACTIONS(196), + [sym_keyword_desc] = ACTIONS(196), + [sym_keyword_and] = ACTIONS(196), + [sym_keyword_or] = ACTIONS(196), + [sym_keyword_is] = ACTIONS(196), + [sym_keyword_not] = ACTIONS(198), + [sym_keyword_contains] = ACTIONS(196), + [sym_keyword_contains_not] = ACTIONS(196), + [sym_keyword_contains_all] = ACTIONS(196), + [sym_keyword_contains_any] = ACTIONS(196), + [sym_keyword_contains_none] = ACTIONS(196), + [sym_keyword_inside] = ACTIONS(196), + [sym_keyword_in] = ACTIONS(198), + [sym_keyword_not_inside] = ACTIONS(196), + [sym_keyword_all_inside] = ACTIONS(196), + [sym_keyword_any_inside] = ACTIONS(196), + [sym_keyword_none_inside] = ACTIONS(196), + [sym_keyword_outside] = ACTIONS(196), + [sym_keyword_intersects] = ACTIONS(196), + [sym_keyword_flexible] = ACTIONS(196), + [sym_keyword_readonly] = ACTIONS(196), + [sym_keyword_type] = ACTIONS(196), + [sym_keyword_default] = ACTIONS(196), + [sym_keyword_assert] = ACTIONS(196), + [sym_keyword_permissions] = ACTIONS(196), + [sym_keyword_for] = ACTIONS(196), + [sym_keyword_comment] = ACTIONS(196), + [anon_sym_COMMA] = ACTIONS(196), + [anon_sym_DASH_GT] = ACTIONS(196), + [anon_sym_LBRACK] = ACTIONS(196), + [anon_sym_RPAREN] = ACTIONS(196), + [anon_sym_RBRACE] = ACTIONS(196), + [anon_sym_LT_DASH] = ACTIONS(198), + [anon_sym_LT_DASH_GT] = ACTIONS(196), + [anon_sym_STAR] = ACTIONS(198), + [anon_sym_DOT] = ACTIONS(196), + [anon_sym_LT] = ACTIONS(198), + [anon_sym_GT] = ACTIONS(198), + [anon_sym_EQ] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(198), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_LT_PIPE] = ACTIONS(196), + [anon_sym_AMP_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(196), + [anon_sym_QMARK_QMARK] = ACTIONS(196), + [anon_sym_QMARK_COLON] = ACTIONS(196), + [anon_sym_BANG_EQ] = ACTIONS(196), + [anon_sym_EQ_EQ] = ACTIONS(196), + [anon_sym_QMARK_EQ] = ACTIONS(196), + [anon_sym_STAR_EQ] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_BANG_TILDE] = ACTIONS(196), + [anon_sym_STAR_TILDE] = ACTIONS(196), + [anon_sym_LT_EQ] = ACTIONS(196), + [anon_sym_GT_EQ] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(198), + [anon_sym_PLUS_EQ] = ACTIONS(196), + [anon_sym_DASH_EQ] = ACTIONS(196), + [anon_sym_u00d7] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(198), + [anon_sym_u00f7] = ACTIONS(196), + [anon_sym_STAR_STAR] = ACTIONS(196), + [anon_sym_u220b] = ACTIONS(196), + [anon_sym_u220c] = ACTIONS(196), + [anon_sym_u2287] = ACTIONS(196), + [anon_sym_u2283] = ACTIONS(196), + [anon_sym_u2285] = ACTIONS(196), + [anon_sym_u2208] = ACTIONS(196), + [anon_sym_u2209] = ACTIONS(196), + [anon_sym_u2286] = ACTIONS(196), + [anon_sym_u2282] = ACTIONS(196), + [anon_sym_u2284] = ACTIONS(196), + [anon_sym_AT_AT] = ACTIONS(196), }, [119] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(168), - [sym_keyword_value] = ACTIONS(168), - [sym_keyword_explain] = ACTIONS(168), - [sym_keyword_parallel] = ACTIONS(168), - [sym_keyword_timeout] = ACTIONS(168), - [sym_keyword_fetch] = ACTIONS(168), - [sym_keyword_limit] = ACTIONS(168), - [sym_keyword_rand] = ACTIONS(168), - [sym_keyword_collate] = ACTIONS(168), - [sym_keyword_numeric] = ACTIONS(168), - [sym_keyword_asc] = ACTIONS(168), - [sym_keyword_desc] = ACTIONS(168), - [sym_keyword_and] = ACTIONS(168), - [sym_keyword_or] = ACTIONS(168), - [sym_keyword_is] = ACTIONS(168), - [sym_keyword_not] = ACTIONS(170), - [sym_keyword_contains] = ACTIONS(168), - [sym_keyword_contains_not] = ACTIONS(168), - [sym_keyword_contains_all] = ACTIONS(168), - [sym_keyword_contains_any] = ACTIONS(168), - [sym_keyword_contains_none] = ACTIONS(168), - [sym_keyword_inside] = ACTIONS(168), - [sym_keyword_in] = ACTIONS(170), - [sym_keyword_not_inside] = ACTIONS(168), - [sym_keyword_all_inside] = ACTIONS(168), - [sym_keyword_any_inside] = ACTIONS(168), - [sym_keyword_none_inside] = ACTIONS(168), - [sym_keyword_outside] = ACTIONS(168), - [sym_keyword_intersects] = ACTIONS(168), - [sym_keyword_flexible] = ACTIONS(168), - [sym_keyword_readonly] = ACTIONS(168), - [sym_keyword_type] = ACTIONS(168), - [sym_keyword_default] = ACTIONS(168), - [sym_keyword_assert] = ACTIONS(168), - [sym_keyword_permissions] = ACTIONS(168), - [sym_keyword_for] = ACTIONS(168), - [sym_keyword_comment] = ACTIONS(168), - [anon_sym_COMMA] = ACTIONS(168), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_LBRACK] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), - [anon_sym_LT_DASH] = ACTIONS(170), - [anon_sym_LT_DASH_GT] = ACTIONS(168), - [anon_sym_STAR] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LT] = ACTIONS(170), - [anon_sym_GT] = ACTIONS(170), - [anon_sym_EQ] = ACTIONS(170), - [anon_sym_DASH] = ACTIONS(170), - [anon_sym_AT] = ACTIONS(170), - [anon_sym_LT_PIPE] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(168), - [anon_sym_PIPE_PIPE] = ACTIONS(168), - [anon_sym_QMARK_QMARK] = ACTIONS(168), - [anon_sym_QMARK_COLON] = ACTIONS(168), - [anon_sym_BANG_EQ] = ACTIONS(168), - [anon_sym_EQ_EQ] = ACTIONS(168), - [anon_sym_QMARK_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(168), - [anon_sym_BANG_TILDE] = ACTIONS(168), - [anon_sym_STAR_TILDE] = ACTIONS(168), - [anon_sym_LT_EQ] = ACTIONS(168), - [anon_sym_GT_EQ] = ACTIONS(168), - [anon_sym_PLUS] = ACTIONS(170), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_u00d7] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_u00f7] = ACTIONS(168), - [anon_sym_STAR_STAR] = ACTIONS(168), - [anon_sym_u220b] = ACTIONS(168), - [anon_sym_u220c] = ACTIONS(168), - [anon_sym_u2287] = ACTIONS(168), - [anon_sym_u2283] = ACTIONS(168), - [anon_sym_u2285] = ACTIONS(168), - [anon_sym_u2208] = ACTIONS(168), - [anon_sym_u2209] = ACTIONS(168), - [anon_sym_u2286] = ACTIONS(168), - [anon_sym_u2282] = ACTIONS(168), - [anon_sym_u2284] = ACTIONS(168), - [anon_sym_AT_AT] = ACTIONS(168), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_value] = ACTIONS(160), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_rand] = ACTIONS(160), + [sym_keyword_collate] = ACTIONS(160), + [sym_keyword_numeric] = ACTIONS(160), + [sym_keyword_asc] = ACTIONS(160), + [sym_keyword_desc] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_flexible] = ACTIONS(160), + [sym_keyword_readonly] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_default] = ACTIONS(160), + [sym_keyword_assert] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_for] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, [120] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_value] = ACTIONS(180), - [sym_keyword_explain] = ACTIONS(180), - [sym_keyword_parallel] = ACTIONS(180), - [sym_keyword_timeout] = ACTIONS(180), - [sym_keyword_fetch] = ACTIONS(180), - [sym_keyword_limit] = ACTIONS(180), - [sym_keyword_rand] = ACTIONS(180), - [sym_keyword_collate] = ACTIONS(180), - [sym_keyword_numeric] = ACTIONS(180), - [sym_keyword_asc] = ACTIONS(180), - [sym_keyword_desc] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(180), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [sym_keyword_flexible] = ACTIONS(180), - [sym_keyword_readonly] = ACTIONS(180), - [sym_keyword_type] = ACTIONS(180), - [sym_keyword_default] = ACTIONS(180), - [sym_keyword_assert] = ACTIONS(180), - [sym_keyword_permissions] = ACTIONS(180), - [sym_keyword_for] = ACTIONS(180), - [sym_keyword_comment] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_DASH_GT] = ACTIONS(180), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_LT_DASH] = ACTIONS(182), - [anon_sym_LT_DASH_GT] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), + [sym_semi_colon] = ACTIONS(184), + [sym_keyword_value] = ACTIONS(184), + [sym_keyword_explain] = ACTIONS(184), + [sym_keyword_parallel] = ACTIONS(184), + [sym_keyword_timeout] = ACTIONS(184), + [sym_keyword_fetch] = ACTIONS(184), + [sym_keyword_limit] = ACTIONS(184), + [sym_keyword_rand] = ACTIONS(184), + [sym_keyword_collate] = ACTIONS(184), + [sym_keyword_numeric] = ACTIONS(184), + [sym_keyword_asc] = ACTIONS(184), + [sym_keyword_desc] = ACTIONS(184), + [sym_keyword_and] = ACTIONS(184), + [sym_keyword_or] = ACTIONS(184), + [sym_keyword_is] = ACTIONS(184), + [sym_keyword_not] = ACTIONS(186), + [sym_keyword_contains] = ACTIONS(184), + [sym_keyword_contains_not] = ACTIONS(184), + [sym_keyword_contains_all] = ACTIONS(184), + [sym_keyword_contains_any] = ACTIONS(184), + [sym_keyword_contains_none] = ACTIONS(184), + [sym_keyword_inside] = ACTIONS(184), + [sym_keyword_in] = ACTIONS(186), + [sym_keyword_not_inside] = ACTIONS(184), + [sym_keyword_all_inside] = ACTIONS(184), + [sym_keyword_any_inside] = ACTIONS(184), + [sym_keyword_none_inside] = ACTIONS(184), + [sym_keyword_outside] = ACTIONS(184), + [sym_keyword_intersects] = ACTIONS(184), + [sym_keyword_flexible] = ACTIONS(184), + [sym_keyword_readonly] = ACTIONS(184), + [sym_keyword_type] = ACTIONS(184), + [sym_keyword_default] = ACTIONS(184), + [sym_keyword_assert] = ACTIONS(184), + [sym_keyword_permissions] = ACTIONS(184), + [sym_keyword_for] = ACTIONS(184), + [sym_keyword_comment] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(184), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(184), + [anon_sym_RPAREN] = ACTIONS(184), + [anon_sym_RBRACE] = ACTIONS(184), + [anon_sym_LT_DASH] = ACTIONS(186), + [anon_sym_LT_DASH_GT] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(186), + [anon_sym_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_DASH] = ACTIONS(186), + [anon_sym_AT] = ACTIONS(186), + [anon_sym_LT_PIPE] = ACTIONS(184), + [anon_sym_AMP_AMP] = ACTIONS(184), + [anon_sym_PIPE_PIPE] = ACTIONS(184), + [anon_sym_QMARK_QMARK] = ACTIONS(184), + [anon_sym_QMARK_COLON] = ACTIONS(184), + [anon_sym_BANG_EQ] = ACTIONS(184), + [anon_sym_EQ_EQ] = ACTIONS(184), + [anon_sym_QMARK_EQ] = ACTIONS(184), + [anon_sym_STAR_EQ] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(184), + [anon_sym_BANG_TILDE] = ACTIONS(184), + [anon_sym_STAR_TILDE] = ACTIONS(184), + [anon_sym_LT_EQ] = ACTIONS(184), + [anon_sym_GT_EQ] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(186), + [anon_sym_PLUS_EQ] = ACTIONS(184), + [anon_sym_DASH_EQ] = ACTIONS(184), + [anon_sym_u00d7] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_u00f7] = ACTIONS(184), + [anon_sym_STAR_STAR] = ACTIONS(184), + [anon_sym_u220b] = ACTIONS(184), + [anon_sym_u220c] = ACTIONS(184), + [anon_sym_u2287] = ACTIONS(184), + [anon_sym_u2283] = ACTIONS(184), + [anon_sym_u2285] = ACTIONS(184), + [anon_sym_u2208] = ACTIONS(184), + [anon_sym_u2209] = ACTIONS(184), + [anon_sym_u2286] = ACTIONS(184), + [anon_sym_u2282] = ACTIONS(184), + [anon_sym_u2284] = ACTIONS(184), + [anon_sym_AT_AT] = ACTIONS(184), }, [121] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_value] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_rand] = ACTIONS(192), - [sym_keyword_collate] = ACTIONS(192), - [sym_keyword_numeric] = ACTIONS(192), - [sym_keyword_asc] = ACTIONS(192), - [sym_keyword_desc] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_flexible] = ACTIONS(192), - [sym_keyword_readonly] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_default] = ACTIONS(192), - [sym_keyword_assert] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_for] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [122] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(200), [sym_keyword_value] = ACTIONS(200), @@ -27602,93 +27536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(200), [anon_sym_AT_AT] = ACTIONS(200), }, - [123] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(208), - [sym_keyword_value] = ACTIONS(208), - [sym_keyword_explain] = ACTIONS(208), - [sym_keyword_parallel] = ACTIONS(208), - [sym_keyword_timeout] = ACTIONS(208), - [sym_keyword_fetch] = ACTIONS(208), - [sym_keyword_limit] = ACTIONS(208), - [sym_keyword_rand] = ACTIONS(208), - [sym_keyword_collate] = ACTIONS(208), - [sym_keyword_numeric] = ACTIONS(208), - [sym_keyword_asc] = ACTIONS(208), - [sym_keyword_desc] = ACTIONS(208), - [sym_keyword_and] = ACTIONS(208), - [sym_keyword_or] = ACTIONS(208), - [sym_keyword_is] = ACTIONS(208), - [sym_keyword_not] = ACTIONS(210), - [sym_keyword_contains] = ACTIONS(208), - [sym_keyword_contains_not] = ACTIONS(208), - [sym_keyword_contains_all] = ACTIONS(208), - [sym_keyword_contains_any] = ACTIONS(208), - [sym_keyword_contains_none] = ACTIONS(208), - [sym_keyword_inside] = ACTIONS(208), - [sym_keyword_in] = ACTIONS(210), - [sym_keyword_not_inside] = ACTIONS(208), - [sym_keyword_all_inside] = ACTIONS(208), - [sym_keyword_any_inside] = ACTIONS(208), - [sym_keyword_none_inside] = ACTIONS(208), - [sym_keyword_outside] = ACTIONS(208), - [sym_keyword_intersects] = ACTIONS(208), - [sym_keyword_flexible] = ACTIONS(208), - [sym_keyword_readonly] = ACTIONS(208), - [sym_keyword_type] = ACTIONS(208), - [sym_keyword_default] = ACTIONS(208), - [sym_keyword_assert] = ACTIONS(208), - [sym_keyword_permissions] = ACTIONS(208), - [sym_keyword_for] = ACTIONS(208), - [sym_keyword_comment] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_DASH_GT] = ACTIONS(208), - [anon_sym_LBRACK] = ACTIONS(208), - [anon_sym_RPAREN] = ACTIONS(208), - [anon_sym_RBRACE] = ACTIONS(208), - [anon_sym_LT_DASH] = ACTIONS(210), - [anon_sym_LT_DASH_GT] = ACTIONS(208), - [anon_sym_STAR] = ACTIONS(210), - [anon_sym_DOT] = ACTIONS(208), - [anon_sym_LT] = ACTIONS(210), - [anon_sym_GT] = ACTIONS(210), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_DASH] = ACTIONS(210), - [anon_sym_AT] = ACTIONS(210), - [anon_sym_LT_PIPE] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(208), - [anon_sym_PIPE_PIPE] = ACTIONS(208), - [anon_sym_QMARK_QMARK] = ACTIONS(208), - [anon_sym_QMARK_COLON] = ACTIONS(208), - [anon_sym_BANG_EQ] = ACTIONS(208), - [anon_sym_EQ_EQ] = ACTIONS(208), - [anon_sym_QMARK_EQ] = ACTIONS(208), - [anon_sym_STAR_EQ] = ACTIONS(208), - [anon_sym_TILDE] = ACTIONS(208), - [anon_sym_BANG_TILDE] = ACTIONS(208), - [anon_sym_STAR_TILDE] = ACTIONS(208), - [anon_sym_LT_EQ] = ACTIONS(208), - [anon_sym_GT_EQ] = ACTIONS(208), - [anon_sym_PLUS] = ACTIONS(210), - [anon_sym_PLUS_EQ] = ACTIONS(208), - [anon_sym_DASH_EQ] = ACTIONS(208), - [anon_sym_u00d7] = ACTIONS(208), - [anon_sym_SLASH] = ACTIONS(210), - [anon_sym_u00f7] = ACTIONS(208), - [anon_sym_STAR_STAR] = ACTIONS(208), - [anon_sym_u220b] = ACTIONS(208), - [anon_sym_u220c] = ACTIONS(208), - [anon_sym_u2287] = ACTIONS(208), - [anon_sym_u2283] = ACTIONS(208), - [anon_sym_u2285] = ACTIONS(208), - [anon_sym_u2208] = ACTIONS(208), - [anon_sym_u2209] = ACTIONS(208), - [anon_sym_u2286] = ACTIONS(208), - [anon_sym_u2282] = ACTIONS(208), - [anon_sym_u2284] = ACTIONS(208), - [anon_sym_AT_AT] = ACTIONS(208), - }, - [124] = { + [122] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(57), [sym_keyword_value] = ACTIONS(57), @@ -27774,7 +27622,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(57), [anon_sym_AT_AT] = ACTIONS(57), }, + [123] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(152), + [sym_keyword_value] = ACTIONS(152), + [sym_keyword_explain] = ACTIONS(152), + [sym_keyword_parallel] = ACTIONS(152), + [sym_keyword_timeout] = ACTIONS(152), + [sym_keyword_fetch] = ACTIONS(152), + [sym_keyword_limit] = ACTIONS(152), + [sym_keyword_rand] = ACTIONS(152), + [sym_keyword_collate] = ACTIONS(152), + [sym_keyword_numeric] = ACTIONS(152), + [sym_keyword_asc] = ACTIONS(152), + [sym_keyword_desc] = ACTIONS(152), + [sym_keyword_and] = ACTIONS(152), + [sym_keyword_or] = ACTIONS(152), + [sym_keyword_is] = ACTIONS(152), + [sym_keyword_not] = ACTIONS(154), + [sym_keyword_contains] = ACTIONS(152), + [sym_keyword_contains_not] = ACTIONS(152), + [sym_keyword_contains_all] = ACTIONS(152), + [sym_keyword_contains_any] = ACTIONS(152), + [sym_keyword_contains_none] = ACTIONS(152), + [sym_keyword_inside] = ACTIONS(152), + [sym_keyword_in] = ACTIONS(154), + [sym_keyword_not_inside] = ACTIONS(152), + [sym_keyword_all_inside] = ACTIONS(152), + [sym_keyword_any_inside] = ACTIONS(152), + [sym_keyword_none_inside] = ACTIONS(152), + [sym_keyword_outside] = ACTIONS(152), + [sym_keyword_intersects] = ACTIONS(152), + [sym_keyword_flexible] = ACTIONS(152), + [sym_keyword_readonly] = ACTIONS(152), + [sym_keyword_type] = ACTIONS(152), + [sym_keyword_default] = ACTIONS(152), + [sym_keyword_assert] = ACTIONS(152), + [sym_keyword_permissions] = ACTIONS(152), + [sym_keyword_for] = ACTIONS(152), + [sym_keyword_comment] = ACTIONS(152), + [anon_sym_COMMA] = ACTIONS(152), + [anon_sym_DASH_GT] = ACTIONS(152), + [anon_sym_LBRACK] = ACTIONS(152), + [anon_sym_RPAREN] = ACTIONS(152), + [anon_sym_RBRACE] = ACTIONS(152), + [anon_sym_LT_DASH] = ACTIONS(154), + [anon_sym_LT_DASH_GT] = ACTIONS(152), + [anon_sym_STAR] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LT] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_EQ] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(154), + [anon_sym_LT_PIPE] = ACTIONS(152), + [anon_sym_AMP_AMP] = ACTIONS(152), + [anon_sym_PIPE_PIPE] = ACTIONS(152), + [anon_sym_QMARK_QMARK] = ACTIONS(152), + [anon_sym_QMARK_COLON] = ACTIONS(152), + [anon_sym_BANG_EQ] = ACTIONS(152), + [anon_sym_EQ_EQ] = ACTIONS(152), + [anon_sym_QMARK_EQ] = ACTIONS(152), + [anon_sym_STAR_EQ] = ACTIONS(152), + [anon_sym_TILDE] = ACTIONS(152), + [anon_sym_BANG_TILDE] = ACTIONS(152), + [anon_sym_STAR_TILDE] = ACTIONS(152), + [anon_sym_LT_EQ] = ACTIONS(152), + [anon_sym_GT_EQ] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(152), + [anon_sym_DASH_EQ] = ACTIONS(152), + [anon_sym_u00d7] = ACTIONS(152), + [anon_sym_SLASH] = ACTIONS(154), + [anon_sym_u00f7] = ACTIONS(152), + [anon_sym_STAR_STAR] = ACTIONS(152), + [anon_sym_u220b] = ACTIONS(152), + [anon_sym_u220c] = ACTIONS(152), + [anon_sym_u2287] = ACTIONS(152), + [anon_sym_u2283] = ACTIONS(152), + [anon_sym_u2285] = ACTIONS(152), + [anon_sym_u2208] = ACTIONS(152), + [anon_sym_u2209] = ACTIONS(152), + [anon_sym_u2286] = ACTIONS(152), + [anon_sym_u2282] = ACTIONS(152), + [anon_sym_u2284] = ACTIONS(152), + [anon_sym_AT_AT] = ACTIONS(152), + }, + [124] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(148), + [sym_keyword_value] = ACTIONS(148), + [sym_keyword_explain] = ACTIONS(148), + [sym_keyword_parallel] = ACTIONS(148), + [sym_keyword_timeout] = ACTIONS(148), + [sym_keyword_fetch] = ACTIONS(148), + [sym_keyword_limit] = ACTIONS(148), + [sym_keyword_rand] = ACTIONS(148), + [sym_keyword_collate] = ACTIONS(148), + [sym_keyword_numeric] = ACTIONS(148), + [sym_keyword_asc] = ACTIONS(148), + [sym_keyword_desc] = ACTIONS(148), + [sym_keyword_and] = ACTIONS(148), + [sym_keyword_or] = ACTIONS(148), + [sym_keyword_is] = ACTIONS(148), + [sym_keyword_not] = ACTIONS(150), + [sym_keyword_contains] = ACTIONS(148), + [sym_keyword_contains_not] = ACTIONS(148), + [sym_keyword_contains_all] = ACTIONS(148), + [sym_keyword_contains_any] = ACTIONS(148), + [sym_keyword_contains_none] = ACTIONS(148), + [sym_keyword_inside] = ACTIONS(148), + [sym_keyword_in] = ACTIONS(150), + [sym_keyword_not_inside] = ACTIONS(148), + [sym_keyword_all_inside] = ACTIONS(148), + [sym_keyword_any_inside] = ACTIONS(148), + [sym_keyword_none_inside] = ACTIONS(148), + [sym_keyword_outside] = ACTIONS(148), + [sym_keyword_intersects] = ACTIONS(148), + [sym_keyword_flexible] = ACTIONS(148), + [sym_keyword_readonly] = ACTIONS(148), + [sym_keyword_type] = ACTIONS(148), + [sym_keyword_default] = ACTIONS(148), + [sym_keyword_assert] = ACTIONS(148), + [sym_keyword_permissions] = ACTIONS(148), + [sym_keyword_for] = ACTIONS(148), + [sym_keyword_comment] = ACTIONS(148), + [anon_sym_COMMA] = ACTIONS(148), + [anon_sym_DASH_GT] = ACTIONS(148), + [anon_sym_LBRACK] = ACTIONS(148), + [anon_sym_RPAREN] = ACTIONS(148), + [anon_sym_RBRACE] = ACTIONS(148), + [anon_sym_LT_DASH] = ACTIONS(150), + [anon_sym_LT_DASH_GT] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(150), + [anon_sym_EQ] = ACTIONS(150), + [anon_sym_DASH] = ACTIONS(150), + [anon_sym_AT] = ACTIONS(150), + [anon_sym_LT_PIPE] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [anon_sym_QMARK_QMARK] = ACTIONS(148), + [anon_sym_QMARK_COLON] = ACTIONS(148), + [anon_sym_BANG_EQ] = ACTIONS(148), + [anon_sym_EQ_EQ] = ACTIONS(148), + [anon_sym_QMARK_EQ] = ACTIONS(148), + [anon_sym_STAR_EQ] = ACTIONS(148), + [anon_sym_TILDE] = ACTIONS(148), + [anon_sym_BANG_TILDE] = ACTIONS(148), + [anon_sym_STAR_TILDE] = ACTIONS(148), + [anon_sym_LT_EQ] = ACTIONS(148), + [anon_sym_GT_EQ] = ACTIONS(148), + [anon_sym_PLUS] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(148), + [anon_sym_DASH_EQ] = ACTIONS(148), + [anon_sym_u00d7] = ACTIONS(148), + [anon_sym_SLASH] = ACTIONS(150), + [anon_sym_u00f7] = ACTIONS(148), + [anon_sym_STAR_STAR] = ACTIONS(148), + [anon_sym_u220b] = ACTIONS(148), + [anon_sym_u220c] = ACTIONS(148), + [anon_sym_u2287] = ACTIONS(148), + [anon_sym_u2283] = ACTIONS(148), + [anon_sym_u2285] = ACTIONS(148), + [anon_sym_u2208] = ACTIONS(148), + [anon_sym_u2209] = ACTIONS(148), + [anon_sym_u2286] = ACTIONS(148), + [anon_sym_u2282] = ACTIONS(148), + [anon_sym_u2284] = ACTIONS(148), + [anon_sym_AT_AT] = ACTIONS(148), + }, [125] = { + [sym_with_clause] = STATE(784), + [sym_where_clause] = STATE(796), + [sym_split_clause] = STATE(818), + [sym_group_clause] = STATE(863), + [sym_order_clause] = STATE(874), + [sym_limit_clause] = STATE(956), + [sym_fetch_clause] = STATE(1013), + [sym_timeout_clause] = STATE(1121), + [sym_parallel_clause] = STATE(1250), + [sym_explain_clause] = STATE(1298), + [sym_operator] = STATE(695), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(768), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(291), + [sym_keyword_explain] = ACTIONS(293), + [sym_keyword_parallel] = ACTIONS(295), + [sym_keyword_timeout] = ACTIONS(297), + [sym_keyword_fetch] = ACTIONS(299), + [sym_keyword_limit] = ACTIONS(301), + [sym_keyword_order] = ACTIONS(303), + [sym_keyword_with] = ACTIONS(305), + [sym_keyword_where] = ACTIONS(307), + [sym_keyword_split] = ACTIONS(309), + [sym_keyword_group] = ACTIONS(311), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(315), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(321), + [anon_sym_RPAREN] = ACTIONS(291), + [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), + }, + [126] = { [ts_builtin_sym_end] = ACTIONS(57), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(57), @@ -27859,104 +27964,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(57), [anon_sym_AT_AT] = ACTIONS(57), }, - [126] = { - [sym_with_clause] = STATE(786), - [sym_where_clause] = STATE(792), - [sym_split_clause] = STATE(830), - [sym_group_clause] = STATE(861), - [sym_order_clause] = STATE(878), - [sym_limit_clause] = STATE(953), - [sym_fetch_clause] = STATE(1009), - [sym_timeout_clause] = STATE(1145), - [sym_parallel_clause] = STATE(1225), - [sym_explain_clause] = STATE(1295), - [sym_operator] = STATE(712), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(768), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(291), - [sym_keyword_explain] = ACTIONS(293), - [sym_keyword_parallel] = ACTIONS(295), - [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_fetch] = ACTIONS(299), - [sym_keyword_limit] = ACTIONS(301), - [sym_keyword_order] = ACTIONS(303), - [sym_keyword_with] = ACTIONS(305), - [sym_keyword_where] = ACTIONS(307), - [sym_keyword_split] = ACTIONS(309), - [sym_keyword_group] = ACTIONS(311), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(315), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(321), - [anon_sym_RPAREN] = ACTIONS(291), - [anon_sym_RBRACE] = ACTIONS(291), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), - }, [127] = { - [sym_with_clause] = STATE(784), - [sym_where_clause] = STATE(791), - [sym_split_clause] = STATE(817), - [sym_group_clause] = STATE(865), - [sym_order_clause] = STATE(890), - [sym_limit_clause] = STATE(952), - [sym_fetch_clause] = STATE(1017), - [sym_timeout_clause] = STATE(1151), - [sym_parallel_clause] = STATE(1198), - [sym_explain_clause] = STATE(1397), - [sym_operator] = STATE(712), - [sym_binary_operator] = STATE(783), + [sym_with_clause] = STATE(785), + [sym_where_clause] = STATE(795), + [sym_split_clause] = STATE(826), + [sym_group_clause] = STATE(860), + [sym_order_clause] = STATE(891), + [sym_limit_clause] = STATE(981), + [sym_fetch_clause] = STATE(1007), + [sym_timeout_clause] = STATE(1109), + [sym_parallel_clause] = STATE(1203), + [sym_explain_clause] = STATE(1302), + [sym_operator] = STATE(695), + [sym_binary_operator] = STATE(779), [aux_sym_update_statement_repeat1] = STATE(767), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(331), @@ -28029,527 +28049,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [128] = { - [sym_with_clause] = STATE(788), - [sym_where_clause] = STATE(809), - [sym_split_clause] = STATE(834), - [sym_group_clause] = STATE(886), - [sym_order_clause] = STATE(890), - [sym_limit_clause] = STATE(952), - [sym_fetch_clause] = STATE(1017), - [sym_timeout_clause] = STATE(1151), - [sym_parallel_clause] = STATE(1198), - [sym_explain_clause] = STATE(1397), - [sym_operator] = STATE(678), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(771), - [ts_builtin_sym_end] = ACTIONS(331), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(331), - [sym_keyword_explain] = ACTIONS(293), - [sym_keyword_parallel] = ACTIONS(295), - [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_fetch] = ACTIONS(299), - [sym_keyword_limit] = ACTIONS(301), - [sym_keyword_order] = ACTIONS(333), - [sym_keyword_with] = ACTIONS(335), - [sym_keyword_where] = ACTIONS(337), - [sym_keyword_split] = ACTIONS(309), - [sym_keyword_group] = ACTIONS(311), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(315), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), - }, - [129] = { - [sym_with_clause] = STATE(787), - [sym_where_clause] = STATE(806), - [sym_split_clause] = STATE(836), - [sym_group_clause] = STATE(884), - [sym_order_clause] = STATE(878), - [sym_limit_clause] = STATE(953), - [sym_fetch_clause] = STATE(1009), - [sym_timeout_clause] = STATE(1145), - [sym_parallel_clause] = STATE(1225), - [sym_explain_clause] = STATE(1295), - [sym_operator] = STATE(678), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(291), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(291), - [sym_keyword_explain] = ACTIONS(293), - [sym_keyword_parallel] = ACTIONS(295), - [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_fetch] = ACTIONS(299), - [sym_keyword_limit] = ACTIONS(301), - [sym_keyword_order] = ACTIONS(333), - [sym_keyword_with] = ACTIONS(335), - [sym_keyword_where] = ACTIONS(337), - [sym_keyword_split] = ACTIONS(309), - [sym_keyword_group] = ACTIONS(311), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(315), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(339), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), - }, - [130] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_as] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_group] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_drop] = ACTIONS(343), - [sym_keyword_schemafull] = ACTIONS(343), - [sym_keyword_schemaless] = ACTIONS(343), - [sym_keyword_changefeed] = ACTIONS(343), - [sym_keyword_type] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [131] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_as] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_group] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_drop] = ACTIONS(162), - [sym_keyword_schemafull] = ACTIONS(162), - [sym_keyword_schemaless] = ACTIONS(162), - [sym_keyword_changefeed] = ACTIONS(162), - [sym_keyword_type] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [132] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_as] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_group] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_drop] = ACTIONS(214), - [sym_keyword_schemafull] = ACTIONS(214), - [sym_keyword_schemaless] = ACTIONS(214), - [sym_keyword_changefeed] = ACTIONS(214), - [sym_keyword_type] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [133] = { - [sym_array] = STATE(94), - [sym_object] = STATE(94), - [sym_record_id_value] = STATE(113), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_fetch] = ACTIONS(214), - [sym_keyword_limit] = ACTIONS(214), - [sym_keyword_rand] = ACTIONS(214), - [sym_keyword_collate] = ACTIONS(214), - [sym_keyword_numeric] = ACTIONS(214), - [sym_keyword_asc] = ACTIONS(214), - [sym_keyword_desc] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(351), - [sym_record_id_ident] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [134] = { - [sym_where_clause] = STATE(1044), - [sym_timeout_clause] = STATE(1250), - [sym_parallel_clause] = STATE(1357), - [sym_content_clause] = STATE(988), - [sym_set_clause] = STATE(988), - [sym_unset_clause] = STATE(988), - [sym_return_clause] = STATE(1114), - [sym_merge_clause] = STATE(988), - [sym_patch_clause] = STATE(988), - [sym_operator] = STATE(694), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(773), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(353), - [sym_keyword_return] = ACTIONS(355), + [128] = { + [sym_with_clause] = STATE(790), + [sym_where_clause] = STATE(804), + [sym_split_clause] = STATE(833), + [sym_group_clause] = STATE(872), + [sym_order_clause] = STATE(891), + [sym_limit_clause] = STATE(981), + [sym_fetch_clause] = STATE(1007), + [sym_timeout_clause] = STATE(1109), + [sym_parallel_clause] = STATE(1203), + [sym_explain_clause] = STATE(1302), + [sym_operator] = STATE(700), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(770), + [ts_builtin_sym_end] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(331), + [sym_keyword_explain] = ACTIONS(293), [sym_keyword_parallel] = ACTIONS(295), [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_where] = ACTIONS(357), + [sym_keyword_fetch] = ACTIONS(299), + [sym_keyword_limit] = ACTIONS(301), + [sym_keyword_order] = ACTIONS(333), + [sym_keyword_with] = ACTIONS(335), + [sym_keyword_where] = ACTIONS(337), + [sym_keyword_split] = ACTIONS(309), + [sym_keyword_group] = ACTIONS(311), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(315), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -28565,14 +28093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_content] = ACTIONS(359), - [sym_keyword_merge] = ACTIONS(361), - [sym_keyword_patch] = ACTIONS(363), - [sym_keyword_set] = ACTIONS(365), - [sym_keyword_unset] = ACTIONS(367), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_RPAREN] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(353), + [anon_sym_COMMA] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -28612,193 +28133,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [135] = { - [sym_array] = STATE(94), - [sym_object] = STATE(94), - [sym_record_id_value] = STATE(107), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_fetch] = ACTIONS(162), - [sym_keyword_limit] = ACTIONS(162), - [sym_keyword_rand] = ACTIONS(162), - [sym_keyword_collate] = ACTIONS(162), - [sym_keyword_numeric] = ACTIONS(162), - [sym_keyword_asc] = ACTIONS(162), - [sym_keyword_desc] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(351), - [sym_record_id_ident] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [136] = { - [sym_array] = STATE(94), - [sym_object] = STATE(94), - [sym_record_id_value] = STATE(109), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_explain] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_fetch] = ACTIONS(343), - [sym_keyword_limit] = ACTIONS(343), - [sym_keyword_rand] = ACTIONS(343), - [sym_keyword_collate] = ACTIONS(343), - [sym_keyword_numeric] = ACTIONS(343), - [sym_keyword_asc] = ACTIONS(343), - [sym_keyword_desc] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(351), - [sym_record_id_ident] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [137] = { - [sym_where_clause] = STATE(1038), - [sym_timeout_clause] = STATE(1210), - [sym_parallel_clause] = STATE(1362), - [sym_content_clause] = STATE(989), - [sym_set_clause] = STATE(989), - [sym_unset_clause] = STATE(989), - [sym_return_clause] = STATE(1147), - [sym_merge_clause] = STATE(989), - [sym_patch_clause] = STATE(989), - [sym_operator] = STATE(694), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(774), + [129] = { + [sym_with_clause] = STATE(789), + [sym_where_clause] = STATE(810), + [sym_split_clause] = STATE(838), + [sym_group_clause] = STATE(875), + [sym_order_clause] = STATE(874), + [sym_limit_clause] = STATE(956), + [sym_fetch_clause] = STATE(1013), + [sym_timeout_clause] = STATE(1121), + [sym_parallel_clause] = STATE(1250), + [sym_explain_clause] = STATE(1298), + [sym_operator] = STATE(700), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(769), + [ts_builtin_sym_end] = ACTIONS(291), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(371), - [sym_keyword_return] = ACTIONS(355), + [sym_semi_colon] = ACTIONS(291), + [sym_keyword_explain] = ACTIONS(293), [sym_keyword_parallel] = ACTIONS(295), [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_where] = ACTIONS(357), + [sym_keyword_fetch] = ACTIONS(299), + [sym_keyword_limit] = ACTIONS(301), + [sym_keyword_order] = ACTIONS(333), + [sym_keyword_with] = ACTIONS(335), + [sym_keyword_where] = ACTIONS(337), + [sym_keyword_split] = ACTIONS(309), + [sym_keyword_group] = ACTIONS(311), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(315), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -28814,14 +28177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_content] = ACTIONS(359), - [sym_keyword_merge] = ACTIONS(361), - [sym_keyword_patch] = ACTIONS(363), - [sym_keyword_set] = ACTIONS(365), - [sym_keyword_unset] = ACTIONS(367), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_RPAREN] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(339), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -28861,1819 +28217,1253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [138] = { - [sym_array] = STATE(244), - [sym_object] = STATE(244), - [sym_record_id_value] = STATE(279), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_explain] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_fetch] = ACTIONS(343), - [sym_keyword_limit] = ACTIONS(343), - [sym_keyword_order] = ACTIONS(343), - [sym_keyword_with] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_split] = ACTIONS(343), - [sym_keyword_group] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(375), - [sym_record_id_ident] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [139] = { - [sym_array] = STATE(244), - [sym_object] = STATE(244), - [sym_record_id_value] = STATE(282), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_fetch] = ACTIONS(162), - [sym_keyword_limit] = ACTIONS(162), - [sym_keyword_order] = ACTIONS(162), - [sym_keyword_with] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_split] = ACTIONS(162), - [sym_keyword_group] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(375), - [sym_record_id_ident] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [140] = { - [sym_array] = STATE(244), - [sym_object] = STATE(244), - [sym_record_id_value] = STATE(284), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_fetch] = ACTIONS(214), - [sym_keyword_limit] = ACTIONS(214), - [sym_keyword_order] = ACTIONS(214), - [sym_keyword_with] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_split] = ACTIONS(214), - [sym_keyword_group] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(375), - [sym_record_id_ident] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [141] = { - [sym_array] = STATE(300), - [sym_object] = STATE(300), - [sym_record_id_value] = STATE(354), - [ts_builtin_sym_end] = ACTIONS(160), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_fetch] = ACTIONS(162), - [sym_keyword_limit] = ACTIONS(162), - [sym_keyword_order] = ACTIONS(162), - [sym_keyword_with] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_split] = ACTIONS(162), - [sym_keyword_group] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(379), - [sym_record_id_ident] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [142] = { - [sym_filter] = STATE(55), - [sym_path_element] = STATE(160), - [sym_graph_path] = STATE(55), - [sym_subscript] = STATE(55), - [aux_sym_path_repeat1] = STATE(160), - [ts_builtin_sym_end] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(93), - [sym_keyword_return] = ACTIONS(93), - [sym_keyword_parallel] = ACTIONS(93), - [sym_keyword_timeout] = ACTIONS(93), - [sym_keyword_where] = ACTIONS(93), - [sym_keyword_and] = ACTIONS(93), - [sym_keyword_or] = ACTIONS(93), - [sym_keyword_is] = ACTIONS(93), - [sym_keyword_not] = ACTIONS(95), - [sym_keyword_contains] = ACTIONS(93), - [sym_keyword_contains_not] = ACTIONS(93), - [sym_keyword_contains_all] = ACTIONS(93), - [sym_keyword_contains_any] = ACTIONS(93), - [sym_keyword_contains_none] = ACTIONS(93), - [sym_keyword_inside] = ACTIONS(93), - [sym_keyword_in] = ACTIONS(95), - [sym_keyword_not_inside] = ACTIONS(93), - [sym_keyword_all_inside] = ACTIONS(93), - [sym_keyword_any_inside] = ACTIONS(93), - [sym_keyword_none_inside] = ACTIONS(93), - [sym_keyword_outside] = ACTIONS(93), - [sym_keyword_intersects] = ACTIONS(93), - [sym_keyword_content] = ACTIONS(93), - [sym_keyword_merge] = ACTIONS(93), - [sym_keyword_patch] = ACTIONS(93), - [sym_keyword_permissions] = ACTIONS(93), - [sym_keyword_comment] = ACTIONS(93), - [sym_keyword_set] = ACTIONS(93), - [sym_keyword_unset] = ACTIONS(93), - [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_DASH_GT] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_LT_DASH] = ACTIONS(45), - [anon_sym_LT_DASH_GT] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(95), - [anon_sym_GT] = ACTIONS(95), - [anon_sym_EQ] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_LT_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(93), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_QMARK_QMARK] = ACTIONS(93), - [anon_sym_QMARK_COLON] = ACTIONS(93), - [anon_sym_BANG_EQ] = ACTIONS(93), - [anon_sym_EQ_EQ] = ACTIONS(93), - [anon_sym_QMARK_EQ] = ACTIONS(93), - [anon_sym_STAR_EQ] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(93), - [anon_sym_BANG_TILDE] = ACTIONS(93), - [anon_sym_STAR_TILDE] = ACTIONS(93), - [anon_sym_LT_EQ] = ACTIONS(93), - [anon_sym_GT_EQ] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_PLUS_EQ] = ACTIONS(93), - [anon_sym_DASH_EQ] = ACTIONS(93), - [anon_sym_u00d7] = ACTIONS(93), - [anon_sym_SLASH] = ACTIONS(95), - [anon_sym_u00f7] = ACTIONS(93), - [anon_sym_STAR_STAR] = ACTIONS(93), - [anon_sym_u220b] = ACTIONS(93), - [anon_sym_u220c] = ACTIONS(93), - [anon_sym_u2287] = ACTIONS(93), - [anon_sym_u2283] = ACTIONS(93), - [anon_sym_u2285] = ACTIONS(93), - [anon_sym_u2208] = ACTIONS(93), - [anon_sym_u2209] = ACTIONS(93), - [anon_sym_u2286] = ACTIONS(93), - [anon_sym_u2282] = ACTIONS(93), - [anon_sym_u2284] = ACTIONS(93), - [anon_sym_AT_AT] = ACTIONS(93), - }, - [143] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_explain] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_fetch] = ACTIONS(343), - [sym_keyword_limit] = ACTIONS(343), - [sym_keyword_rand] = ACTIONS(343), - [sym_keyword_collate] = ACTIONS(343), - [sym_keyword_numeric] = ACTIONS(343), - [sym_keyword_asc] = ACTIONS(343), - [sym_keyword_desc] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [144] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(160), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_fetch] = ACTIONS(162), - [sym_keyword_limit] = ACTIONS(162), - [sym_keyword_rand] = ACTIONS(162), - [sym_keyword_collate] = ACTIONS(162), - [sym_keyword_numeric] = ACTIONS(162), - [sym_keyword_asc] = ACTIONS(162), - [sym_keyword_desc] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [145] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(212), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_fetch] = ACTIONS(214), - [sym_keyword_limit] = ACTIONS(214), - [sym_keyword_rand] = ACTIONS(214), - [sym_keyword_collate] = ACTIONS(214), - [sym_keyword_numeric] = ACTIONS(214), - [sym_keyword_asc] = ACTIONS(214), - [sym_keyword_desc] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [146] = { - [sym_array] = STATE(300), - [sym_object] = STATE(300), - [sym_record_id_value] = STATE(346), - [ts_builtin_sym_end] = ACTIONS(212), + [130] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_fetch] = ACTIONS(214), - [sym_keyword_limit] = ACTIONS(214), - [sym_keyword_order] = ACTIONS(214), - [sym_keyword_with] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_split] = ACTIONS(214), - [sym_keyword_group] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(379), - [sym_record_id_ident] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [147] = { - [sym_array] = STATE(300), - [sym_object] = STATE(300), - [sym_record_id_value] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_explain] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_fetch] = ACTIONS(343), - [sym_keyword_limit] = ACTIONS(343), - [sym_keyword_order] = ACTIONS(343), - [sym_keyword_with] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_split] = ACTIONS(343), - [sym_keyword_group] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(379), - [sym_record_id_ident] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_as] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_group] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_drop] = ACTIONS(202), + [sym_keyword_schemafull] = ACTIONS(202), + [sym_keyword_schemaless] = ACTIONS(202), + [sym_keyword_changefeed] = ACTIONS(202), + [sym_keyword_type] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [148] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), + [131] = { + [sym_array] = STATE(266), + [sym_object] = STATE(266), + [sym_record_id_value] = STATE(274), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_return] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_content] = ACTIONS(214), - [sym_keyword_merge] = ACTIONS(214), - [sym_keyword_patch] = ACTIONS(214), - [sym_keyword_set] = ACTIONS(214), - [sym_keyword_unset] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_fetch] = ACTIONS(142), + [sym_keyword_limit] = ACTIONS(142), + [sym_keyword_order] = ACTIONS(142), + [sym_keyword_with] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_split] = ACTIONS(142), + [sym_keyword_group] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), [sym_int] = ACTIONS(347), [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [149] = { - [sym_filter] = STATE(306), - [sym_path_element] = STATE(168), - [sym_graph_path] = STATE(306), - [sym_subscript] = STATE(306), - [aux_sym_path_repeat1] = STATE(168), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(89), - [sym_keyword_explain] = ACTIONS(89), - [sym_keyword_parallel] = ACTIONS(89), - [sym_keyword_timeout] = ACTIONS(89), - [sym_keyword_fetch] = ACTIONS(89), - [sym_keyword_limit] = ACTIONS(89), - [sym_keyword_order] = ACTIONS(89), - [sym_keyword_with] = ACTIONS(89), - [sym_keyword_where] = ACTIONS(89), - [sym_keyword_split] = ACTIONS(89), - [sym_keyword_group] = ACTIONS(89), - [sym_keyword_and] = ACTIONS(89), - [sym_keyword_or] = ACTIONS(91), - [sym_keyword_is] = ACTIONS(89), - [sym_keyword_not] = ACTIONS(91), - [sym_keyword_contains] = ACTIONS(89), - [sym_keyword_contains_not] = ACTIONS(89), - [sym_keyword_contains_all] = ACTIONS(89), - [sym_keyword_contains_any] = ACTIONS(89), - [sym_keyword_contains_none] = ACTIONS(89), - [sym_keyword_inside] = ACTIONS(89), - [sym_keyword_in] = ACTIONS(91), - [sym_keyword_not_inside] = ACTIONS(89), - [sym_keyword_all_inside] = ACTIONS(89), - [sym_keyword_any_inside] = ACTIONS(89), - [sym_keyword_none_inside] = ACTIONS(89), - [sym_keyword_outside] = ACTIONS(89), - [sym_keyword_intersects] = ACTIONS(89), - [anon_sym_COMMA] = ACTIONS(89), - [anon_sym_DASH_GT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_RPAREN] = ACTIONS(89), - [anon_sym_RBRACE] = ACTIONS(89), - [anon_sym_LT_DASH] = ACTIONS(389), - [anon_sym_LT_DASH_GT] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(91), - [anon_sym_GT] = ACTIONS(91), - [anon_sym_EQ] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_LT_PIPE] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(89), - [anon_sym_QMARK_QMARK] = ACTIONS(89), - [anon_sym_QMARK_COLON] = ACTIONS(89), - [anon_sym_BANG_EQ] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_QMARK_EQ] = ACTIONS(89), - [anon_sym_STAR_EQ] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_BANG_TILDE] = ACTIONS(89), - [anon_sym_STAR_TILDE] = ACTIONS(89), - [anon_sym_LT_EQ] = ACTIONS(89), - [anon_sym_GT_EQ] = ACTIONS(89), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_PLUS_EQ] = ACTIONS(89), - [anon_sym_DASH_EQ] = ACTIONS(89), - [anon_sym_u00d7] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(91), - [anon_sym_u00f7] = ACTIONS(89), - [anon_sym_STAR_STAR] = ACTIONS(89), - [anon_sym_u220b] = ACTIONS(89), - [anon_sym_u220c] = ACTIONS(89), - [anon_sym_u2287] = ACTIONS(89), - [anon_sym_u2283] = ACTIONS(89), - [anon_sym_u2285] = ACTIONS(89), - [anon_sym_u2208] = ACTIONS(89), - [anon_sym_u2209] = ACTIONS(89), - [anon_sym_u2286] = ACTIONS(89), - [anon_sym_u2282] = ACTIONS(89), - [anon_sym_u2284] = ACTIONS(89), - [anon_sym_AT_AT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [150] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), + [132] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_return] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_content] = ACTIONS(162), - [sym_keyword_merge] = ACTIONS(162), - [sym_keyword_patch] = ACTIONS(162), - [sym_keyword_set] = ACTIONS(162), - [sym_keyword_unset] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_as] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_group] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_drop] = ACTIONS(142), + [sym_keyword_schemafull] = ACTIONS(142), + [sym_keyword_schemaless] = ACTIONS(142), + [sym_keyword_changefeed] = ACTIONS(142), + [sym_keyword_type] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), + }, + [133] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_as] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_group] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_drop] = ACTIONS(351), + [sym_keyword_schemafull] = ACTIONS(351), + [sym_keyword_schemaless] = ACTIONS(351), + [sym_keyword_changefeed] = ACTIONS(351), + [sym_keyword_type] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [134] = { + [sym_array] = STATE(101), + [sym_object] = STATE(101), + [sym_record_id_value] = STATE(121), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_explain] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_fetch] = ACTIONS(351), + [sym_keyword_limit] = ACTIONS(351), + [sym_keyword_rand] = ACTIONS(351), + [sym_keyword_collate] = ACTIONS(351), + [sym_keyword_numeric] = ACTIONS(351), + [sym_keyword_asc] = ACTIONS(351), + [sym_keyword_desc] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(355), + [sym_record_id_ident] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [135] = { + [sym_array] = STATE(266), + [sym_object] = STATE(266), + [sym_record_id_value] = STATE(289), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_explain] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_fetch] = ACTIONS(351), + [sym_keyword_limit] = ACTIONS(351), + [sym_keyword_order] = ACTIONS(351), + [sym_keyword_with] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_split] = ACTIONS(351), + [sym_keyword_group] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), [sym_int] = ACTIONS(347), [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [151] = { - [sym_array] = STATE(244), - [sym_object] = STATE(244), - [sym_record_id_value] = STATE(279), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_explain] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_fetch] = ACTIONS(343), - [sym_keyword_limit] = ACTIONS(343), - [sym_keyword_order] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_split] = ACTIONS(343), - [sym_keyword_group] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(375), - [sym_record_id_ident] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, - [152] = { - [sym_array] = STATE(244), - [sym_object] = STATE(244), - [sym_record_id_value] = STATE(282), + [136] = { + [sym_array] = STATE(101), + [sym_object] = STATE(101), + [sym_record_id_value] = STATE(104), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_fetch] = ACTIONS(162), - [sym_keyword_limit] = ACTIONS(162), - [sym_keyword_order] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_split] = ACTIONS(162), - [sym_keyword_group] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(375), - [sym_record_id_ident] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_fetch] = ACTIONS(142), + [sym_keyword_limit] = ACTIONS(142), + [sym_keyword_rand] = ACTIONS(142), + [sym_keyword_collate] = ACTIONS(142), + [sym_keyword_numeric] = ACTIONS(142), + [sym_keyword_asc] = ACTIONS(142), + [sym_keyword_desc] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(355), + [sym_record_id_ident] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [153] = { - [sym_array] = STATE(244), - [sym_object] = STATE(244), - [sym_record_id_value] = STATE(284), + [137] = { + [sym_where_clause] = STATE(1038), + [sym_timeout_clause] = STATE(1242), + [sym_parallel_clause] = STATE(1422), + [sym_content_clause] = STATE(991), + [sym_set_clause] = STATE(991), + [sym_unset_clause] = STATE(991), + [sym_return_clause] = STATE(1143), + [sym_merge_clause] = STATE(991), + [sym_patch_clause] = STATE(991), + [sym_operator] = STATE(683), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(772), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_fetch] = ACTIONS(214), - [sym_keyword_limit] = ACTIONS(214), - [sym_keyword_order] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_split] = ACTIONS(214), - [sym_keyword_group] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(375), - [sym_record_id_ident] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(357), + [sym_keyword_return] = ACTIONS(359), + [sym_keyword_parallel] = ACTIONS(295), + [sym_keyword_timeout] = ACTIONS(297), + [sym_keyword_where] = ACTIONS(361), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(313), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [sym_keyword_content] = ACTIONS(363), + [sym_keyword_merge] = ACTIONS(365), + [sym_keyword_patch] = ACTIONS(367), + [sym_keyword_set] = ACTIONS(369), + [sym_keyword_unset] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), }, - [154] = { - [sym_array] = STATE(232), - [sym_object] = STATE(232), - [sym_record_id_value] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_as] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_group] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_drop] = ACTIONS(343), - [sym_keyword_schemafull] = ACTIONS(343), - [sym_keyword_schemaless] = ACTIONS(343), - [sym_keyword_changefeed] = ACTIONS(343), - [sym_keyword_type] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(395), - [sym_record_id_ident] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [138] = { + [sym_where_clause] = STATE(1047), + [sym_timeout_clause] = STATE(1207), + [sym_parallel_clause] = STATE(1321), + [sym_content_clause] = STATE(989), + [sym_set_clause] = STATE(989), + [sym_unset_clause] = STATE(989), + [sym_return_clause] = STATE(1112), + [sym_merge_clause] = STATE(989), + [sym_patch_clause] = STATE(989), + [sym_operator] = STATE(683), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(774), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(375), + [sym_keyword_return] = ACTIONS(359), + [sym_keyword_parallel] = ACTIONS(295), + [sym_keyword_timeout] = ACTIONS(297), + [sym_keyword_where] = ACTIONS(361), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(313), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [sym_keyword_content] = ACTIONS(363), + [sym_keyword_merge] = ACTIONS(365), + [sym_keyword_patch] = ACTIONS(367), + [sym_keyword_set] = ACTIONS(369), + [sym_keyword_unset] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), }, - [155] = { - [sym_array] = STATE(232), - [sym_object] = STATE(232), - [sym_record_id_value] = STATE(321), - [ts_builtin_sym_end] = ACTIONS(160), + [139] = { + [sym_array] = STATE(101), + [sym_object] = STATE(101), + [sym_record_id_value] = STATE(116), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_as] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_group] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_drop] = ACTIONS(162), - [sym_keyword_schemafull] = ACTIONS(162), - [sym_keyword_schemaless] = ACTIONS(162), - [sym_keyword_changefeed] = ACTIONS(162), - [sym_keyword_type] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(395), - [sym_record_id_ident] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_fetch] = ACTIONS(202), + [sym_keyword_limit] = ACTIONS(202), + [sym_keyword_rand] = ACTIONS(202), + [sym_keyword_collate] = ACTIONS(202), + [sym_keyword_numeric] = ACTIONS(202), + [sym_keyword_asc] = ACTIONS(202), + [sym_keyword_desc] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(355), + [sym_record_id_ident] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [156] = { - [sym_array] = STATE(232), - [sym_object] = STATE(232), - [sym_record_id_value] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(212), + [140] = { + [sym_array] = STATE(266), + [sym_object] = STATE(266), + [sym_record_id_value] = STATE(280), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_as] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_group] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_drop] = ACTIONS(214), - [sym_keyword_schemafull] = ACTIONS(214), - [sym_keyword_schemaless] = ACTIONS(214), - [sym_keyword_changefeed] = ACTIONS(214), - [sym_keyword_type] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(395), - [sym_record_id_ident] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_fetch] = ACTIONS(202), + [sym_keyword_limit] = ACTIONS(202), + [sym_keyword_order] = ACTIONS(202), + [sym_keyword_with] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_split] = ACTIONS(202), + [sym_keyword_group] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(347), + [sym_record_id_ident] = ACTIONS(347), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [157] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_return] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_content] = ACTIONS(343), - [sym_keyword_merge] = ACTIONS(343), - [sym_keyword_patch] = ACTIONS(343), - [sym_keyword_set] = ACTIONS(343), - [sym_keyword_unset] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), + [141] = { + [sym_array] = STATE(266), + [sym_object] = STATE(266), + [sym_record_id_value] = STATE(280), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_fetch] = ACTIONS(202), + [sym_keyword_limit] = ACTIONS(202), + [sym_keyword_order] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_split] = ACTIONS(202), + [sym_keyword_group] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), [sym_int] = ACTIONS(347), [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [158] = { - [sym_filter] = STATE(55), - [sym_path_element] = STATE(142), - [sym_graph_path] = STATE(55), - [sym_subscript] = STATE(55), - [aux_sym_path_repeat1] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(89), - [sym_keyword_return] = ACTIONS(89), - [sym_keyword_parallel] = ACTIONS(89), - [sym_keyword_timeout] = ACTIONS(89), - [sym_keyword_where] = ACTIONS(89), - [sym_keyword_and] = ACTIONS(89), - [sym_keyword_or] = ACTIONS(89), - [sym_keyword_is] = ACTIONS(89), - [sym_keyword_not] = ACTIONS(91), - [sym_keyword_contains] = ACTIONS(89), - [sym_keyword_contains_not] = ACTIONS(89), - [sym_keyword_contains_all] = ACTIONS(89), - [sym_keyword_contains_any] = ACTIONS(89), - [sym_keyword_contains_none] = ACTIONS(89), - [sym_keyword_inside] = ACTIONS(89), - [sym_keyword_in] = ACTIONS(91), - [sym_keyword_not_inside] = ACTIONS(89), - [sym_keyword_all_inside] = ACTIONS(89), - [sym_keyword_any_inside] = ACTIONS(89), - [sym_keyword_none_inside] = ACTIONS(89), - [sym_keyword_outside] = ACTIONS(89), - [sym_keyword_intersects] = ACTIONS(89), - [sym_keyword_content] = ACTIONS(89), - [sym_keyword_merge] = ACTIONS(89), - [sym_keyword_patch] = ACTIONS(89), - [sym_keyword_permissions] = ACTIONS(89), - [sym_keyword_comment] = ACTIONS(89), - [sym_keyword_set] = ACTIONS(89), - [sym_keyword_unset] = ACTIONS(89), - [anon_sym_COMMA] = ACTIONS(89), - [anon_sym_DASH_GT] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(263), - [anon_sym_LT_DASH] = ACTIONS(45), - [anon_sym_LT_DASH_GT] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(91), - [anon_sym_GT] = ACTIONS(91), - [anon_sym_EQ] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_LT_PIPE] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(89), - [anon_sym_QMARK_QMARK] = ACTIONS(89), - [anon_sym_QMARK_COLON] = ACTIONS(89), - [anon_sym_BANG_EQ] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_QMARK_EQ] = ACTIONS(89), - [anon_sym_STAR_EQ] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_BANG_TILDE] = ACTIONS(89), - [anon_sym_STAR_TILDE] = ACTIONS(89), - [anon_sym_LT_EQ] = ACTIONS(89), - [anon_sym_GT_EQ] = ACTIONS(89), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_PLUS_EQ] = ACTIONS(89), - [anon_sym_DASH_EQ] = ACTIONS(89), - [anon_sym_u00d7] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(91), - [anon_sym_u00f7] = ACTIONS(89), - [anon_sym_STAR_STAR] = ACTIONS(89), - [anon_sym_u220b] = ACTIONS(89), - [anon_sym_u220c] = ACTIONS(89), - [anon_sym_u2287] = ACTIONS(89), - [anon_sym_u2283] = ACTIONS(89), - [anon_sym_u2285] = ACTIONS(89), - [anon_sym_u2208] = ACTIONS(89), - [anon_sym_u2209] = ACTIONS(89), - [anon_sym_u2286] = ACTIONS(89), - [anon_sym_u2282] = ACTIONS(89), - [anon_sym_u2284] = ACTIONS(89), - [anon_sym_AT_AT] = ACTIONS(89), + [142] = { + [sym_array] = STATE(283), + [sym_object] = STATE(283), + [sym_record_id_value] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_explain] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_fetch] = ACTIONS(351), + [sym_keyword_limit] = ACTIONS(351), + [sym_keyword_order] = ACTIONS(351), + [sym_keyword_with] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_split] = ACTIONS(351), + [sym_keyword_group] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(379), + [sym_record_id_ident] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, - [159] = { - [sym_filter] = STATE(55), - [sym_path_element] = STATE(142), - [sym_graph_path] = STATE(55), - [sym_subscript] = STATE(55), - [aux_sym_path_repeat1] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(77), + [143] = { + [sym_filter] = STATE(321), + [sym_path_element] = STATE(146), + [sym_graph_path] = STATE(321), + [sym_subscript] = STATE(321), + [aux_sym_path_repeat1] = STATE(146), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(73), + [sym_keyword_explain] = ACTIONS(73), + [sym_keyword_parallel] = ACTIONS(73), + [sym_keyword_timeout] = ACTIONS(73), + [sym_keyword_fetch] = ACTIONS(73), + [sym_keyword_limit] = ACTIONS(73), + [sym_keyword_order] = ACTIONS(73), + [sym_keyword_with] = ACTIONS(73), + [sym_keyword_where] = ACTIONS(73), + [sym_keyword_split] = ACTIONS(73), + [sym_keyword_group] = ACTIONS(73), + [sym_keyword_and] = ACTIONS(73), + [sym_keyword_or] = ACTIONS(75), + [sym_keyword_is] = ACTIONS(73), + [sym_keyword_not] = ACTIONS(75), + [sym_keyword_contains] = ACTIONS(73), + [sym_keyword_contains_not] = ACTIONS(73), + [sym_keyword_contains_all] = ACTIONS(73), + [sym_keyword_contains_any] = ACTIONS(73), + [sym_keyword_contains_none] = ACTIONS(73), + [sym_keyword_inside] = ACTIONS(73), + [sym_keyword_in] = ACTIONS(75), + [sym_keyword_not_inside] = ACTIONS(73), + [sym_keyword_all_inside] = ACTIONS(73), + [sym_keyword_any_inside] = ACTIONS(73), + [sym_keyword_none_inside] = ACTIONS(73), + [sym_keyword_outside] = ACTIONS(73), + [sym_keyword_intersects] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(73), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(73), + [anon_sym_RBRACE] = ACTIONS(73), + [anon_sym_LT_DASH] = ACTIONS(385), + [anon_sym_LT_DASH_GT] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_AT] = ACTIONS(75), + [anon_sym_LT_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(73), + [anon_sym_PIPE_PIPE] = ACTIONS(73), + [anon_sym_QMARK_QMARK] = ACTIONS(73), + [anon_sym_QMARK_COLON] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_QMARK_EQ] = ACTIONS(73), + [anon_sym_STAR_EQ] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(73), + [anon_sym_BANG_TILDE] = ACTIONS(73), + [anon_sym_STAR_TILDE] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(73), + [anon_sym_DASH_EQ] = ACTIONS(73), + [anon_sym_u00d7] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_u00f7] = ACTIONS(73), + [anon_sym_STAR_STAR] = ACTIONS(73), + [anon_sym_u220b] = ACTIONS(73), + [anon_sym_u220c] = ACTIONS(73), + [anon_sym_u2287] = ACTIONS(73), + [anon_sym_u2283] = ACTIONS(73), + [anon_sym_u2285] = ACTIONS(73), + [anon_sym_u2208] = ACTIONS(73), + [anon_sym_u2209] = ACTIONS(73), + [anon_sym_u2286] = ACTIONS(73), + [anon_sym_u2282] = ACTIONS(73), + [anon_sym_u2284] = ACTIONS(73), + [anon_sym_AT_AT] = ACTIONS(73), + }, + [144] = { + [sym_filter] = STATE(58), + [sym_path_element] = STATE(167), + [sym_graph_path] = STATE(58), + [sym_subscript] = STATE(58), + [aux_sym_path_repeat1] = STATE(167), + [ts_builtin_sym_end] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(77), - [sym_keyword_return] = ACTIONS(77), - [sym_keyword_parallel] = ACTIONS(77), - [sym_keyword_timeout] = ACTIONS(77), - [sym_keyword_where] = ACTIONS(77), - [sym_keyword_and] = ACTIONS(77), - [sym_keyword_or] = ACTIONS(77), - [sym_keyword_is] = ACTIONS(77), - [sym_keyword_not] = ACTIONS(79), - [sym_keyword_contains] = ACTIONS(77), - [sym_keyword_contains_not] = ACTIONS(77), - [sym_keyword_contains_all] = ACTIONS(77), - [sym_keyword_contains_any] = ACTIONS(77), - [sym_keyword_contains_none] = ACTIONS(77), - [sym_keyword_inside] = ACTIONS(77), - [sym_keyword_in] = ACTIONS(79), - [sym_keyword_not_inside] = ACTIONS(77), - [sym_keyword_all_inside] = ACTIONS(77), - [sym_keyword_any_inside] = ACTIONS(77), - [sym_keyword_none_inside] = ACTIONS(77), - [sym_keyword_outside] = ACTIONS(77), - [sym_keyword_intersects] = ACTIONS(77), - [sym_keyword_content] = ACTIONS(77), - [sym_keyword_merge] = ACTIONS(77), - [sym_keyword_patch] = ACTIONS(77), - [sym_keyword_permissions] = ACTIONS(77), - [sym_keyword_comment] = ACTIONS(77), - [sym_keyword_set] = ACTIONS(77), - [sym_keyword_unset] = ACTIONS(77), - [anon_sym_COMMA] = ACTIONS(77), + [sym_semi_colon] = ACTIONS(93), + [sym_keyword_return] = ACTIONS(93), + [sym_keyword_parallel] = ACTIONS(93), + [sym_keyword_timeout] = ACTIONS(93), + [sym_keyword_where] = ACTIONS(93), + [sym_keyword_and] = ACTIONS(93), + [sym_keyword_or] = ACTIONS(93), + [sym_keyword_is] = ACTIONS(93), + [sym_keyword_not] = ACTIONS(95), + [sym_keyword_contains] = ACTIONS(93), + [sym_keyword_contains_not] = ACTIONS(93), + [sym_keyword_contains_all] = ACTIONS(93), + [sym_keyword_contains_any] = ACTIONS(93), + [sym_keyword_contains_none] = ACTIONS(93), + [sym_keyword_inside] = ACTIONS(93), + [sym_keyword_in] = ACTIONS(95), + [sym_keyword_not_inside] = ACTIONS(93), + [sym_keyword_all_inside] = ACTIONS(93), + [sym_keyword_any_inside] = ACTIONS(93), + [sym_keyword_none_inside] = ACTIONS(93), + [sym_keyword_outside] = ACTIONS(93), + [sym_keyword_intersects] = ACTIONS(93), + [sym_keyword_content] = ACTIONS(93), + [sym_keyword_merge] = ACTIONS(93), + [sym_keyword_patch] = ACTIONS(93), + [sym_keyword_permissions] = ACTIONS(93), + [sym_keyword_comment] = ACTIONS(93), + [sym_keyword_set] = ACTIONS(93), + [sym_keyword_unset] = ACTIONS(93), + [anon_sym_COMMA] = ACTIONS(93), [anon_sym_DASH_GT] = ACTIONS(37), [anon_sym_LBRACK] = ACTIONS(263), [anon_sym_LT_DASH] = ACTIONS(45), [anon_sym_LT_DASH_GT] = ACTIONS(37), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_DOT] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_EQ] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_AT] = ACTIONS(79), - [anon_sym_LT_PIPE] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_QMARK_QMARK] = ACTIONS(77), - [anon_sym_QMARK_COLON] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_QMARK_EQ] = ACTIONS(77), - [anon_sym_STAR_EQ] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG_TILDE] = ACTIONS(77), - [anon_sym_STAR_TILDE] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_PLUS_EQ] = ACTIONS(77), - [anon_sym_DASH_EQ] = ACTIONS(77), - [anon_sym_u00d7] = ACTIONS(77), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_u00f7] = ACTIONS(77), - [anon_sym_STAR_STAR] = ACTIONS(77), - [anon_sym_u220b] = ACTIONS(77), - [anon_sym_u220c] = ACTIONS(77), - [anon_sym_u2287] = ACTIONS(77), - [anon_sym_u2283] = ACTIONS(77), - [anon_sym_u2285] = ACTIONS(77), - [anon_sym_u2208] = ACTIONS(77), - [anon_sym_u2209] = ACTIONS(77), - [anon_sym_u2286] = ACTIONS(77), - [anon_sym_u2282] = ACTIONS(77), - [anon_sym_u2284] = ACTIONS(77), - [anon_sym_AT_AT] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(95), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_QMARK] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_BANG_EQ] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(93), + [anon_sym_QMARK_EQ] = ACTIONS(93), + [anon_sym_STAR_EQ] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG_TILDE] = ACTIONS(93), + [anon_sym_STAR_TILDE] = ACTIONS(93), + [anon_sym_LT_EQ] = ACTIONS(93), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_PLUS] = ACTIONS(95), + [anon_sym_PLUS_EQ] = ACTIONS(93), + [anon_sym_DASH_EQ] = ACTIONS(93), + [anon_sym_u00d7] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(95), + [anon_sym_u00f7] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_u220b] = ACTIONS(93), + [anon_sym_u220c] = ACTIONS(93), + [anon_sym_u2287] = ACTIONS(93), + [anon_sym_u2283] = ACTIONS(93), + [anon_sym_u2285] = ACTIONS(93), + [anon_sym_u2208] = ACTIONS(93), + [anon_sym_u2209] = ACTIONS(93), + [anon_sym_u2286] = ACTIONS(93), + [anon_sym_u2282] = ACTIONS(93), + [anon_sym_u2284] = ACTIONS(93), + [anon_sym_AT_AT] = ACTIONS(93), }, - [160] = { - [sym_filter] = STATE(55), - [sym_path_element] = STATE(160), - [sym_graph_path] = STATE(55), - [sym_subscript] = STATE(55), - [aux_sym_path_repeat1] = STATE(160), + [145] = { + [sym_filter] = STATE(58), + [sym_path_element] = STATE(167), + [sym_graph_path] = STATE(58), + [sym_subscript] = STATE(58), + [aux_sym_path_repeat1] = STATE(167), [ts_builtin_sym_end] = ACTIONS(61), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(61), @@ -30706,12 +29496,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_set] = ACTIONS(61), [sym_keyword_unset] = ACTIONS(61), [anon_sym_COMMA] = ACTIONS(61), - [anon_sym_DASH_GT] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LT_DASH] = ACTIONS(400), - [anon_sym_LT_DASH_GT] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(263), + [anon_sym_LT_DASH] = ACTIONS(45), + [anon_sym_LT_DASH_GT] = ACTIONS(37), [anon_sym_STAR] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(389), [anon_sym_LT] = ACTIONS(63), [anon_sym_GT] = ACTIONS(63), [anon_sym_EQ] = ACTIONS(63), @@ -30744,100 +29534,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2283] = ACTIONS(61), [anon_sym_u2285] = ACTIONS(61), [anon_sym_u2208] = ACTIONS(61), - [anon_sym_u2209] = ACTIONS(61), - [anon_sym_u2286] = ACTIONS(61), - [anon_sym_u2282] = ACTIONS(61), - [anon_sym_u2284] = ACTIONS(61), - [anon_sym_AT_AT] = ACTIONS(61), - }, - [161] = { - [sym_where_clause] = STATE(1117), - [sym_timeout_clause] = STATE(1250), - [sym_parallel_clause] = STATE(1357), - [sym_content_clause] = STATE(997), - [sym_set_clause] = STATE(997), - [sym_unset_clause] = STATE(997), - [sym_return_clause] = STATE(1114), - [sym_merge_clause] = STATE(997), - [sym_patch_clause] = STATE(997), - [sym_operator] = STATE(737), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(775), - [ts_builtin_sym_end] = ACTIONS(353), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(353), - [sym_keyword_return] = ACTIONS(406), - [sym_keyword_parallel] = ACTIONS(295), - [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_where] = ACTIONS(408), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_content] = ACTIONS(359), - [sym_keyword_merge] = ACTIONS(361), - [sym_keyword_patch] = ACTIONS(363), - [sym_keyword_set] = ACTIONS(410), - [sym_keyword_unset] = ACTIONS(412), - [anon_sym_COMMA] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(61), + [anon_sym_u2286] = ACTIONS(61), + [anon_sym_u2282] = ACTIONS(61), + [anon_sym_u2284] = ACTIONS(61), + [anon_sym_AT_AT] = ACTIONS(61), }, - [162] = { - [sym_filter] = STATE(306), - [sym_path_element] = STATE(168), - [sym_graph_path] = STATE(306), - [sym_subscript] = STATE(306), - [aux_sym_path_repeat1] = STATE(168), + [146] = { + [sym_filter] = STATE(321), + [sym_path_element] = STATE(146), + [sym_graph_path] = STATE(321), + [sym_subscript] = STATE(321), + [aux_sym_path_repeat1] = STATE(146), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(77), [sym_keyword_explain] = ACTIONS(77), @@ -30868,14 +29576,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_outside] = ACTIONS(77), [sym_keyword_intersects] = ACTIONS(77), [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_DASH_GT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_DASH_GT] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(394), [anon_sym_RPAREN] = ACTIONS(77), [anon_sym_RBRACE] = ACTIONS(77), - [anon_sym_LT_DASH] = ACTIONS(389), - [anon_sym_LT_DASH_GT] = ACTIONS(385), + [anon_sym_LT_DASH] = ACTIONS(397), + [anon_sym_LT_DASH_GT] = ACTIONS(391), [anon_sym_STAR] = ACTIONS(79), - [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(400), [anon_sym_LT] = ACTIONS(79), [anon_sym_GT] = ACTIONS(79), [anon_sym_EQ] = ACTIONS(79), @@ -30914,26 +29622,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(77), [anon_sym_AT_AT] = ACTIONS(77), }, - [163] = { - [sym_where_clause] = STATE(1162), - [sym_timeout_clause] = STATE(1210), - [sym_parallel_clause] = STATE(1362), - [sym_content_clause] = STATE(1001), - [sym_set_clause] = STATE(1001), - [sym_unset_clause] = STATE(1001), - [sym_return_clause] = STATE(1147), - [sym_merge_clause] = STATE(1001), - [sym_patch_clause] = STATE(1001), - [sym_operator] = STATE(737), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(371), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(371), - [sym_keyword_return] = ACTIONS(406), + [147] = { + [sym_where_clause] = STATE(1103), + [sym_timeout_clause] = STATE(1242), + [sym_parallel_clause] = STATE(1422), + [sym_content_clause] = STATE(1021), + [sym_set_clause] = STATE(1021), + [sym_unset_clause] = STATE(1021), + [sym_return_clause] = STATE(1143), + [sym_merge_clause] = STATE(1021), + [sym_patch_clause] = STATE(1021), + [sym_operator] = STATE(736), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(781), + [ts_builtin_sym_end] = ACTIONS(357), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(357), + [sym_keyword_return] = ACTIONS(403), [sym_keyword_parallel] = ACTIONS(295), [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_where] = ACTIONS(408), + [sym_keyword_where] = ACTIONS(405), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -30951,12 +29659,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_content] = ACTIONS(359), - [sym_keyword_merge] = ACTIONS(361), - [sym_keyword_patch] = ACTIONS(363), - [sym_keyword_set] = ACTIONS(410), - [sym_keyword_unset] = ACTIONS(412), - [anon_sym_COMMA] = ACTIONS(414), + [sym_keyword_content] = ACTIONS(363), + [sym_keyword_merge] = ACTIONS(365), + [sym_keyword_patch] = ACTIONS(367), + [sym_keyword_set] = ACTIONS(407), + [sym_keyword_unset] = ACTIONS(409), + [anon_sym_COMMA] = ACTIONS(411), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -30996,102 +29704,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [164] = { - [sym_filter] = STATE(309), - [sym_path_element] = STATE(165), - [sym_graph_path] = STATE(309), - [sym_subscript] = STATE(309), - [aux_sym_path_repeat1] = STATE(165), - [ts_builtin_sym_end] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(89), - [sym_keyword_as] = ACTIONS(89), - [sym_keyword_where] = ACTIONS(89), - [sym_keyword_group] = ACTIONS(89), - [sym_keyword_and] = ACTIONS(89), - [sym_keyword_or] = ACTIONS(89), - [sym_keyword_is] = ACTIONS(89), - [sym_keyword_not] = ACTIONS(91), - [sym_keyword_contains] = ACTIONS(89), - [sym_keyword_contains_not] = ACTIONS(89), - [sym_keyword_contains_all] = ACTIONS(89), - [sym_keyword_contains_any] = ACTIONS(89), - [sym_keyword_contains_none] = ACTIONS(89), - [sym_keyword_inside] = ACTIONS(89), - [sym_keyword_in] = ACTIONS(91), - [sym_keyword_not_inside] = ACTIONS(89), - [sym_keyword_all_inside] = ACTIONS(89), - [sym_keyword_any_inside] = ACTIONS(89), - [sym_keyword_none_inside] = ACTIONS(89), - [sym_keyword_outside] = ACTIONS(89), - [sym_keyword_intersects] = ACTIONS(89), - [sym_keyword_drop] = ACTIONS(89), - [sym_keyword_schemafull] = ACTIONS(89), - [sym_keyword_schemaless] = ACTIONS(89), - [sym_keyword_changefeed] = ACTIONS(89), - [sym_keyword_type] = ACTIONS(89), - [sym_keyword_permissions] = ACTIONS(89), - [sym_keyword_for] = ACTIONS(89), - [sym_keyword_comment] = ACTIONS(89), - [anon_sym_COMMA] = ACTIONS(89), - [anon_sym_DASH_GT] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_LT_DASH] = ACTIONS(420), - [anon_sym_LT_DASH_GT] = ACTIONS(416), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(91), - [anon_sym_GT] = ACTIONS(91), - [anon_sym_EQ] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_LT_PIPE] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(89), - [anon_sym_QMARK_QMARK] = ACTIONS(89), - [anon_sym_QMARK_COLON] = ACTIONS(89), - [anon_sym_BANG_EQ] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_QMARK_EQ] = ACTIONS(89), - [anon_sym_STAR_EQ] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_BANG_TILDE] = ACTIONS(89), - [anon_sym_STAR_TILDE] = ACTIONS(89), - [anon_sym_LT_EQ] = ACTIONS(89), - [anon_sym_GT_EQ] = ACTIONS(89), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_PLUS_EQ] = ACTIONS(89), - [anon_sym_DASH_EQ] = ACTIONS(89), - [anon_sym_u00d7] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(91), - [anon_sym_u00f7] = ACTIONS(89), - [anon_sym_STAR_STAR] = ACTIONS(89), - [anon_sym_u220b] = ACTIONS(89), - [anon_sym_u220c] = ACTIONS(89), - [anon_sym_u2287] = ACTIONS(89), - [anon_sym_u2283] = ACTIONS(89), - [anon_sym_u2285] = ACTIONS(89), - [anon_sym_u2208] = ACTIONS(89), - [anon_sym_u2209] = ACTIONS(89), - [anon_sym_u2286] = ACTIONS(89), - [anon_sym_u2282] = ACTIONS(89), - [anon_sym_u2284] = ACTIONS(89), - [anon_sym_AT_AT] = ACTIONS(89), + [148] = { + [sym_filter] = STATE(58), + [sym_path_element] = STATE(148), + [sym_graph_path] = STATE(58), + [sym_subscript] = STATE(58), + [aux_sym_path_repeat1] = STATE(148), + [ts_builtin_sym_end] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(77), + [sym_keyword_return] = ACTIONS(77), + [sym_keyword_parallel] = ACTIONS(77), + [sym_keyword_timeout] = ACTIONS(77), + [sym_keyword_where] = ACTIONS(77), + [sym_keyword_and] = ACTIONS(77), + [sym_keyword_or] = ACTIONS(77), + [sym_keyword_is] = ACTIONS(77), + [sym_keyword_not] = ACTIONS(79), + [sym_keyword_contains] = ACTIONS(77), + [sym_keyword_contains_not] = ACTIONS(77), + [sym_keyword_contains_all] = ACTIONS(77), + [sym_keyword_contains_any] = ACTIONS(77), + [sym_keyword_contains_none] = ACTIONS(77), + [sym_keyword_inside] = ACTIONS(77), + [sym_keyword_in] = ACTIONS(79), + [sym_keyword_not_inside] = ACTIONS(77), + [sym_keyword_all_inside] = ACTIONS(77), + [sym_keyword_any_inside] = ACTIONS(77), + [sym_keyword_none_inside] = ACTIONS(77), + [sym_keyword_outside] = ACTIONS(77), + [sym_keyword_intersects] = ACTIONS(77), + [sym_keyword_content] = ACTIONS(77), + [sym_keyword_merge] = ACTIONS(77), + [sym_keyword_patch] = ACTIONS(77), + [sym_keyword_permissions] = ACTIONS(77), + [sym_keyword_comment] = ACTIONS(77), + [sym_keyword_set] = ACTIONS(77), + [sym_keyword_unset] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(77), + [anon_sym_DASH_GT] = ACTIONS(413), + [anon_sym_LBRACK] = ACTIONS(272), + [anon_sym_LT_DASH] = ACTIONS(416), + [anon_sym_LT_DASH_GT] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_EQ] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_AT] = ACTIONS(79), + [anon_sym_LT_PIPE] = ACTIONS(77), + [anon_sym_AMP_AMP] = ACTIONS(77), + [anon_sym_PIPE_PIPE] = ACTIONS(77), + [anon_sym_QMARK_QMARK] = ACTIONS(77), + [anon_sym_QMARK_COLON] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_QMARK_EQ] = ACTIONS(77), + [anon_sym_STAR_EQ] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(77), + [anon_sym_BANG_TILDE] = ACTIONS(77), + [anon_sym_STAR_TILDE] = ACTIONS(77), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_PLUS_EQ] = ACTIONS(77), + [anon_sym_DASH_EQ] = ACTIONS(77), + [anon_sym_u00d7] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_u00f7] = ACTIONS(77), + [anon_sym_STAR_STAR] = ACTIONS(77), + [anon_sym_u220b] = ACTIONS(77), + [anon_sym_u220c] = ACTIONS(77), + [anon_sym_u2287] = ACTIONS(77), + [anon_sym_u2283] = ACTIONS(77), + [anon_sym_u2285] = ACTIONS(77), + [anon_sym_u2208] = ACTIONS(77), + [anon_sym_u2209] = ACTIONS(77), + [anon_sym_u2286] = ACTIONS(77), + [anon_sym_u2282] = ACTIONS(77), + [anon_sym_u2284] = ACTIONS(77), + [anon_sym_AT_AT] = ACTIONS(77), }, - [165] = { - [sym_filter] = STATE(309), - [sym_path_element] = STATE(166), - [sym_graph_path] = STATE(309), - [sym_subscript] = STATE(309), - [aux_sym_path_repeat1] = STATE(166), - [ts_builtin_sym_end] = ACTIONS(93), + [149] = { + [sym_array] = STATE(251), + [sym_object] = STATE(251), + [sym_record_id_value] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_as] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_group] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_drop] = ACTIONS(202), + [sym_keyword_schemafull] = ACTIONS(202), + [sym_keyword_schemaless] = ACTIONS(202), + [sym_keyword_changefeed] = ACTIONS(202), + [sym_keyword_type] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(424), + [sym_record_id_ident] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [150] = { + [sym_filter] = STATE(321), + [sym_path_element] = STATE(143), + [sym_graph_path] = STATE(321), + [sym_subscript] = STATE(321), + [aux_sym_path_repeat1] = STATE(143), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(93), - [sym_keyword_as] = ACTIONS(93), + [sym_keyword_explain] = ACTIONS(93), + [sym_keyword_parallel] = ACTIONS(93), + [sym_keyword_timeout] = ACTIONS(93), + [sym_keyword_fetch] = ACTIONS(93), + [sym_keyword_limit] = ACTIONS(93), + [sym_keyword_order] = ACTIONS(93), + [sym_keyword_with] = ACTIONS(93), [sym_keyword_where] = ACTIONS(93), + [sym_keyword_split] = ACTIONS(93), [sym_keyword_group] = ACTIONS(93), [sym_keyword_and] = ACTIONS(93), - [sym_keyword_or] = ACTIONS(93), + [sym_keyword_or] = ACTIONS(95), [sym_keyword_is] = ACTIONS(93), [sym_keyword_not] = ACTIONS(95), [sym_keyword_contains] = ACTIONS(93), @@ -31107,21 +29903,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(93), [sym_keyword_outside] = ACTIONS(93), [sym_keyword_intersects] = ACTIONS(93), - [sym_keyword_drop] = ACTIONS(93), - [sym_keyword_schemafull] = ACTIONS(93), - [sym_keyword_schemaless] = ACTIONS(93), - [sym_keyword_changefeed] = ACTIONS(93), - [sym_keyword_type] = ACTIONS(93), - [sym_keyword_permissions] = ACTIONS(93), - [sym_keyword_for] = ACTIONS(93), - [sym_keyword_comment] = ACTIONS(93), [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_DASH_GT] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_LT_DASH] = ACTIONS(420), - [anon_sym_LT_DASH_GT] = ACTIONS(416), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(93), + [anon_sym_LT_DASH] = ACTIONS(385), + [anon_sym_LT_DASH_GT] = ACTIONS(381), [anon_sym_STAR] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(422), + [anon_sym_DOT] = ACTIONS(387), [anon_sym_LT] = ACTIONS(95), [anon_sym_GT] = ACTIONS(95), [anon_sym_EQ] = ACTIONS(95), @@ -31160,12 +29950,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(93), [anon_sym_AT_AT] = ACTIONS(93), }, - [166] = { - [sym_filter] = STATE(309), - [sym_path_element] = STATE(166), - [sym_graph_path] = STATE(309), - [sym_subscript] = STATE(309), - [aux_sym_path_repeat1] = STATE(166), + [151] = { + [sym_filter] = STATE(321), + [sym_path_element] = STATE(143), + [sym_graph_path] = STATE(321), + [sym_subscript] = STATE(321), + [aux_sym_path_repeat1] = STATE(143), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(61), + [sym_keyword_explain] = ACTIONS(61), + [sym_keyword_parallel] = ACTIONS(61), + [sym_keyword_timeout] = ACTIONS(61), + [sym_keyword_fetch] = ACTIONS(61), + [sym_keyword_limit] = ACTIONS(61), + [sym_keyword_order] = ACTIONS(61), + [sym_keyword_with] = ACTIONS(61), + [sym_keyword_where] = ACTIONS(61), + [sym_keyword_split] = ACTIONS(61), + [sym_keyword_group] = ACTIONS(61), + [sym_keyword_and] = ACTIONS(61), + [sym_keyword_or] = ACTIONS(63), + [sym_keyword_is] = ACTIONS(61), + [sym_keyword_not] = ACTIONS(63), + [sym_keyword_contains] = ACTIONS(61), + [sym_keyword_contains_not] = ACTIONS(61), + [sym_keyword_contains_all] = ACTIONS(61), + [sym_keyword_contains_any] = ACTIONS(61), + [sym_keyword_contains_none] = ACTIONS(61), + [sym_keyword_inside] = ACTIONS(61), + [sym_keyword_in] = ACTIONS(63), + [sym_keyword_not_inside] = ACTIONS(61), + [sym_keyword_all_inside] = ACTIONS(61), + [sym_keyword_any_inside] = ACTIONS(61), + [sym_keyword_none_inside] = ACTIONS(61), + [sym_keyword_outside] = ACTIONS(61), + [sym_keyword_intersects] = ACTIONS(61), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(61), + [anon_sym_RBRACE] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(385), + [anon_sym_LT_DASH_GT] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(63), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_LT_PIPE] = ACTIONS(61), + [anon_sym_AMP_AMP] = ACTIONS(61), + [anon_sym_PIPE_PIPE] = ACTIONS(61), + [anon_sym_QMARK_QMARK] = ACTIONS(61), + [anon_sym_QMARK_COLON] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(61), + [anon_sym_EQ_EQ] = ACTIONS(61), + [anon_sym_QMARK_EQ] = ACTIONS(61), + [anon_sym_STAR_EQ] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_BANG_TILDE] = ACTIONS(61), + [anon_sym_STAR_TILDE] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(61), + [anon_sym_GT_EQ] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_PLUS_EQ] = ACTIONS(61), + [anon_sym_DASH_EQ] = ACTIONS(61), + [anon_sym_u00d7] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_u00f7] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(61), + [anon_sym_u220b] = ACTIONS(61), + [anon_sym_u220c] = ACTIONS(61), + [anon_sym_u2287] = ACTIONS(61), + [anon_sym_u2283] = ACTIONS(61), + [anon_sym_u2285] = ACTIONS(61), + [anon_sym_u2208] = ACTIONS(61), + [anon_sym_u2209] = ACTIONS(61), + [anon_sym_u2286] = ACTIONS(61), + [anon_sym_u2282] = ACTIONS(61), + [anon_sym_u2284] = ACTIONS(61), + [anon_sym_AT_AT] = ACTIONS(61), + }, + [152] = { + [sym_array] = STATE(251), + [sym_object] = STATE(251), + [sym_record_id_value] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_as] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_group] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_drop] = ACTIONS(351), + [sym_keyword_schemafull] = ACTIONS(351), + [sym_keyword_schemaless] = ACTIONS(351), + [sym_keyword_changefeed] = ACTIONS(351), + [sym_keyword_type] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(424), + [sym_record_id_ident] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [153] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_fetch] = ACTIONS(202), + [sym_keyword_limit] = ACTIONS(202), + [sym_keyword_rand] = ACTIONS(202), + [sym_keyword_collate] = ACTIONS(202), + [sym_keyword_numeric] = ACTIONS(202), + [sym_keyword_asc] = ACTIONS(202), + [sym_keyword_desc] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [154] = { + [sym_filter] = STATE(303), + [sym_path_element] = STATE(163), + [sym_graph_path] = STATE(303), + [sym_subscript] = STATE(303), + [aux_sym_path_repeat1] = STATE(163), [ts_builtin_sym_end] = ACTIONS(61), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(61), @@ -31198,12 +30234,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_for] = ACTIONS(61), [sym_keyword_comment] = ACTIONS(61), [anon_sym_COMMA] = ACTIONS(61), - [anon_sym_DASH_GT] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(427), - [anon_sym_LT_DASH] = ACTIONS(430), - [anon_sym_LT_DASH_GT] = ACTIONS(424), + [anon_sym_DASH_GT] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_LT_DASH] = ACTIONS(432), + [anon_sym_LT_DASH_GT] = ACTIONS(428), [anon_sym_STAR] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(434), [anon_sym_LT] = ACTIONS(63), [anon_sym_GT] = ACTIONS(63), [anon_sym_EQ] = ACTIONS(63), @@ -31242,108 +30278,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(61), [anon_sym_AT_AT] = ACTIONS(61), }, - [167] = { - [sym_filter] = STATE(309), - [sym_path_element] = STATE(165), - [sym_graph_path] = STATE(309), - [sym_subscript] = STATE(309), - [aux_sym_path_repeat1] = STATE(165), - [ts_builtin_sym_end] = ACTIONS(77), + [155] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_explain] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_fetch] = ACTIONS(351), + [sym_keyword_limit] = ACTIONS(351), + [sym_keyword_rand] = ACTIONS(351), + [sym_keyword_collate] = ACTIONS(351), + [sym_keyword_numeric] = ACTIONS(351), + [sym_keyword_asc] = ACTIONS(351), + [sym_keyword_desc] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [156] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(77), - [sym_keyword_as] = ACTIONS(77), - [sym_keyword_where] = ACTIONS(77), - [sym_keyword_group] = ACTIONS(77), - [sym_keyword_and] = ACTIONS(77), - [sym_keyword_or] = ACTIONS(77), - [sym_keyword_is] = ACTIONS(77), - [sym_keyword_not] = ACTIONS(79), - [sym_keyword_contains] = ACTIONS(77), - [sym_keyword_contains_not] = ACTIONS(77), - [sym_keyword_contains_all] = ACTIONS(77), - [sym_keyword_contains_any] = ACTIONS(77), - [sym_keyword_contains_none] = ACTIONS(77), - [sym_keyword_inside] = ACTIONS(77), - [sym_keyword_in] = ACTIONS(79), - [sym_keyword_not_inside] = ACTIONS(77), - [sym_keyword_all_inside] = ACTIONS(77), - [sym_keyword_any_inside] = ACTIONS(77), - [sym_keyword_none_inside] = ACTIONS(77), - [sym_keyword_outside] = ACTIONS(77), - [sym_keyword_intersects] = ACTIONS(77), - [sym_keyword_drop] = ACTIONS(77), - [sym_keyword_schemafull] = ACTIONS(77), - [sym_keyword_schemaless] = ACTIONS(77), - [sym_keyword_changefeed] = ACTIONS(77), - [sym_keyword_type] = ACTIONS(77), - [sym_keyword_permissions] = ACTIONS(77), - [sym_keyword_for] = ACTIONS(77), - [sym_keyword_comment] = ACTIONS(77), - [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_DASH_GT] = ACTIONS(416), - [anon_sym_LBRACK] = ACTIONS(418), - [anon_sym_LT_DASH] = ACTIONS(420), - [anon_sym_LT_DASH_GT] = ACTIONS(416), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_EQ] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_AT] = ACTIONS(79), - [anon_sym_LT_PIPE] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_QMARK_QMARK] = ACTIONS(77), - [anon_sym_QMARK_COLON] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_QMARK_EQ] = ACTIONS(77), - [anon_sym_STAR_EQ] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG_TILDE] = ACTIONS(77), - [anon_sym_STAR_TILDE] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_PLUS_EQ] = ACTIONS(77), - [anon_sym_DASH_EQ] = ACTIONS(77), - [anon_sym_u00d7] = ACTIONS(77), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_u00f7] = ACTIONS(77), - [anon_sym_STAR_STAR] = ACTIONS(77), - [anon_sym_u220b] = ACTIONS(77), - [anon_sym_u220c] = ACTIONS(77), - [anon_sym_u2287] = ACTIONS(77), - [anon_sym_u2283] = ACTIONS(77), - [anon_sym_u2285] = ACTIONS(77), - [anon_sym_u2208] = ACTIONS(77), - [anon_sym_u2209] = ACTIONS(77), - [anon_sym_u2286] = ACTIONS(77), - [anon_sym_u2282] = ACTIONS(77), - [anon_sym_u2284] = ACTIONS(77), - [anon_sym_AT_AT] = ACTIONS(77), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_fetch] = ACTIONS(142), + [sym_keyword_limit] = ACTIONS(142), + [sym_keyword_rand] = ACTIONS(142), + [sym_keyword_collate] = ACTIONS(142), + [sym_keyword_numeric] = ACTIONS(142), + [sym_keyword_asc] = ACTIONS(142), + [sym_keyword_desc] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), + }, + [157] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_return] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_content] = ACTIONS(142), + [sym_keyword_merge] = ACTIONS(142), + [sym_keyword_patch] = ACTIONS(142), + [sym_keyword_set] = ACTIONS(142), + [sym_keyword_unset] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), + }, + [158] = { + [sym_array] = STATE(283), + [sym_object] = STATE(283), + [sym_record_id_value] = STATE(335), + [ts_builtin_sym_end] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_fetch] = ACTIONS(202), + [sym_keyword_limit] = ACTIONS(202), + [sym_keyword_order] = ACTIONS(202), + [sym_keyword_with] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_split] = ACTIONS(202), + [sym_keyword_group] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(379), + [sym_record_id_ident] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [168] = { - [sym_filter] = STATE(306), - [sym_path_element] = STATE(169), - [sym_graph_path] = STATE(306), - [sym_subscript] = STATE(306), - [aux_sym_path_repeat1] = STATE(169), + [159] = { + [sym_filter] = STATE(303), + [sym_path_element] = STATE(163), + [sym_graph_path] = STATE(303), + [sym_subscript] = STATE(303), + [aux_sym_path_repeat1] = STATE(163), + [ts_builtin_sym_end] = ACTIONS(93), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(93), - [sym_keyword_explain] = ACTIONS(93), - [sym_keyword_parallel] = ACTIONS(93), - [sym_keyword_timeout] = ACTIONS(93), - [sym_keyword_fetch] = ACTIONS(93), - [sym_keyword_limit] = ACTIONS(93), - [sym_keyword_order] = ACTIONS(93), - [sym_keyword_with] = ACTIONS(93), + [sym_keyword_as] = ACTIONS(93), [sym_keyword_where] = ACTIONS(93), - [sym_keyword_split] = ACTIONS(93), [sym_keyword_group] = ACTIONS(93), [sym_keyword_and] = ACTIONS(93), - [sym_keyword_or] = ACTIONS(95), + [sym_keyword_or] = ACTIONS(93), [sym_keyword_is] = ACTIONS(93), [sym_keyword_not] = ACTIONS(95), [sym_keyword_contains] = ACTIONS(93), @@ -31359,15 +30635,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(93), [sym_keyword_outside] = ACTIONS(93), [sym_keyword_intersects] = ACTIONS(93), + [sym_keyword_drop] = ACTIONS(93), + [sym_keyword_schemafull] = ACTIONS(93), + [sym_keyword_schemaless] = ACTIONS(93), + [sym_keyword_changefeed] = ACTIONS(93), + [sym_keyword_type] = ACTIONS(93), + [sym_keyword_permissions] = ACTIONS(93), + [sym_keyword_for] = ACTIONS(93), + [sym_keyword_comment] = ACTIONS(93), [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_DASH_GT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_RPAREN] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_LT_DASH] = ACTIONS(389), - [anon_sym_LT_DASH_GT] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_LT_DASH] = ACTIONS(432), + [anon_sym_LT_DASH_GT] = ACTIONS(428), [anon_sym_STAR] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(434), [anon_sym_LT] = ACTIONS(95), [anon_sym_GT] = ACTIONS(95), [anon_sym_EQ] = ACTIONS(95), @@ -31406,669 +30688,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(93), [anon_sym_AT_AT] = ACTIONS(93), }, - [169] = { - [sym_filter] = STATE(306), - [sym_path_element] = STATE(169), - [sym_graph_path] = STATE(306), - [sym_subscript] = STATE(306), - [aux_sym_path_repeat1] = STATE(169), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(61), - [sym_keyword_explain] = ACTIONS(61), - [sym_keyword_parallel] = ACTIONS(61), - [sym_keyword_timeout] = ACTIONS(61), - [sym_keyword_fetch] = ACTIONS(61), - [sym_keyword_limit] = ACTIONS(61), - [sym_keyword_order] = ACTIONS(61), - [sym_keyword_with] = ACTIONS(61), - [sym_keyword_where] = ACTIONS(61), - [sym_keyword_split] = ACTIONS(61), - [sym_keyword_group] = ACTIONS(61), - [sym_keyword_and] = ACTIONS(61), - [sym_keyword_or] = ACTIONS(63), - [sym_keyword_is] = ACTIONS(61), - [sym_keyword_not] = ACTIONS(63), - [sym_keyword_contains] = ACTIONS(61), - [sym_keyword_contains_not] = ACTIONS(61), - [sym_keyword_contains_all] = ACTIONS(61), - [sym_keyword_contains_any] = ACTIONS(61), - [sym_keyword_contains_none] = ACTIONS(61), - [sym_keyword_inside] = ACTIONS(61), - [sym_keyword_in] = ACTIONS(63), - [sym_keyword_not_inside] = ACTIONS(61), - [sym_keyword_all_inside] = ACTIONS(61), - [sym_keyword_any_inside] = ACTIONS(61), - [sym_keyword_none_inside] = ACTIONS(61), - [sym_keyword_outside] = ACTIONS(61), - [sym_keyword_intersects] = ACTIONS(61), - [anon_sym_COMMA] = ACTIONS(61), - [anon_sym_DASH_GT] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_RPAREN] = ACTIONS(61), - [anon_sym_RBRACE] = ACTIONS(61), - [anon_sym_LT_DASH] = ACTIONS(442), - [anon_sym_LT_DASH_GT] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_LT_PIPE] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [anon_sym_QMARK_QMARK] = ACTIONS(61), - [anon_sym_QMARK_COLON] = ACTIONS(61), - [anon_sym_BANG_EQ] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_QMARK_EQ] = ACTIONS(61), - [anon_sym_STAR_EQ] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_BANG_TILDE] = ACTIONS(61), - [anon_sym_STAR_TILDE] = ACTIONS(61), - [anon_sym_LT_EQ] = ACTIONS(61), - [anon_sym_GT_EQ] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_PLUS_EQ] = ACTIONS(61), - [anon_sym_DASH_EQ] = ACTIONS(61), - [anon_sym_u00d7] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(63), - [anon_sym_u00f7] = ACTIONS(61), - [anon_sym_STAR_STAR] = ACTIONS(61), - [anon_sym_u220b] = ACTIONS(61), - [anon_sym_u220c] = ACTIONS(61), - [anon_sym_u2287] = ACTIONS(61), - [anon_sym_u2283] = ACTIONS(61), - [anon_sym_u2285] = ACTIONS(61), - [anon_sym_u2208] = ACTIONS(61), - [anon_sym_u2209] = ACTIONS(61), - [anon_sym_u2286] = ACTIONS(61), - [anon_sym_u2282] = ACTIONS(61), - [anon_sym_u2284] = ACTIONS(61), - [anon_sym_AT_AT] = ACTIONS(61), - }, - [170] = { - [sym_array] = STATE(300), - [sym_object] = STATE(300), + [160] = { + [sym_array] = STATE(283), + [sym_object] = STATE(283), [sym_record_id_value] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_explain] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_fetch] = ACTIONS(343), - [sym_keyword_limit] = ACTIONS(343), - [sym_keyword_order] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_split] = ACTIONS(343), - [sym_keyword_group] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), + [ts_builtin_sym_end] = ACTIONS(140), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_fetch] = ACTIONS(142), + [sym_keyword_limit] = ACTIONS(142), + [sym_keyword_order] = ACTIONS(142), + [sym_keyword_with] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_split] = ACTIONS(142), + [sym_keyword_group] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), [sym_int] = ACTIONS(379), [sym_record_id_ident] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [171] = { + [161] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(233), - [sym_keyword_value] = ACTIONS(233), - [sym_keyword_explain] = ACTIONS(233), - [sym_keyword_parallel] = ACTIONS(233), - [sym_keyword_timeout] = ACTIONS(233), - [sym_keyword_fetch] = ACTIONS(233), - [sym_keyword_limit] = ACTIONS(233), - [sym_keyword_rand] = ACTIONS(233), - [sym_keyword_collate] = ACTIONS(233), - [sym_keyword_numeric] = ACTIONS(233), - [sym_keyword_asc] = ACTIONS(233), - [sym_keyword_desc] = ACTIONS(233), - [sym_keyword_and] = ACTIONS(233), - [sym_keyword_or] = ACTIONS(233), - [sym_keyword_is] = ACTIONS(233), - [sym_keyword_not] = ACTIONS(235), - [sym_keyword_contains] = ACTIONS(233), - [sym_keyword_contains_not] = ACTIONS(233), - [sym_keyword_contains_all] = ACTIONS(233), - [sym_keyword_contains_any] = ACTIONS(233), - [sym_keyword_contains_none] = ACTIONS(233), - [sym_keyword_inside] = ACTIONS(233), - [sym_keyword_in] = ACTIONS(235), - [sym_keyword_not_inside] = ACTIONS(233), - [sym_keyword_all_inside] = ACTIONS(233), - [sym_keyword_any_inside] = ACTIONS(233), - [sym_keyword_none_inside] = ACTIONS(233), - [sym_keyword_outside] = ACTIONS(233), - [sym_keyword_intersects] = ACTIONS(233), - [sym_keyword_flexible] = ACTIONS(233), - [sym_keyword_readonly] = ACTIONS(233), - [sym_keyword_type] = ACTIONS(233), - [sym_keyword_default] = ACTIONS(233), - [sym_keyword_assert] = ACTIONS(233), - [sym_keyword_permissions] = ACTIONS(233), - [sym_keyword_for] = ACTIONS(233), - [sym_keyword_comment] = ACTIONS(233), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(233), - [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(235), - [anon_sym_LT_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_QMARK_QMARK] = ACTIONS(233), - [anon_sym_QMARK_COLON] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_QMARK_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_TILDE] = ACTIONS(233), - [anon_sym_BANG_TILDE] = ACTIONS(233), - [anon_sym_STAR_TILDE] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_u00d7] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(235), - [anon_sym_u00f7] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_u220b] = ACTIONS(233), - [anon_sym_u220c] = ACTIONS(233), - [anon_sym_u2287] = ACTIONS(233), - [anon_sym_u2283] = ACTIONS(233), - [anon_sym_u2285] = ACTIONS(233), - [anon_sym_u2208] = ACTIONS(233), - [anon_sym_u2209] = ACTIONS(233), - [anon_sym_u2286] = ACTIONS(233), - [anon_sym_u2282] = ACTIONS(233), - [anon_sym_u2284] = ACTIONS(233), - [anon_sym_AT_AT] = ACTIONS(233), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_return] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_content] = ACTIONS(202), + [sym_keyword_merge] = ACTIONS(202), + [sym_keyword_patch] = ACTIONS(202), + [sym_keyword_set] = ACTIONS(202), + [sym_keyword_unset] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [172] = { - [sym_array] = STATE(94), - [sym_object] = STATE(94), - [sym_record_id_value] = STATE(113), + [162] = { + [sym_array] = STATE(266), + [sym_object] = STATE(266), + [sym_record_id_value] = STATE(274), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_value] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_flexible] = ACTIONS(214), - [sym_keyword_readonly] = ACTIONS(214), - [sym_keyword_type] = ACTIONS(214), - [sym_keyword_default] = ACTIONS(214), - [sym_keyword_assert] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_for] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(351), - [sym_record_id_ident] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [173] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_as] = ACTIONS(343), - [sym_keyword_group] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_drop] = ACTIONS(343), - [sym_keyword_schemafull] = ACTIONS(343), - [sym_keyword_schemaless] = ACTIONS(343), - [sym_keyword_changefeed] = ACTIONS(343), - [sym_keyword_type] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_fetch] = ACTIONS(142), + [sym_keyword_limit] = ACTIONS(142), + [sym_keyword_order] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_split] = ACTIONS(142), + [sym_keyword_group] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), [sym_int] = ACTIONS(347), [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [174] = { - [sym_array] = STATE(300), - [sym_object] = STATE(300), - [sym_record_id_value] = STATE(354), - [ts_builtin_sym_end] = ACTIONS(160), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_fetch] = ACTIONS(162), - [sym_keyword_limit] = ACTIONS(162), - [sym_keyword_order] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_split] = ACTIONS(162), - [sym_keyword_group] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(379), - [sym_record_id_ident] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [175] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_as] = ACTIONS(162), - [sym_keyword_group] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_drop] = ACTIONS(162), - [sym_keyword_schemafull] = ACTIONS(162), - [sym_keyword_schemaless] = ACTIONS(162), - [sym_keyword_changefeed] = ACTIONS(162), - [sym_keyword_type] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [163] = { + [sym_filter] = STATE(303), + [sym_path_element] = STATE(165), + [sym_graph_path] = STATE(303), + [sym_subscript] = STATE(303), + [aux_sym_path_repeat1] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(73), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(73), + [sym_keyword_as] = ACTIONS(73), + [sym_keyword_where] = ACTIONS(73), + [sym_keyword_group] = ACTIONS(73), + [sym_keyword_and] = ACTIONS(73), + [sym_keyword_or] = ACTIONS(73), + [sym_keyword_is] = ACTIONS(73), + [sym_keyword_not] = ACTIONS(75), + [sym_keyword_contains] = ACTIONS(73), + [sym_keyword_contains_not] = ACTIONS(73), + [sym_keyword_contains_all] = ACTIONS(73), + [sym_keyword_contains_any] = ACTIONS(73), + [sym_keyword_contains_none] = ACTIONS(73), + [sym_keyword_inside] = ACTIONS(73), + [sym_keyword_in] = ACTIONS(75), + [sym_keyword_not_inside] = ACTIONS(73), + [sym_keyword_all_inside] = ACTIONS(73), + [sym_keyword_any_inside] = ACTIONS(73), + [sym_keyword_none_inside] = ACTIONS(73), + [sym_keyword_outside] = ACTIONS(73), + [sym_keyword_intersects] = ACTIONS(73), + [sym_keyword_drop] = ACTIONS(73), + [sym_keyword_schemafull] = ACTIONS(73), + [sym_keyword_schemaless] = ACTIONS(73), + [sym_keyword_changefeed] = ACTIONS(73), + [sym_keyword_type] = ACTIONS(73), + [sym_keyword_permissions] = ACTIONS(73), + [sym_keyword_for] = ACTIONS(73), + [sym_keyword_comment] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(73), + [anon_sym_DASH_GT] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(430), + [anon_sym_LT_DASH] = ACTIONS(432), + [anon_sym_LT_DASH_GT] = ACTIONS(428), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_AT] = ACTIONS(75), + [anon_sym_LT_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(73), + [anon_sym_PIPE_PIPE] = ACTIONS(73), + [anon_sym_QMARK_QMARK] = ACTIONS(73), + [anon_sym_QMARK_COLON] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_QMARK_EQ] = ACTIONS(73), + [anon_sym_STAR_EQ] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(73), + [anon_sym_BANG_TILDE] = ACTIONS(73), + [anon_sym_STAR_TILDE] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(73), + [anon_sym_DASH_EQ] = ACTIONS(73), + [anon_sym_u00d7] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_u00f7] = ACTIONS(73), + [anon_sym_STAR_STAR] = ACTIONS(73), + [anon_sym_u220b] = ACTIONS(73), + [anon_sym_u220c] = ACTIONS(73), + [anon_sym_u2287] = ACTIONS(73), + [anon_sym_u2283] = ACTIONS(73), + [anon_sym_u2285] = ACTIONS(73), + [anon_sym_u2208] = ACTIONS(73), + [anon_sym_u2209] = ACTIONS(73), + [anon_sym_u2286] = ACTIONS(73), + [anon_sym_u2282] = ACTIONS(73), + [anon_sym_u2284] = ACTIONS(73), + [anon_sym_AT_AT] = ACTIONS(73), }, - [176] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), + [164] = { + [sym_array] = STATE(251), + [sym_object] = STATE(251), + [sym_record_id_value] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_as] = ACTIONS(214), - [sym_keyword_group] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_drop] = ACTIONS(214), - [sym_keyword_schemafull] = ACTIONS(214), - [sym_keyword_schemaless] = ACTIONS(214), - [sym_keyword_changefeed] = ACTIONS(214), - [sym_keyword_type] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_as] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_group] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_drop] = ACTIONS(142), + [sym_keyword_schemafull] = ACTIONS(142), + [sym_keyword_schemaless] = ACTIONS(142), + [sym_keyword_changefeed] = ACTIONS(142), + [sym_keyword_type] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(424), + [sym_record_id_ident] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [177] = { + [165] = { + [sym_filter] = STATE(303), + [sym_path_element] = STATE(165), + [sym_graph_path] = STATE(303), + [sym_subscript] = STATE(303), + [aux_sym_path_repeat1] = STATE(165), + [ts_builtin_sym_end] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(77), - [sym_keyword_value] = ACTIONS(77), - [sym_keyword_explain] = ACTIONS(77), - [sym_keyword_parallel] = ACTIONS(77), - [sym_keyword_timeout] = ACTIONS(77), - [sym_keyword_fetch] = ACTIONS(77), - [sym_keyword_limit] = ACTIONS(77), - [sym_keyword_rand] = ACTIONS(77), - [sym_keyword_collate] = ACTIONS(77), - [sym_keyword_numeric] = ACTIONS(77), - [sym_keyword_asc] = ACTIONS(77), - [sym_keyword_desc] = ACTIONS(77), + [sym_keyword_as] = ACTIONS(77), + [sym_keyword_where] = ACTIONS(77), + [sym_keyword_group] = ACTIONS(77), [sym_keyword_and] = ACTIONS(77), [sym_keyword_or] = ACTIONS(77), [sym_keyword_is] = ACTIONS(77), @@ -32086,18 +31127,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(77), [sym_keyword_outside] = ACTIONS(77), [sym_keyword_intersects] = ACTIONS(77), - [sym_keyword_flexible] = ACTIONS(77), - [sym_keyword_readonly] = ACTIONS(77), + [sym_keyword_drop] = ACTIONS(77), + [sym_keyword_schemafull] = ACTIONS(77), + [sym_keyword_schemaless] = ACTIONS(77), + [sym_keyword_changefeed] = ACTIONS(77), [sym_keyword_type] = ACTIONS(77), - [sym_keyword_default] = ACTIONS(77), - [sym_keyword_assert] = ACTIONS(77), [sym_keyword_permissions] = ACTIONS(77), [sym_keyword_for] = ACTIONS(77), [sym_keyword_comment] = ACTIONS(77), [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_RPAREN] = ACTIONS(77), - [anon_sym_RBRACE] = ACTIONS(77), + [anon_sym_DASH_GT] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_LT_DASH] = ACTIONS(442), + [anon_sym_LT_DASH_GT] = ACTIONS(436), [anon_sym_STAR] = ACTIONS(79), + [anon_sym_DOT] = ACTIONS(445), [anon_sym_LT] = ACTIONS(79), [anon_sym_GT] = ACTIONS(79), [anon_sym_EQ] = ACTIONS(79), @@ -32136,655 +31180,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(77), [anon_sym_AT_AT] = ACTIONS(77), }, - [178] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_as] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_drop] = ACTIONS(343), - [sym_keyword_schemafull] = ACTIONS(343), - [sym_keyword_schemaless] = ACTIONS(343), - [sym_keyword_changefeed] = ACTIONS(343), - [sym_keyword_type] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_for] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [179] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_as] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_drop] = ACTIONS(162), - [sym_keyword_schemafull] = ACTIONS(162), - [sym_keyword_schemaless] = ACTIONS(162), - [sym_keyword_changefeed] = ACTIONS(162), - [sym_keyword_type] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_for] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [180] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_as] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_drop] = ACTIONS(214), - [sym_keyword_schemafull] = ACTIONS(214), - [sym_keyword_schemaless] = ACTIONS(214), - [sym_keyword_changefeed] = ACTIONS(214), - [sym_keyword_type] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_for] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), + [166] = { + [sym_array] = STATE(266), + [sym_object] = STATE(266), + [sym_record_id_value] = STATE(289), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_explain] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_fetch] = ACTIONS(351), + [sym_keyword_limit] = ACTIONS(351), + [sym_keyword_order] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_split] = ACTIONS(351), + [sym_keyword_group] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), [sym_int] = ACTIONS(347), [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, - [181] = { - [sym_array] = STATE(300), - [sym_object] = STATE(300), - [sym_record_id_value] = STATE(346), - [ts_builtin_sym_end] = ACTIONS(212), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_fetch] = ACTIONS(214), - [sym_keyword_limit] = ACTIONS(214), - [sym_keyword_order] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_split] = ACTIONS(214), - [sym_keyword_group] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(379), - [sym_record_id_ident] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [167] = { + [sym_filter] = STATE(58), + [sym_path_element] = STATE(148), + [sym_graph_path] = STATE(58), + [sym_subscript] = STATE(58), + [aux_sym_path_repeat1] = STATE(148), + [ts_builtin_sym_end] = ACTIONS(73), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(73), + [sym_keyword_return] = ACTIONS(73), + [sym_keyword_parallel] = ACTIONS(73), + [sym_keyword_timeout] = ACTIONS(73), + [sym_keyword_where] = ACTIONS(73), + [sym_keyword_and] = ACTIONS(73), + [sym_keyword_or] = ACTIONS(73), + [sym_keyword_is] = ACTIONS(73), + [sym_keyword_not] = ACTIONS(75), + [sym_keyword_contains] = ACTIONS(73), + [sym_keyword_contains_not] = ACTIONS(73), + [sym_keyword_contains_all] = ACTIONS(73), + [sym_keyword_contains_any] = ACTIONS(73), + [sym_keyword_contains_none] = ACTIONS(73), + [sym_keyword_inside] = ACTIONS(73), + [sym_keyword_in] = ACTIONS(75), + [sym_keyword_not_inside] = ACTIONS(73), + [sym_keyword_all_inside] = ACTIONS(73), + [sym_keyword_any_inside] = ACTIONS(73), + [sym_keyword_none_inside] = ACTIONS(73), + [sym_keyword_outside] = ACTIONS(73), + [sym_keyword_intersects] = ACTIONS(73), + [sym_keyword_content] = ACTIONS(73), + [sym_keyword_merge] = ACTIONS(73), + [sym_keyword_patch] = ACTIONS(73), + [sym_keyword_permissions] = ACTIONS(73), + [sym_keyword_comment] = ACTIONS(73), + [sym_keyword_set] = ACTIONS(73), + [sym_keyword_unset] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(73), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(263), + [anon_sym_LT_DASH] = ACTIONS(45), + [anon_sym_LT_DASH_GT] = ACTIONS(37), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_AT] = ACTIONS(75), + [anon_sym_LT_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(73), + [anon_sym_PIPE_PIPE] = ACTIONS(73), + [anon_sym_QMARK_QMARK] = ACTIONS(73), + [anon_sym_QMARK_COLON] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_QMARK_EQ] = ACTIONS(73), + [anon_sym_STAR_EQ] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(73), + [anon_sym_BANG_TILDE] = ACTIONS(73), + [anon_sym_STAR_TILDE] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(73), + [anon_sym_DASH_EQ] = ACTIONS(73), + [anon_sym_u00d7] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_u00f7] = ACTIONS(73), + [anon_sym_STAR_STAR] = ACTIONS(73), + [anon_sym_u220b] = ACTIONS(73), + [anon_sym_u220c] = ACTIONS(73), + [anon_sym_u2287] = ACTIONS(73), + [anon_sym_u2283] = ACTIONS(73), + [anon_sym_u2285] = ACTIONS(73), + [anon_sym_u2208] = ACTIONS(73), + [anon_sym_u2209] = ACTIONS(73), + [anon_sym_u2286] = ACTIONS(73), + [anon_sym_u2282] = ACTIONS(73), + [anon_sym_u2284] = ACTIONS(73), + [anon_sym_AT_AT] = ACTIONS(73), }, - [182] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(249), - [sym_keyword_value] = ACTIONS(249), - [sym_keyword_explain] = ACTIONS(249), - [sym_keyword_parallel] = ACTIONS(249), - [sym_keyword_timeout] = ACTIONS(249), - [sym_keyword_fetch] = ACTIONS(249), - [sym_keyword_limit] = ACTIONS(249), - [sym_keyword_rand] = ACTIONS(249), - [sym_keyword_collate] = ACTIONS(249), - [sym_keyword_numeric] = ACTIONS(249), - [sym_keyword_asc] = ACTIONS(249), - [sym_keyword_desc] = ACTIONS(249), - [sym_keyword_and] = ACTIONS(249), - [sym_keyword_or] = ACTIONS(249), - [sym_keyword_is] = ACTIONS(249), - [sym_keyword_not] = ACTIONS(251), - [sym_keyword_contains] = ACTIONS(249), - [sym_keyword_contains_not] = ACTIONS(249), - [sym_keyword_contains_all] = ACTIONS(249), - [sym_keyword_contains_any] = ACTIONS(249), - [sym_keyword_contains_none] = ACTIONS(249), - [sym_keyword_inside] = ACTIONS(249), - [sym_keyword_in] = ACTIONS(251), - [sym_keyword_not_inside] = ACTIONS(249), - [sym_keyword_all_inside] = ACTIONS(249), - [sym_keyword_any_inside] = ACTIONS(249), - [sym_keyword_none_inside] = ACTIONS(249), - [sym_keyword_outside] = ACTIONS(249), - [sym_keyword_intersects] = ACTIONS(249), - [sym_keyword_flexible] = ACTIONS(249), - [sym_keyword_readonly] = ACTIONS(249), - [sym_keyword_type] = ACTIONS(249), - [sym_keyword_default] = ACTIONS(249), - [sym_keyword_assert] = ACTIONS(249), - [sym_keyword_permissions] = ACTIONS(249), - [sym_keyword_for] = ACTIONS(249), - [sym_keyword_comment] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_RBRACE] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(251), - [anon_sym_LT_PIPE] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_QMARK_QMARK] = ACTIONS(249), - [anon_sym_QMARK_COLON] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_QMARK_EQ] = ACTIONS(249), - [anon_sym_STAR_EQ] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG_TILDE] = ACTIONS(249), - [anon_sym_STAR_TILDE] = ACTIONS(249), - [anon_sym_LT_EQ] = ACTIONS(249), - [anon_sym_GT_EQ] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_PLUS_EQ] = ACTIONS(249), - [anon_sym_DASH_EQ] = ACTIONS(249), - [anon_sym_u00d7] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(251), - [anon_sym_u00f7] = ACTIONS(249), - [anon_sym_STAR_STAR] = ACTIONS(249), - [anon_sym_u220b] = ACTIONS(249), - [anon_sym_u220c] = ACTIONS(249), - [anon_sym_u2287] = ACTIONS(249), - [anon_sym_u2283] = ACTIONS(249), - [anon_sym_u2285] = ACTIONS(249), - [anon_sym_u2208] = ACTIONS(249), - [anon_sym_u2209] = ACTIONS(249), - [anon_sym_u2286] = ACTIONS(249), - [anon_sym_u2282] = ACTIONS(249), - [anon_sym_u2284] = ACTIONS(249), - [anon_sym_AT_AT] = ACTIONS(249), + [168] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_return] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_content] = ACTIONS(351), + [sym_keyword_merge] = ACTIONS(351), + [sym_keyword_patch] = ACTIONS(351), + [sym_keyword_set] = ACTIONS(351), + [sym_keyword_unset] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, - [183] = { - [sym_array] = STATE(94), - [sym_object] = STATE(94), - [sym_record_id_value] = STATE(109), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_value] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_flexible] = ACTIONS(343), - [sym_keyword_readonly] = ACTIONS(343), - [sym_keyword_type] = ACTIONS(343), - [sym_keyword_default] = ACTIONS(343), - [sym_keyword_assert] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_for] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(351), - [sym_record_id_ident] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [169] = { + [sym_where_clause] = STATE(1107), + [sym_timeout_clause] = STATE(1207), + [sym_parallel_clause] = STATE(1321), + [sym_content_clause] = STATE(1019), + [sym_set_clause] = STATE(1019), + [sym_unset_clause] = STATE(1019), + [sym_return_clause] = STATE(1112), + [sym_merge_clause] = STATE(1019), + [sym_patch_clause] = STATE(1019), + [sym_operator] = STATE(736), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(375), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(375), + [sym_keyword_return] = ACTIONS(403), + [sym_keyword_parallel] = ACTIONS(295), + [sym_keyword_timeout] = ACTIONS(297), + [sym_keyword_where] = ACTIONS(405), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(313), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [sym_keyword_content] = ACTIONS(363), + [sym_keyword_merge] = ACTIONS(365), + [sym_keyword_patch] = ACTIONS(367), + [sym_keyword_set] = ACTIONS(407), + [sym_keyword_unset] = ACTIONS(409), + [anon_sym_COMMA] = ACTIONS(411), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), }, - [184] = { - [sym_array] = STATE(94), - [sym_object] = STATE(94), - [sym_record_id_value] = STATE(107), + [170] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_value] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_flexible] = ACTIONS(162), - [sym_keyword_readonly] = ACTIONS(162), - [sym_keyword_type] = ACTIONS(162), - [sym_keyword_default] = ACTIONS(162), - [sym_keyword_assert] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_for] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(351), - [sym_record_id_ident] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(188), + [sym_keyword_value] = ACTIONS(188), + [sym_keyword_explain] = ACTIONS(188), + [sym_keyword_parallel] = ACTIONS(188), + [sym_keyword_timeout] = ACTIONS(188), + [sym_keyword_fetch] = ACTIONS(188), + [sym_keyword_limit] = ACTIONS(188), + [sym_keyword_rand] = ACTIONS(188), + [sym_keyword_collate] = ACTIONS(188), + [sym_keyword_numeric] = ACTIONS(188), + [sym_keyword_asc] = ACTIONS(188), + [sym_keyword_desc] = ACTIONS(188), + [sym_keyword_and] = ACTIONS(188), + [sym_keyword_or] = ACTIONS(188), + [sym_keyword_is] = ACTIONS(188), + [sym_keyword_not] = ACTIONS(190), + [sym_keyword_contains] = ACTIONS(188), + [sym_keyword_contains_not] = ACTIONS(188), + [sym_keyword_contains_all] = ACTIONS(188), + [sym_keyword_contains_any] = ACTIONS(188), + [sym_keyword_contains_none] = ACTIONS(188), + [sym_keyword_inside] = ACTIONS(188), + [sym_keyword_in] = ACTIONS(190), + [sym_keyword_not_inside] = ACTIONS(188), + [sym_keyword_all_inside] = ACTIONS(188), + [sym_keyword_any_inside] = ACTIONS(188), + [sym_keyword_none_inside] = ACTIONS(188), + [sym_keyword_outside] = ACTIONS(188), + [sym_keyword_intersects] = ACTIONS(188), + [sym_keyword_flexible] = ACTIONS(188), + [sym_keyword_readonly] = ACTIONS(188), + [sym_keyword_type] = ACTIONS(188), + [sym_keyword_default] = ACTIONS(188), + [sym_keyword_assert] = ACTIONS(188), + [sym_keyword_permissions] = ACTIONS(188), + [sym_keyword_for] = ACTIONS(188), + [sym_keyword_comment] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_RPAREN] = ACTIONS(188), + [anon_sym_RBRACE] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_LT_PIPE] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_QMARK_QMARK] = ACTIONS(188), + [anon_sym_QMARK_COLON] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_QMARK_EQ] = ACTIONS(188), + [anon_sym_STAR_EQ] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_BANG_TILDE] = ACTIONS(188), + [anon_sym_STAR_TILDE] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_u00d7] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_u00f7] = ACTIONS(188), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_u220b] = ACTIONS(188), + [anon_sym_u220c] = ACTIONS(188), + [anon_sym_u2287] = ACTIONS(188), + [anon_sym_u2283] = ACTIONS(188), + [anon_sym_u2285] = ACTIONS(188), + [anon_sym_u2208] = ACTIONS(188), + [anon_sym_u2209] = ACTIONS(188), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), }, - [185] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(212), + [171] = { + [sym_filter] = STATE(339), + [sym_path_element] = STATE(181), + [sym_graph_path] = STATE(339), + [sym_subscript] = STATE(339), + [aux_sym_path_repeat1] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(61), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_return] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_content] = ACTIONS(214), - [sym_keyword_merge] = ACTIONS(214), - [sym_keyword_patch] = ACTIONS(214), - [sym_keyword_set] = ACTIONS(214), - [sym_keyword_unset] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(61), + [sym_keyword_explain] = ACTIONS(61), + [sym_keyword_parallel] = ACTIONS(61), + [sym_keyword_timeout] = ACTIONS(61), + [sym_keyword_fetch] = ACTIONS(61), + [sym_keyword_limit] = ACTIONS(61), + [sym_keyword_order] = ACTIONS(61), + [sym_keyword_with] = ACTIONS(61), + [sym_keyword_where] = ACTIONS(61), + [sym_keyword_split] = ACTIONS(61), + [sym_keyword_group] = ACTIONS(61), + [sym_keyword_and] = ACTIONS(61), + [sym_keyword_or] = ACTIONS(63), + [sym_keyword_is] = ACTIONS(61), + [sym_keyword_not] = ACTIONS(63), + [sym_keyword_contains] = ACTIONS(61), + [sym_keyword_contains_not] = ACTIONS(61), + [sym_keyword_contains_all] = ACTIONS(61), + [sym_keyword_contains_any] = ACTIONS(61), + [sym_keyword_contains_none] = ACTIONS(61), + [sym_keyword_inside] = ACTIONS(61), + [sym_keyword_in] = ACTIONS(63), + [sym_keyword_not_inside] = ACTIONS(61), + [sym_keyword_all_inside] = ACTIONS(61), + [sym_keyword_any_inside] = ACTIONS(61), + [sym_keyword_none_inside] = ACTIONS(61), + [sym_keyword_outside] = ACTIONS(61), + [sym_keyword_intersects] = ACTIONS(61), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_DASH_GT] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_LT_DASH] = ACTIONS(452), + [anon_sym_LT_DASH_GT] = ACTIONS(448), + [anon_sym_STAR] = ACTIONS(63), + [anon_sym_DOT] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_LT_PIPE] = ACTIONS(61), + [anon_sym_AMP_AMP] = ACTIONS(61), + [anon_sym_PIPE_PIPE] = ACTIONS(61), + [anon_sym_QMARK_QMARK] = ACTIONS(61), + [anon_sym_QMARK_COLON] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(61), + [anon_sym_EQ_EQ] = ACTIONS(61), + [anon_sym_QMARK_EQ] = ACTIONS(61), + [anon_sym_STAR_EQ] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_BANG_TILDE] = ACTIONS(61), + [anon_sym_STAR_TILDE] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(61), + [anon_sym_GT_EQ] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_PLUS_EQ] = ACTIONS(61), + [anon_sym_DASH_EQ] = ACTIONS(61), + [anon_sym_u00d7] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_u00f7] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(61), + [anon_sym_u220b] = ACTIONS(61), + [anon_sym_u220c] = ACTIONS(61), + [anon_sym_u2287] = ACTIONS(61), + [anon_sym_u2283] = ACTIONS(61), + [anon_sym_u2285] = ACTIONS(61), + [anon_sym_u2208] = ACTIONS(61), + [anon_sym_u2209] = ACTIONS(61), + [anon_sym_u2286] = ACTIONS(61), + [anon_sym_u2282] = ACTIONS(61), + [anon_sym_u2284] = ACTIONS(61), + [anon_sym_AT_AT] = ACTIONS(61), }, - [186] = { + [172] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(257), [sym_keyword_value] = ACTIONS(257), @@ -32865,88 +31751,898 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(257), [anon_sym_AT_AT] = ACTIONS(257), }, - [187] = { + [173] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(168), + [sym_keyword_value] = ACTIONS(168), + [sym_keyword_explain] = ACTIONS(168), + [sym_keyword_parallel] = ACTIONS(168), + [sym_keyword_timeout] = ACTIONS(168), + [sym_keyword_fetch] = ACTIONS(168), + [sym_keyword_limit] = ACTIONS(168), + [sym_keyword_rand] = ACTIONS(168), + [sym_keyword_collate] = ACTIONS(168), + [sym_keyword_numeric] = ACTIONS(168), + [sym_keyword_asc] = ACTIONS(168), + [sym_keyword_desc] = ACTIONS(168), + [sym_keyword_and] = ACTIONS(168), + [sym_keyword_or] = ACTIONS(168), + [sym_keyword_is] = ACTIONS(168), + [sym_keyword_not] = ACTIONS(170), + [sym_keyword_contains] = ACTIONS(168), + [sym_keyword_contains_not] = ACTIONS(168), + [sym_keyword_contains_all] = ACTIONS(168), + [sym_keyword_contains_any] = ACTIONS(168), + [sym_keyword_contains_none] = ACTIONS(168), + [sym_keyword_inside] = ACTIONS(168), + [sym_keyword_in] = ACTIONS(170), + [sym_keyword_not_inside] = ACTIONS(168), + [sym_keyword_all_inside] = ACTIONS(168), + [sym_keyword_any_inside] = ACTIONS(168), + [sym_keyword_none_inside] = ACTIONS(168), + [sym_keyword_outside] = ACTIONS(168), + [sym_keyword_intersects] = ACTIONS(168), + [sym_keyword_flexible] = ACTIONS(168), + [sym_keyword_readonly] = ACTIONS(168), + [sym_keyword_type] = ACTIONS(168), + [sym_keyword_default] = ACTIONS(168), + [sym_keyword_assert] = ACTIONS(168), + [sym_keyword_permissions] = ACTIONS(168), + [sym_keyword_for] = ACTIONS(168), + [sym_keyword_comment] = ACTIONS(168), + [anon_sym_COMMA] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(170), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_GT] = ACTIONS(170), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(170), + [anon_sym_LT_PIPE] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(168), + [anon_sym_QMARK_QMARK] = ACTIONS(168), + [anon_sym_QMARK_COLON] = ACTIONS(168), + [anon_sym_BANG_EQ] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(168), + [anon_sym_QMARK_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_BANG_TILDE] = ACTIONS(168), + [anon_sym_STAR_TILDE] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(168), + [anon_sym_GT_EQ] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_u00d7] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_u00f7] = ACTIONS(168), + [anon_sym_STAR_STAR] = ACTIONS(168), + [anon_sym_u220b] = ACTIONS(168), + [anon_sym_u220c] = ACTIONS(168), + [anon_sym_u2287] = ACTIONS(168), + [anon_sym_u2283] = ACTIONS(168), + [anon_sym_u2285] = ACTIONS(168), + [anon_sym_u2208] = ACTIONS(168), + [anon_sym_u2209] = ACTIONS(168), + [anon_sym_u2286] = ACTIONS(168), + [anon_sym_u2282] = ACTIONS(168), + [anon_sym_u2284] = ACTIONS(168), + [anon_sym_AT_AT] = ACTIONS(168), + }, + [174] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(237), - [sym_keyword_value] = ACTIONS(237), - [sym_keyword_explain] = ACTIONS(237), - [sym_keyword_parallel] = ACTIONS(237), - [sym_keyword_timeout] = ACTIONS(237), - [sym_keyword_fetch] = ACTIONS(237), - [sym_keyword_limit] = ACTIONS(237), - [sym_keyword_rand] = ACTIONS(237), - [sym_keyword_collate] = ACTIONS(237), - [sym_keyword_numeric] = ACTIONS(237), - [sym_keyword_asc] = ACTIONS(237), - [sym_keyword_desc] = ACTIONS(237), - [sym_keyword_and] = ACTIONS(237), - [sym_keyword_or] = ACTIONS(237), - [sym_keyword_is] = ACTIONS(237), - [sym_keyword_not] = ACTIONS(239), - [sym_keyword_contains] = ACTIONS(237), - [sym_keyword_contains_not] = ACTIONS(237), - [sym_keyword_contains_all] = ACTIONS(237), - [sym_keyword_contains_any] = ACTIONS(237), - [sym_keyword_contains_none] = ACTIONS(237), - [sym_keyword_inside] = ACTIONS(237), - [sym_keyword_in] = ACTIONS(239), - [sym_keyword_not_inside] = ACTIONS(237), - [sym_keyword_all_inside] = ACTIONS(237), - [sym_keyword_any_inside] = ACTIONS(237), - [sym_keyword_none_inside] = ACTIONS(237), - [sym_keyword_outside] = ACTIONS(237), - [sym_keyword_intersects] = ACTIONS(237), - [sym_keyword_flexible] = ACTIONS(237), - [sym_keyword_readonly] = ACTIONS(237), - [sym_keyword_type] = ACTIONS(237), - [sym_keyword_default] = ACTIONS(237), - [sym_keyword_assert] = ACTIONS(237), - [sym_keyword_permissions] = ACTIONS(237), - [sym_keyword_for] = ACTIONS(237), - [sym_keyword_comment] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_LT_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_QMARK_QMARK] = ACTIONS(237), - [anon_sym_QMARK_COLON] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_QMARK_EQ] = ACTIONS(237), - [anon_sym_STAR_EQ] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG_TILDE] = ACTIONS(237), - [anon_sym_STAR_TILDE] = ACTIONS(237), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(237), - [anon_sym_DASH_EQ] = ACTIONS(237), - [anon_sym_u00d7] = ACTIONS(237), - [anon_sym_SLASH] = ACTIONS(239), - [anon_sym_u00f7] = ACTIONS(237), - [anon_sym_STAR_STAR] = ACTIONS(237), - [anon_sym_u220b] = ACTIONS(237), - [anon_sym_u220c] = ACTIONS(237), - [anon_sym_u2287] = ACTIONS(237), - [anon_sym_u2283] = ACTIONS(237), - [anon_sym_u2285] = ACTIONS(237), - [anon_sym_u2208] = ACTIONS(237), - [anon_sym_u2209] = ACTIONS(237), - [anon_sym_u2286] = ACTIONS(237), - [anon_sym_u2282] = ACTIONS(237), - [anon_sym_u2284] = ACTIONS(237), - [anon_sym_AT_AT] = ACTIONS(237), + [sym_semi_colon] = ACTIONS(225), + [sym_keyword_value] = ACTIONS(225), + [sym_keyword_explain] = ACTIONS(225), + [sym_keyword_parallel] = ACTIONS(225), + [sym_keyword_timeout] = ACTIONS(225), + [sym_keyword_fetch] = ACTIONS(225), + [sym_keyword_limit] = ACTIONS(225), + [sym_keyword_rand] = ACTIONS(225), + [sym_keyword_collate] = ACTIONS(225), + [sym_keyword_numeric] = ACTIONS(225), + [sym_keyword_asc] = ACTIONS(225), + [sym_keyword_desc] = ACTIONS(225), + [sym_keyword_and] = ACTIONS(225), + [sym_keyword_or] = ACTIONS(225), + [sym_keyword_is] = ACTIONS(225), + [sym_keyword_not] = ACTIONS(227), + [sym_keyword_contains] = ACTIONS(225), + [sym_keyword_contains_not] = ACTIONS(225), + [sym_keyword_contains_all] = ACTIONS(225), + [sym_keyword_contains_any] = ACTIONS(225), + [sym_keyword_contains_none] = ACTIONS(225), + [sym_keyword_inside] = ACTIONS(225), + [sym_keyword_in] = ACTIONS(227), + [sym_keyword_not_inside] = ACTIONS(225), + [sym_keyword_all_inside] = ACTIONS(225), + [sym_keyword_any_inside] = ACTIONS(225), + [sym_keyword_none_inside] = ACTIONS(225), + [sym_keyword_outside] = ACTIONS(225), + [sym_keyword_intersects] = ACTIONS(225), + [sym_keyword_flexible] = ACTIONS(225), + [sym_keyword_readonly] = ACTIONS(225), + [sym_keyword_type] = ACTIONS(225), + [sym_keyword_default] = ACTIONS(225), + [sym_keyword_assert] = ACTIONS(225), + [sym_keyword_permissions] = ACTIONS(225), + [sym_keyword_for] = ACTIONS(225), + [sym_keyword_comment] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_AT] = ACTIONS(227), + [anon_sym_LT_PIPE] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_QMARK_QMARK] = ACTIONS(225), + [anon_sym_QMARK_COLON] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [anon_sym_QMARK_EQ] = ACTIONS(225), + [anon_sym_STAR_EQ] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_BANG_TILDE] = ACTIONS(225), + [anon_sym_STAR_TILDE] = ACTIONS(225), + [anon_sym_LT_EQ] = ACTIONS(225), + [anon_sym_GT_EQ] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_PLUS_EQ] = ACTIONS(225), + [anon_sym_DASH_EQ] = ACTIONS(225), + [anon_sym_u00d7] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_u00f7] = ACTIONS(225), + [anon_sym_STAR_STAR] = ACTIONS(225), + [anon_sym_u220b] = ACTIONS(225), + [anon_sym_u220c] = ACTIONS(225), + [anon_sym_u2287] = ACTIONS(225), + [anon_sym_u2283] = ACTIONS(225), + [anon_sym_u2285] = ACTIONS(225), + [anon_sym_u2208] = ACTIONS(225), + [anon_sym_u2209] = ACTIONS(225), + [anon_sym_u2286] = ACTIONS(225), + [anon_sym_u2282] = ACTIONS(225), + [anon_sym_u2284] = ACTIONS(225), + [anon_sym_AT_AT] = ACTIONS(225), }, - [188] = { + [175] = { + [sym_array] = STATE(283), + [sym_object] = STATE(283), + [sym_record_id_value] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_explain] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_fetch] = ACTIONS(351), + [sym_keyword_limit] = ACTIONS(351), + [sym_keyword_order] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_split] = ACTIONS(351), + [sym_keyword_group] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(379), + [sym_record_id_ident] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [176] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_return] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_content] = ACTIONS(351), + [sym_keyword_merge] = ACTIONS(351), + [sym_keyword_patch] = ACTIONS(351), + [sym_keyword_set] = ACTIONS(351), + [sym_keyword_unset] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [177] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_as] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_drop] = ACTIONS(202), + [sym_keyword_schemafull] = ACTIONS(202), + [sym_keyword_schemaless] = ACTIONS(202), + [sym_keyword_changefeed] = ACTIONS(202), + [sym_keyword_type] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_for] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [178] = { + [sym_filter] = STATE(339), + [sym_path_element] = STATE(181), + [sym_graph_path] = STATE(339), + [sym_subscript] = STATE(339), + [aux_sym_path_repeat1] = STATE(181), + [ts_builtin_sym_end] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(93), + [sym_keyword_explain] = ACTIONS(93), + [sym_keyword_parallel] = ACTIONS(93), + [sym_keyword_timeout] = ACTIONS(93), + [sym_keyword_fetch] = ACTIONS(93), + [sym_keyword_limit] = ACTIONS(93), + [sym_keyword_order] = ACTIONS(93), + [sym_keyword_with] = ACTIONS(93), + [sym_keyword_where] = ACTIONS(93), + [sym_keyword_split] = ACTIONS(93), + [sym_keyword_group] = ACTIONS(93), + [sym_keyword_and] = ACTIONS(93), + [sym_keyword_or] = ACTIONS(95), + [sym_keyword_is] = ACTIONS(93), + [sym_keyword_not] = ACTIONS(95), + [sym_keyword_contains] = ACTIONS(93), + [sym_keyword_contains_not] = ACTIONS(93), + [sym_keyword_contains_all] = ACTIONS(93), + [sym_keyword_contains_any] = ACTIONS(93), + [sym_keyword_contains_none] = ACTIONS(93), + [sym_keyword_inside] = ACTIONS(93), + [sym_keyword_in] = ACTIONS(95), + [sym_keyword_not_inside] = ACTIONS(93), + [sym_keyword_all_inside] = ACTIONS(93), + [sym_keyword_any_inside] = ACTIONS(93), + [sym_keyword_none_inside] = ACTIONS(93), + [sym_keyword_outside] = ACTIONS(93), + [sym_keyword_intersects] = ACTIONS(93), + [anon_sym_COMMA] = ACTIONS(93), + [anon_sym_DASH_GT] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_LT_DASH] = ACTIONS(452), + [anon_sym_LT_DASH_GT] = ACTIONS(448), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(95), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_PIPE] = ACTIONS(93), + [anon_sym_AMP_AMP] = ACTIONS(93), + [anon_sym_PIPE_PIPE] = ACTIONS(93), + [anon_sym_QMARK_QMARK] = ACTIONS(93), + [anon_sym_QMARK_COLON] = ACTIONS(93), + [anon_sym_BANG_EQ] = ACTIONS(93), + [anon_sym_EQ_EQ] = ACTIONS(93), + [anon_sym_QMARK_EQ] = ACTIONS(93), + [anon_sym_STAR_EQ] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_BANG_TILDE] = ACTIONS(93), + [anon_sym_STAR_TILDE] = ACTIONS(93), + [anon_sym_LT_EQ] = ACTIONS(93), + [anon_sym_GT_EQ] = ACTIONS(93), + [anon_sym_PLUS] = ACTIONS(95), + [anon_sym_PLUS_EQ] = ACTIONS(93), + [anon_sym_DASH_EQ] = ACTIONS(93), + [anon_sym_u00d7] = ACTIONS(93), + [anon_sym_SLASH] = ACTIONS(95), + [anon_sym_u00f7] = ACTIONS(93), + [anon_sym_STAR_STAR] = ACTIONS(93), + [anon_sym_u220b] = ACTIONS(93), + [anon_sym_u220c] = ACTIONS(93), + [anon_sym_u2287] = ACTIONS(93), + [anon_sym_u2283] = ACTIONS(93), + [anon_sym_u2285] = ACTIONS(93), + [anon_sym_u2208] = ACTIONS(93), + [anon_sym_u2209] = ACTIONS(93), + [anon_sym_u2286] = ACTIONS(93), + [anon_sym_u2282] = ACTIONS(93), + [anon_sym_u2284] = ACTIONS(93), + [anon_sym_AT_AT] = ACTIONS(93), + }, + [179] = { + [sym_expressions] = STATE(1840), + [sym_expression] = STATE(1541), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), + [sym_comment] = ACTIONS(3), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), + }, + [180] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(241), + [sym_keyword_value] = ACTIONS(241), + [sym_keyword_explain] = ACTIONS(241), + [sym_keyword_parallel] = ACTIONS(241), + [sym_keyword_timeout] = ACTIONS(241), + [sym_keyword_fetch] = ACTIONS(241), + [sym_keyword_limit] = ACTIONS(241), + [sym_keyword_rand] = ACTIONS(241), + [sym_keyword_collate] = ACTIONS(241), + [sym_keyword_numeric] = ACTIONS(241), + [sym_keyword_asc] = ACTIONS(241), + [sym_keyword_desc] = ACTIONS(241), + [sym_keyword_and] = ACTIONS(241), + [sym_keyword_or] = ACTIONS(241), + [sym_keyword_is] = ACTIONS(241), + [sym_keyword_not] = ACTIONS(243), + [sym_keyword_contains] = ACTIONS(241), + [sym_keyword_contains_not] = ACTIONS(241), + [sym_keyword_contains_all] = ACTIONS(241), + [sym_keyword_contains_any] = ACTIONS(241), + [sym_keyword_contains_none] = ACTIONS(241), + [sym_keyword_inside] = ACTIONS(241), + [sym_keyword_in] = ACTIONS(243), + [sym_keyword_not_inside] = ACTIONS(241), + [sym_keyword_all_inside] = ACTIONS(241), + [sym_keyword_any_inside] = ACTIONS(241), + [sym_keyword_none_inside] = ACTIONS(241), + [sym_keyword_outside] = ACTIONS(241), + [sym_keyword_intersects] = ACTIONS(241), + [sym_keyword_flexible] = ACTIONS(241), + [sym_keyword_readonly] = ACTIONS(241), + [sym_keyword_type] = ACTIONS(241), + [sym_keyword_default] = ACTIONS(241), + [sym_keyword_assert] = ACTIONS(241), + [sym_keyword_permissions] = ACTIONS(241), + [sym_keyword_for] = ACTIONS(241), + [sym_keyword_comment] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(243), + [anon_sym_LT_PIPE] = ACTIONS(241), + [anon_sym_AMP_AMP] = ACTIONS(241), + [anon_sym_PIPE_PIPE] = ACTIONS(241), + [anon_sym_QMARK_QMARK] = ACTIONS(241), + [anon_sym_QMARK_COLON] = ACTIONS(241), + [anon_sym_BANG_EQ] = ACTIONS(241), + [anon_sym_EQ_EQ] = ACTIONS(241), + [anon_sym_QMARK_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_BANG_TILDE] = ACTIONS(241), + [anon_sym_STAR_TILDE] = ACTIONS(241), + [anon_sym_LT_EQ] = ACTIONS(241), + [anon_sym_GT_EQ] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_u00d7] = ACTIONS(241), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_u00f7] = ACTIONS(241), + [anon_sym_STAR_STAR] = ACTIONS(241), + [anon_sym_u220b] = ACTIONS(241), + [anon_sym_u220c] = ACTIONS(241), + [anon_sym_u2287] = ACTIONS(241), + [anon_sym_u2283] = ACTIONS(241), + [anon_sym_u2285] = ACTIONS(241), + [anon_sym_u2208] = ACTIONS(241), + [anon_sym_u2209] = ACTIONS(241), + [anon_sym_u2286] = ACTIONS(241), + [anon_sym_u2282] = ACTIONS(241), + [anon_sym_u2284] = ACTIONS(241), + [anon_sym_AT_AT] = ACTIONS(241), + }, + [181] = { + [sym_filter] = STATE(339), + [sym_path_element] = STATE(189), + [sym_graph_path] = STATE(339), + [sym_subscript] = STATE(339), + [aux_sym_path_repeat1] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(73), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(73), + [sym_keyword_explain] = ACTIONS(73), + [sym_keyword_parallel] = ACTIONS(73), + [sym_keyword_timeout] = ACTIONS(73), + [sym_keyword_fetch] = ACTIONS(73), + [sym_keyword_limit] = ACTIONS(73), + [sym_keyword_order] = ACTIONS(73), + [sym_keyword_with] = ACTIONS(73), + [sym_keyword_where] = ACTIONS(73), + [sym_keyword_split] = ACTIONS(73), + [sym_keyword_group] = ACTIONS(73), + [sym_keyword_and] = ACTIONS(73), + [sym_keyword_or] = ACTIONS(75), + [sym_keyword_is] = ACTIONS(73), + [sym_keyword_not] = ACTIONS(75), + [sym_keyword_contains] = ACTIONS(73), + [sym_keyword_contains_not] = ACTIONS(73), + [sym_keyword_contains_all] = ACTIONS(73), + [sym_keyword_contains_any] = ACTIONS(73), + [sym_keyword_contains_none] = ACTIONS(73), + [sym_keyword_inside] = ACTIONS(73), + [sym_keyword_in] = ACTIONS(75), + [sym_keyword_not_inside] = ACTIONS(73), + [sym_keyword_all_inside] = ACTIONS(73), + [sym_keyword_any_inside] = ACTIONS(73), + [sym_keyword_none_inside] = ACTIONS(73), + [sym_keyword_outside] = ACTIONS(73), + [sym_keyword_intersects] = ACTIONS(73), + [anon_sym_COMMA] = ACTIONS(73), + [anon_sym_DASH_GT] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(450), + [anon_sym_LT_DASH] = ACTIONS(452), + [anon_sym_LT_DASH_GT] = ACTIONS(448), + [anon_sym_STAR] = ACTIONS(75), + [anon_sym_DOT] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_EQ] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_AT] = ACTIONS(75), + [anon_sym_LT_PIPE] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(73), + [anon_sym_PIPE_PIPE] = ACTIONS(73), + [anon_sym_QMARK_QMARK] = ACTIONS(73), + [anon_sym_QMARK_COLON] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_QMARK_EQ] = ACTIONS(73), + [anon_sym_STAR_EQ] = ACTIONS(73), + [anon_sym_TILDE] = ACTIONS(73), + [anon_sym_BANG_TILDE] = ACTIONS(73), + [anon_sym_STAR_TILDE] = ACTIONS(73), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(73), + [anon_sym_DASH_EQ] = ACTIONS(73), + [anon_sym_u00d7] = ACTIONS(73), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_u00f7] = ACTIONS(73), + [anon_sym_STAR_STAR] = ACTIONS(73), + [anon_sym_u220b] = ACTIONS(73), + [anon_sym_u220c] = ACTIONS(73), + [anon_sym_u2287] = ACTIONS(73), + [anon_sym_u2283] = ACTIONS(73), + [anon_sym_u2285] = ACTIONS(73), + [anon_sym_u2208] = ACTIONS(73), + [anon_sym_u2209] = ACTIONS(73), + [anon_sym_u2286] = ACTIONS(73), + [anon_sym_u2282] = ACTIONS(73), + [anon_sym_u2284] = ACTIONS(73), + [anon_sym_AT_AT] = ACTIONS(73), + }, + [182] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_as] = ACTIONS(142), + [sym_keyword_group] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_drop] = ACTIONS(142), + [sym_keyword_schemafull] = ACTIONS(142), + [sym_keyword_schemaless] = ACTIONS(142), + [sym_keyword_changefeed] = ACTIONS(142), + [sym_keyword_type] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), + }, + [183] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_as] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_drop] = ACTIONS(351), + [sym_keyword_schemafull] = ACTIONS(351), + [sym_keyword_schemaless] = ACTIONS(351), + [sym_keyword_changefeed] = ACTIONS(351), + [sym_keyword_type] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_for] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [184] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(148), [sym_keyword_value] = ACTIONS(148), @@ -33027,417 +32723,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(148), [anon_sym_AT_AT] = ACTIONS(148), }, - [189] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(156), - [sym_keyword_value] = ACTIONS(156), - [sym_keyword_explain] = ACTIONS(156), - [sym_keyword_parallel] = ACTIONS(156), - [sym_keyword_timeout] = ACTIONS(156), - [sym_keyword_fetch] = ACTIONS(156), - [sym_keyword_limit] = ACTIONS(156), - [sym_keyword_rand] = ACTIONS(156), - [sym_keyword_collate] = ACTIONS(156), - [sym_keyword_numeric] = ACTIONS(156), - [sym_keyword_asc] = ACTIONS(156), - [sym_keyword_desc] = ACTIONS(156), - [sym_keyword_and] = ACTIONS(156), - [sym_keyword_or] = ACTIONS(156), - [sym_keyword_is] = ACTIONS(156), - [sym_keyword_not] = ACTIONS(158), - [sym_keyword_contains] = ACTIONS(156), - [sym_keyword_contains_not] = ACTIONS(156), - [sym_keyword_contains_all] = ACTIONS(156), - [sym_keyword_contains_any] = ACTIONS(156), - [sym_keyword_contains_none] = ACTIONS(156), - [sym_keyword_inside] = ACTIONS(156), - [sym_keyword_in] = ACTIONS(158), - [sym_keyword_not_inside] = ACTIONS(156), - [sym_keyword_all_inside] = ACTIONS(156), - [sym_keyword_any_inside] = ACTIONS(156), - [sym_keyword_none_inside] = ACTIONS(156), - [sym_keyword_outside] = ACTIONS(156), - [sym_keyword_intersects] = ACTIONS(156), - [sym_keyword_flexible] = ACTIONS(156), - [sym_keyword_readonly] = ACTIONS(156), - [sym_keyword_type] = ACTIONS(156), - [sym_keyword_default] = ACTIONS(156), - [sym_keyword_assert] = ACTIONS(156), - [sym_keyword_permissions] = ACTIONS(156), - [sym_keyword_for] = ACTIONS(156), - [sym_keyword_comment] = ACTIONS(156), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_RPAREN] = ACTIONS(156), - [anon_sym_RBRACE] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(158), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(158), - [anon_sym_LT_PIPE] = ACTIONS(156), - [anon_sym_AMP_AMP] = ACTIONS(156), - [anon_sym_PIPE_PIPE] = ACTIONS(156), - [anon_sym_QMARK_QMARK] = ACTIONS(156), - [anon_sym_QMARK_COLON] = ACTIONS(156), - [anon_sym_BANG_EQ] = ACTIONS(156), - [anon_sym_EQ_EQ] = ACTIONS(156), - [anon_sym_QMARK_EQ] = ACTIONS(156), - [anon_sym_STAR_EQ] = ACTIONS(156), - [anon_sym_TILDE] = ACTIONS(156), - [anon_sym_BANG_TILDE] = ACTIONS(156), - [anon_sym_STAR_TILDE] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(156), - [anon_sym_DASH_EQ] = ACTIONS(156), - [anon_sym_u00d7] = ACTIONS(156), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_u00f7] = ACTIONS(156), - [anon_sym_STAR_STAR] = ACTIONS(156), - [anon_sym_u220b] = ACTIONS(156), - [anon_sym_u220c] = ACTIONS(156), - [anon_sym_u2287] = ACTIONS(156), - [anon_sym_u2283] = ACTIONS(156), - [anon_sym_u2285] = ACTIONS(156), - [anon_sym_u2208] = ACTIONS(156), - [anon_sym_u2209] = ACTIONS(156), - [anon_sym_u2286] = ACTIONS(156), - [anon_sym_u2282] = ACTIONS(156), - [anon_sym_u2284] = ACTIONS(156), - [anon_sym_AT_AT] = ACTIONS(156), - }, - [190] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_value] = ACTIONS(180), - [sym_keyword_explain] = ACTIONS(180), - [sym_keyword_parallel] = ACTIONS(180), - [sym_keyword_timeout] = ACTIONS(180), - [sym_keyword_fetch] = ACTIONS(180), - [sym_keyword_limit] = ACTIONS(180), - [sym_keyword_rand] = ACTIONS(180), - [sym_keyword_collate] = ACTIONS(180), - [sym_keyword_numeric] = ACTIONS(180), - [sym_keyword_asc] = ACTIONS(180), - [sym_keyword_desc] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(180), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [sym_keyword_flexible] = ACTIONS(180), - [sym_keyword_readonly] = ACTIONS(180), - [sym_keyword_type] = ACTIONS(180), - [sym_keyword_default] = ACTIONS(180), - [sym_keyword_assert] = ACTIONS(180), - [sym_keyword_permissions] = ACTIONS(180), - [sym_keyword_for] = ACTIONS(180), - [sym_keyword_comment] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), - }, - [191] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_return] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_content] = ACTIONS(343), - [sym_keyword_merge] = ACTIONS(343), - [sym_keyword_patch] = ACTIONS(343), - [sym_keyword_set] = ACTIONS(343), - [sym_keyword_unset] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [185] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_as] = ACTIONS(202), + [sym_keyword_group] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_drop] = ACTIONS(202), + [sym_keyword_schemafull] = ACTIONS(202), + [sym_keyword_schemaless] = ACTIONS(202), + [sym_keyword_changefeed] = ACTIONS(202), + [sym_keyword_type] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [192] = { + [186] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(253), - [sym_keyword_value] = ACTIONS(253), - [sym_keyword_explain] = ACTIONS(253), - [sym_keyword_parallel] = ACTIONS(253), - [sym_keyword_timeout] = ACTIONS(253), - [sym_keyword_fetch] = ACTIONS(253), - [sym_keyword_limit] = ACTIONS(253), - [sym_keyword_rand] = ACTIONS(253), - [sym_keyword_collate] = ACTIONS(253), - [sym_keyword_numeric] = ACTIONS(253), - [sym_keyword_asc] = ACTIONS(253), - [sym_keyword_desc] = ACTIONS(253), - [sym_keyword_and] = ACTIONS(253), - [sym_keyword_or] = ACTIONS(253), - [sym_keyword_is] = ACTIONS(253), - [sym_keyword_not] = ACTIONS(255), - [sym_keyword_contains] = ACTIONS(253), - [sym_keyword_contains_not] = ACTIONS(253), - [sym_keyword_contains_all] = ACTIONS(253), - [sym_keyword_contains_any] = ACTIONS(253), - [sym_keyword_contains_none] = ACTIONS(253), - [sym_keyword_inside] = ACTIONS(253), - [sym_keyword_in] = ACTIONS(255), - [sym_keyword_not_inside] = ACTIONS(253), - [sym_keyword_all_inside] = ACTIONS(253), - [sym_keyword_any_inside] = ACTIONS(253), - [sym_keyword_none_inside] = ACTIONS(253), - [sym_keyword_outside] = ACTIONS(253), - [sym_keyword_intersects] = ACTIONS(253), - [sym_keyword_flexible] = ACTIONS(253), - [sym_keyword_readonly] = ACTIONS(253), - [sym_keyword_type] = ACTIONS(253), - [sym_keyword_default] = ACTIONS(253), - [sym_keyword_assert] = ACTIONS(253), - [sym_keyword_permissions] = ACTIONS(253), - [sym_keyword_for] = ACTIONS(253), - [sym_keyword_comment] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(255), - [anon_sym_LT] = ACTIONS(255), - [anon_sym_GT] = ACTIONS(255), - [anon_sym_EQ] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_PIPE] = ACTIONS(253), - [anon_sym_AMP_AMP] = ACTIONS(253), - [anon_sym_PIPE_PIPE] = ACTIONS(253), - [anon_sym_QMARK_QMARK] = ACTIONS(253), - [anon_sym_QMARK_COLON] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_QMARK_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_BANG_TILDE] = ACTIONS(253), - [anon_sym_STAR_TILDE] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_u00d7] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(255), - [anon_sym_u00f7] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(253), - [anon_sym_u220b] = ACTIONS(253), - [anon_sym_u220c] = ACTIONS(253), - [anon_sym_u2287] = ACTIONS(253), - [anon_sym_u2283] = ACTIONS(253), - [anon_sym_u2285] = ACTIONS(253), - [anon_sym_u2208] = ACTIONS(253), - [anon_sym_u2209] = ACTIONS(253), - [anon_sym_u2286] = ACTIONS(253), - [anon_sym_u2282] = ACTIONS(253), - [anon_sym_u2284] = ACTIONS(253), - [anon_sym_AT_AT] = ACTIONS(253), + [sym_semi_colon] = ACTIONS(221), + [sym_keyword_value] = ACTIONS(221), + [sym_keyword_explain] = ACTIONS(221), + [sym_keyword_parallel] = ACTIONS(221), + [sym_keyword_timeout] = ACTIONS(221), + [sym_keyword_fetch] = ACTIONS(221), + [sym_keyword_limit] = ACTIONS(221), + [sym_keyword_rand] = ACTIONS(221), + [sym_keyword_collate] = ACTIONS(221), + [sym_keyword_numeric] = ACTIONS(221), + [sym_keyword_asc] = ACTIONS(221), + [sym_keyword_desc] = ACTIONS(221), + [sym_keyword_and] = ACTIONS(221), + [sym_keyword_or] = ACTIONS(221), + [sym_keyword_is] = ACTIONS(221), + [sym_keyword_not] = ACTIONS(223), + [sym_keyword_contains] = ACTIONS(221), + [sym_keyword_contains_not] = ACTIONS(221), + [sym_keyword_contains_all] = ACTIONS(221), + [sym_keyword_contains_any] = ACTIONS(221), + [sym_keyword_contains_none] = ACTIONS(221), + [sym_keyword_inside] = ACTIONS(221), + [sym_keyword_in] = ACTIONS(223), + [sym_keyword_not_inside] = ACTIONS(221), + [sym_keyword_all_inside] = ACTIONS(221), + [sym_keyword_any_inside] = ACTIONS(221), + [sym_keyword_none_inside] = ACTIONS(221), + [sym_keyword_outside] = ACTIONS(221), + [sym_keyword_intersects] = ACTIONS(221), + [sym_keyword_flexible] = ACTIONS(221), + [sym_keyword_readonly] = ACTIONS(221), + [sym_keyword_type] = ACTIONS(221), + [sym_keyword_default] = ACTIONS(221), + [sym_keyword_assert] = ACTIONS(221), + [sym_keyword_permissions] = ACTIONS(221), + [sym_keyword_for] = ACTIONS(221), + [sym_keyword_comment] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(223), + [anon_sym_GT] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_LT_PIPE] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_QMARK_QMARK] = ACTIONS(221), + [anon_sym_QMARK_COLON] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_QMARK_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(221), + [anon_sym_BANG_TILDE] = ACTIONS(221), + [anon_sym_STAR_TILDE] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_u00d7] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(223), + [anon_sym_u00f7] = ACTIONS(221), + [anon_sym_STAR_STAR] = ACTIONS(221), + [anon_sym_u220b] = ACTIONS(221), + [anon_sym_u220c] = ACTIONS(221), + [anon_sym_u2287] = ACTIONS(221), + [anon_sym_u2283] = ACTIONS(221), + [anon_sym_u2285] = ACTIONS(221), + [anon_sym_u2208] = ACTIONS(221), + [anon_sym_u2209] = ACTIONS(221), + [anon_sym_u2286] = ACTIONS(221), + [anon_sym_u2282] = ACTIONS(221), + [anon_sym_u2284] = ACTIONS(221), + [anon_sym_AT_AT] = ACTIONS(221), }, - [193] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(160), + [187] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_as] = ACTIONS(351), + [sym_keyword_group] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_drop] = ACTIONS(351), + [sym_keyword_schemafull] = ACTIONS(351), + [sym_keyword_schemaless] = ACTIONS(351), + [sym_keyword_changefeed] = ACTIONS(351), + [sym_keyword_type] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [188] = { + [sym_array] = STATE(101), + [sym_object] = STATE(101), + [sym_record_id_value] = STATE(104), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_return] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_content] = ACTIONS(162), - [sym_keyword_merge] = ACTIONS(162), - [sym_keyword_patch] = ACTIONS(162), - [sym_keyword_set] = ACTIONS(162), - [sym_keyword_unset] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_value] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_flexible] = ACTIONS(142), + [sym_keyword_readonly] = ACTIONS(142), + [sym_keyword_type] = ACTIONS(142), + [sym_keyword_default] = ACTIONS(142), + [sym_keyword_assert] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_for] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(355), + [sym_record_id_ident] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [194] = { - [sym_filter] = STATE(337), - [sym_path_element] = STATE(196), - [sym_graph_path] = STATE(337), - [sym_subscript] = STATE(337), - [aux_sym_path_repeat1] = STATE(196), + [189] = { + [sym_filter] = STATE(339), + [sym_path_element] = STATE(189), + [sym_graph_path] = STATE(339), + [sym_subscript] = STATE(339), + [aux_sym_path_repeat1] = STATE(189), [ts_builtin_sym_end] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(77), @@ -33469,12 +33084,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_outside] = ACTIONS(77), [sym_keyword_intersects] = ACTIONS(77), [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_DASH_GT] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(450), - [anon_sym_LT_DASH] = ACTIONS(452), - [anon_sym_LT_DASH_GT] = ACTIONS(448), + [anon_sym_DASH_GT] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LT_DASH] = ACTIONS(498), + [anon_sym_LT_DASH_GT] = ACTIONS(492), [anon_sym_STAR] = ACTIONS(79), - [anon_sym_DOT] = ACTIONS(454), + [anon_sym_DOT] = ACTIONS(501), [anon_sym_LT] = ACTIONS(79), [anon_sym_GT] = ACTIONS(79), [anon_sym_EQ] = ACTIONS(79), @@ -33513,1890 +33128,2300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(77), [anon_sym_AT_AT] = ACTIONS(77), }, - [195] = { - [sym_filter] = STATE(337), - [sym_path_element] = STATE(196), - [sym_graph_path] = STATE(337), - [sym_subscript] = STATE(337), - [aux_sym_path_repeat1] = STATE(196), - [ts_builtin_sym_end] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(89), - [sym_keyword_explain] = ACTIONS(89), - [sym_keyword_parallel] = ACTIONS(89), - [sym_keyword_timeout] = ACTIONS(89), - [sym_keyword_fetch] = ACTIONS(89), - [sym_keyword_limit] = ACTIONS(89), - [sym_keyword_order] = ACTIONS(89), - [sym_keyword_with] = ACTIONS(89), - [sym_keyword_where] = ACTIONS(89), - [sym_keyword_split] = ACTIONS(89), - [sym_keyword_group] = ACTIONS(89), - [sym_keyword_and] = ACTIONS(89), - [sym_keyword_or] = ACTIONS(91), - [sym_keyword_is] = ACTIONS(89), - [sym_keyword_not] = ACTIONS(91), - [sym_keyword_contains] = ACTIONS(89), - [sym_keyword_contains_not] = ACTIONS(89), - [sym_keyword_contains_all] = ACTIONS(89), - [sym_keyword_contains_any] = ACTIONS(89), - [sym_keyword_contains_none] = ACTIONS(89), - [sym_keyword_inside] = ACTIONS(89), - [sym_keyword_in] = ACTIONS(91), - [sym_keyword_not_inside] = ACTIONS(89), - [sym_keyword_all_inside] = ACTIONS(89), - [sym_keyword_any_inside] = ACTIONS(89), - [sym_keyword_none_inside] = ACTIONS(89), - [sym_keyword_outside] = ACTIONS(89), - [sym_keyword_intersects] = ACTIONS(89), - [anon_sym_COMMA] = ACTIONS(89), - [anon_sym_DASH_GT] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(450), - [anon_sym_LT_DASH] = ACTIONS(452), - [anon_sym_LT_DASH_GT] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(91), - [anon_sym_DOT] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(91), - [anon_sym_GT] = ACTIONS(91), - [anon_sym_EQ] = ACTIONS(91), - [anon_sym_DASH] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_LT_PIPE] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(89), - [anon_sym_QMARK_QMARK] = ACTIONS(89), - [anon_sym_QMARK_COLON] = ACTIONS(89), - [anon_sym_BANG_EQ] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_QMARK_EQ] = ACTIONS(89), - [anon_sym_STAR_EQ] = ACTIONS(89), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_BANG_TILDE] = ACTIONS(89), - [anon_sym_STAR_TILDE] = ACTIONS(89), - [anon_sym_LT_EQ] = ACTIONS(89), - [anon_sym_GT_EQ] = ACTIONS(89), - [anon_sym_PLUS] = ACTIONS(91), - [anon_sym_PLUS_EQ] = ACTIONS(89), - [anon_sym_DASH_EQ] = ACTIONS(89), - [anon_sym_u00d7] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(91), - [anon_sym_u00f7] = ACTIONS(89), - [anon_sym_STAR_STAR] = ACTIONS(89), - [anon_sym_u220b] = ACTIONS(89), - [anon_sym_u220c] = ACTIONS(89), - [anon_sym_u2287] = ACTIONS(89), - [anon_sym_u2283] = ACTIONS(89), - [anon_sym_u2285] = ACTIONS(89), - [anon_sym_u2208] = ACTIONS(89), - [anon_sym_u2209] = ACTIONS(89), - [anon_sym_u2286] = ACTIONS(89), - [anon_sym_u2282] = ACTIONS(89), - [anon_sym_u2284] = ACTIONS(89), - [anon_sym_AT_AT] = ACTIONS(89), + [190] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(61), + [sym_keyword_value] = ACTIONS(61), + [sym_keyword_explain] = ACTIONS(61), + [sym_keyword_parallel] = ACTIONS(61), + [sym_keyword_timeout] = ACTIONS(61), + [sym_keyword_fetch] = ACTIONS(61), + [sym_keyword_limit] = ACTIONS(61), + [sym_keyword_rand] = ACTIONS(61), + [sym_keyword_collate] = ACTIONS(61), + [sym_keyword_numeric] = ACTIONS(61), + [sym_keyword_asc] = ACTIONS(61), + [sym_keyword_desc] = ACTIONS(61), + [sym_keyword_and] = ACTIONS(61), + [sym_keyword_or] = ACTIONS(61), + [sym_keyword_is] = ACTIONS(61), + [sym_keyword_not] = ACTIONS(63), + [sym_keyword_contains] = ACTIONS(61), + [sym_keyword_contains_not] = ACTIONS(61), + [sym_keyword_contains_all] = ACTIONS(61), + [sym_keyword_contains_any] = ACTIONS(61), + [sym_keyword_contains_none] = ACTIONS(61), + [sym_keyword_inside] = ACTIONS(61), + [sym_keyword_in] = ACTIONS(63), + [sym_keyword_not_inside] = ACTIONS(61), + [sym_keyword_all_inside] = ACTIONS(61), + [sym_keyword_any_inside] = ACTIONS(61), + [sym_keyword_none_inside] = ACTIONS(61), + [sym_keyword_outside] = ACTIONS(61), + [sym_keyword_intersects] = ACTIONS(61), + [sym_keyword_flexible] = ACTIONS(61), + [sym_keyword_readonly] = ACTIONS(61), + [sym_keyword_type] = ACTIONS(61), + [sym_keyword_default] = ACTIONS(61), + [sym_keyword_assert] = ACTIONS(61), + [sym_keyword_permissions] = ACTIONS(61), + [sym_keyword_for] = ACTIONS(61), + [sym_keyword_comment] = ACTIONS(61), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(61), + [anon_sym_RBRACE] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_LT_PIPE] = ACTIONS(61), + [anon_sym_AMP_AMP] = ACTIONS(61), + [anon_sym_PIPE_PIPE] = ACTIONS(61), + [anon_sym_QMARK_QMARK] = ACTIONS(61), + [anon_sym_QMARK_COLON] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(61), + [anon_sym_EQ_EQ] = ACTIONS(61), + [anon_sym_QMARK_EQ] = ACTIONS(61), + [anon_sym_STAR_EQ] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_BANG_TILDE] = ACTIONS(61), + [anon_sym_STAR_TILDE] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(61), + [anon_sym_GT_EQ] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_PLUS_EQ] = ACTIONS(61), + [anon_sym_DASH_EQ] = ACTIONS(61), + [anon_sym_u00d7] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_u00f7] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(61), + [anon_sym_u220b] = ACTIONS(61), + [anon_sym_u220c] = ACTIONS(61), + [anon_sym_u2287] = ACTIONS(61), + [anon_sym_u2283] = ACTIONS(61), + [anon_sym_u2285] = ACTIONS(61), + [anon_sym_u2208] = ACTIONS(61), + [anon_sym_u2209] = ACTIONS(61), + [anon_sym_u2286] = ACTIONS(61), + [anon_sym_u2282] = ACTIONS(61), + [anon_sym_u2284] = ACTIONS(61), + [anon_sym_AT_AT] = ACTIONS(61), }, - [196] = { - [sym_filter] = STATE(337), - [sym_path_element] = STATE(197), - [sym_graph_path] = STATE(337), - [sym_subscript] = STATE(337), - [aux_sym_path_repeat1] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(93), + [191] = { + [sym_array] = STATE(101), + [sym_object] = STATE(101), + [sym_record_id_value] = STATE(116), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(93), - [sym_keyword_explain] = ACTIONS(93), - [sym_keyword_parallel] = ACTIONS(93), - [sym_keyword_timeout] = ACTIONS(93), - [sym_keyword_fetch] = ACTIONS(93), - [sym_keyword_limit] = ACTIONS(93), - [sym_keyword_order] = ACTIONS(93), - [sym_keyword_with] = ACTIONS(93), - [sym_keyword_where] = ACTIONS(93), - [sym_keyword_split] = ACTIONS(93), - [sym_keyword_group] = ACTIONS(93), - [sym_keyword_and] = ACTIONS(93), - [sym_keyword_or] = ACTIONS(95), - [sym_keyword_is] = ACTIONS(93), - [sym_keyword_not] = ACTIONS(95), - [sym_keyword_contains] = ACTIONS(93), - [sym_keyword_contains_not] = ACTIONS(93), - [sym_keyword_contains_all] = ACTIONS(93), - [sym_keyword_contains_any] = ACTIONS(93), - [sym_keyword_contains_none] = ACTIONS(93), - [sym_keyword_inside] = ACTIONS(93), - [sym_keyword_in] = ACTIONS(95), - [sym_keyword_not_inside] = ACTIONS(93), - [sym_keyword_all_inside] = ACTIONS(93), - [sym_keyword_any_inside] = ACTIONS(93), - [sym_keyword_none_inside] = ACTIONS(93), - [sym_keyword_outside] = ACTIONS(93), - [sym_keyword_intersects] = ACTIONS(93), - [anon_sym_COMMA] = ACTIONS(93), - [anon_sym_DASH_GT] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(450), - [anon_sym_LT_DASH] = ACTIONS(452), - [anon_sym_LT_DASH_GT] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(454), - [anon_sym_LT] = ACTIONS(95), - [anon_sym_GT] = ACTIONS(95), - [anon_sym_EQ] = ACTIONS(95), - [anon_sym_DASH] = ACTIONS(95), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_LT_PIPE] = ACTIONS(93), - [anon_sym_AMP_AMP] = ACTIONS(93), - [anon_sym_PIPE_PIPE] = ACTIONS(93), - [anon_sym_QMARK_QMARK] = ACTIONS(93), - [anon_sym_QMARK_COLON] = ACTIONS(93), - [anon_sym_BANG_EQ] = ACTIONS(93), - [anon_sym_EQ_EQ] = ACTIONS(93), - [anon_sym_QMARK_EQ] = ACTIONS(93), - [anon_sym_STAR_EQ] = ACTIONS(93), - [anon_sym_TILDE] = ACTIONS(93), - [anon_sym_BANG_TILDE] = ACTIONS(93), - [anon_sym_STAR_TILDE] = ACTIONS(93), - [anon_sym_LT_EQ] = ACTIONS(93), - [anon_sym_GT_EQ] = ACTIONS(93), - [anon_sym_PLUS] = ACTIONS(95), - [anon_sym_PLUS_EQ] = ACTIONS(93), - [anon_sym_DASH_EQ] = ACTIONS(93), - [anon_sym_u00d7] = ACTIONS(93), - [anon_sym_SLASH] = ACTIONS(95), - [anon_sym_u00f7] = ACTIONS(93), - [anon_sym_STAR_STAR] = ACTIONS(93), - [anon_sym_u220b] = ACTIONS(93), - [anon_sym_u220c] = ACTIONS(93), - [anon_sym_u2287] = ACTIONS(93), - [anon_sym_u2283] = ACTIONS(93), - [anon_sym_u2285] = ACTIONS(93), - [anon_sym_u2208] = ACTIONS(93), - [anon_sym_u2209] = ACTIONS(93), - [anon_sym_u2286] = ACTIONS(93), - [anon_sym_u2282] = ACTIONS(93), - [anon_sym_u2284] = ACTIONS(93), - [anon_sym_AT_AT] = ACTIONS(93), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_value] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_flexible] = ACTIONS(202), + [sym_keyword_readonly] = ACTIONS(202), + [sym_keyword_type] = ACTIONS(202), + [sym_keyword_default] = ACTIONS(202), + [sym_keyword_assert] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_for] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(355), + [sym_record_id_ident] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [192] = { + [sym_array] = STATE(101), + [sym_object] = STATE(101), + [sym_record_id_value] = STATE(121), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_value] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_flexible] = ACTIONS(351), + [sym_keyword_readonly] = ACTIONS(351), + [sym_keyword_type] = ACTIONS(351), + [sym_keyword_default] = ACTIONS(351), + [sym_keyword_assert] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_for] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(355), + [sym_record_id_ident] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [193] = { + [sym_array] = STATE(283), + [sym_object] = STATE(283), + [sym_record_id_value] = STATE(335), + [ts_builtin_sym_end] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_fetch] = ACTIONS(202), + [sym_keyword_limit] = ACTIONS(202), + [sym_keyword_order] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_split] = ACTIONS(202), + [sym_keyword_group] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(379), + [sym_record_id_ident] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [194] = { + [sym_array] = STATE(283), + [sym_object] = STATE(283), + [sym_record_id_value] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(140), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_fetch] = ACTIONS(142), + [sym_keyword_limit] = ACTIONS(142), + [sym_keyword_order] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_split] = ACTIONS(142), + [sym_keyword_group] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(379), + [sym_record_id_ident] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), + }, + [195] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_return] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_content] = ACTIONS(202), + [sym_keyword_merge] = ACTIONS(202), + [sym_keyword_patch] = ACTIONS(202), + [sym_keyword_set] = ACTIONS(202), + [sym_keyword_unset] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [196] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_as] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_drop] = ACTIONS(142), + [sym_keyword_schemafull] = ACTIONS(142), + [sym_keyword_schemaless] = ACTIONS(142), + [sym_keyword_changefeed] = ACTIONS(142), + [sym_keyword_type] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_for] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [197] = { - [sym_filter] = STATE(337), - [sym_path_element] = STATE(197), - [sym_graph_path] = STATE(337), - [sym_subscript] = STATE(337), - [aux_sym_path_repeat1] = STATE(197), - [ts_builtin_sym_end] = ACTIONS(61), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(61), - [sym_keyword_explain] = ACTIONS(61), - [sym_keyword_parallel] = ACTIONS(61), - [sym_keyword_timeout] = ACTIONS(61), - [sym_keyword_fetch] = ACTIONS(61), - [sym_keyword_limit] = ACTIONS(61), - [sym_keyword_order] = ACTIONS(61), - [sym_keyword_with] = ACTIONS(61), - [sym_keyword_where] = ACTIONS(61), - [sym_keyword_split] = ACTIONS(61), - [sym_keyword_group] = ACTIONS(61), - [sym_keyword_and] = ACTIONS(61), - [sym_keyword_or] = ACTIONS(63), - [sym_keyword_is] = ACTIONS(61), - [sym_keyword_not] = ACTIONS(63), - [sym_keyword_contains] = ACTIONS(61), - [sym_keyword_contains_not] = ACTIONS(61), - [sym_keyword_contains_all] = ACTIONS(61), - [sym_keyword_contains_any] = ACTIONS(61), - [sym_keyword_contains_none] = ACTIONS(61), - [sym_keyword_inside] = ACTIONS(61), - [sym_keyword_in] = ACTIONS(63), - [sym_keyword_not_inside] = ACTIONS(61), - [sym_keyword_all_inside] = ACTIONS(61), - [sym_keyword_any_inside] = ACTIONS(61), - [sym_keyword_none_inside] = ACTIONS(61), - [sym_keyword_outside] = ACTIONS(61), - [sym_keyword_intersects] = ACTIONS(61), - [anon_sym_COMMA] = ACTIONS(61), - [anon_sym_DASH_GT] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(459), - [anon_sym_LT_DASH] = ACTIONS(462), - [anon_sym_LT_DASH_GT] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(63), - [anon_sym_DOT] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(63), - [anon_sym_DASH] = ACTIONS(63), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_LT_PIPE] = ACTIONS(61), - [anon_sym_AMP_AMP] = ACTIONS(61), - [anon_sym_PIPE_PIPE] = ACTIONS(61), - [anon_sym_QMARK_QMARK] = ACTIONS(61), - [anon_sym_QMARK_COLON] = ACTIONS(61), - [anon_sym_BANG_EQ] = ACTIONS(61), - [anon_sym_EQ_EQ] = ACTIONS(61), - [anon_sym_QMARK_EQ] = ACTIONS(61), - [anon_sym_STAR_EQ] = ACTIONS(61), - [anon_sym_TILDE] = ACTIONS(61), - [anon_sym_BANG_TILDE] = ACTIONS(61), - [anon_sym_STAR_TILDE] = ACTIONS(61), - [anon_sym_LT_EQ] = ACTIONS(61), - [anon_sym_GT_EQ] = ACTIONS(61), - [anon_sym_PLUS] = ACTIONS(63), - [anon_sym_PLUS_EQ] = ACTIONS(61), - [anon_sym_DASH_EQ] = ACTIONS(61), - [anon_sym_u00d7] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(63), - [anon_sym_u00f7] = ACTIONS(61), - [anon_sym_STAR_STAR] = ACTIONS(61), - [anon_sym_u220b] = ACTIONS(61), - [anon_sym_u220c] = ACTIONS(61), - [anon_sym_u2287] = ACTIONS(61), - [anon_sym_u2283] = ACTIONS(61), - [anon_sym_u2285] = ACTIONS(61), - [anon_sym_u2208] = ACTIONS(61), - [anon_sym_u2209] = ACTIONS(61), - [anon_sym_u2286] = ACTIONS(61), - [anon_sym_u2282] = ACTIONS(61), - [anon_sym_u2284] = ACTIONS(61), - [anon_sym_AT_AT] = ACTIONS(61), + [sym_semi_colon] = ACTIONS(229), + [sym_keyword_value] = ACTIONS(229), + [sym_keyword_explain] = ACTIONS(229), + [sym_keyword_parallel] = ACTIONS(229), + [sym_keyword_timeout] = ACTIONS(229), + [sym_keyword_fetch] = ACTIONS(229), + [sym_keyword_limit] = ACTIONS(229), + [sym_keyword_rand] = ACTIONS(229), + [sym_keyword_collate] = ACTIONS(229), + [sym_keyword_numeric] = ACTIONS(229), + [sym_keyword_asc] = ACTIONS(229), + [sym_keyword_desc] = ACTIONS(229), + [sym_keyword_and] = ACTIONS(229), + [sym_keyword_or] = ACTIONS(229), + [sym_keyword_is] = ACTIONS(229), + [sym_keyword_not] = ACTIONS(231), + [sym_keyword_contains] = ACTIONS(229), + [sym_keyword_contains_not] = ACTIONS(229), + [sym_keyword_contains_all] = ACTIONS(229), + [sym_keyword_contains_any] = ACTIONS(229), + [sym_keyword_contains_none] = ACTIONS(229), + [sym_keyword_inside] = ACTIONS(229), + [sym_keyword_in] = ACTIONS(231), + [sym_keyword_not_inside] = ACTIONS(229), + [sym_keyword_all_inside] = ACTIONS(229), + [sym_keyword_any_inside] = ACTIONS(229), + [sym_keyword_none_inside] = ACTIONS(229), + [sym_keyword_outside] = ACTIONS(229), + [sym_keyword_intersects] = ACTIONS(229), + [sym_keyword_flexible] = ACTIONS(229), + [sym_keyword_readonly] = ACTIONS(229), + [sym_keyword_type] = ACTIONS(229), + [sym_keyword_default] = ACTIONS(229), + [sym_keyword_assert] = ACTIONS(229), + [sym_keyword_permissions] = ACTIONS(229), + [sym_keyword_for] = ACTIONS(229), + [sym_keyword_comment] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_PIPE] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_QMARK_QMARK] = ACTIONS(229), + [anon_sym_QMARK_COLON] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(229), + [anon_sym_EQ_EQ] = ACTIONS(229), + [anon_sym_QMARK_EQ] = ACTIONS(229), + [anon_sym_STAR_EQ] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(229), + [anon_sym_BANG_TILDE] = ACTIONS(229), + [anon_sym_STAR_TILDE] = ACTIONS(229), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_GT_EQ] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_PLUS_EQ] = ACTIONS(229), + [anon_sym_DASH_EQ] = ACTIONS(229), + [anon_sym_u00d7] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_u00f7] = ACTIONS(229), + [anon_sym_STAR_STAR] = ACTIONS(229), + [anon_sym_u220b] = ACTIONS(229), + [anon_sym_u220c] = ACTIONS(229), + [anon_sym_u2287] = ACTIONS(229), + [anon_sym_u2283] = ACTIONS(229), + [anon_sym_u2285] = ACTIONS(229), + [anon_sym_u2208] = ACTIONS(229), + [anon_sym_u2209] = ACTIONS(229), + [anon_sym_u2286] = ACTIONS(229), + [anon_sym_u2282] = ACTIONS(229), + [anon_sym_u2284] = ACTIONS(229), + [anon_sym_AT_AT] = ACTIONS(229), }, [198] = { - [sym_array] = STATE(244), - [sym_object] = STATE(244), - [sym_record_id_value] = STATE(284), + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_fetch] = ACTIONS(214), - [sym_keyword_limit] = ACTIONS(214), - [sym_keyword_order] = ACTIONS(214), - [sym_keyword_split] = ACTIONS(214), - [sym_keyword_group] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(375), - [sym_record_id_ident] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_return] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_content] = ACTIONS(142), + [sym_keyword_merge] = ACTIONS(142), + [sym_keyword_patch] = ACTIONS(142), + [sym_keyword_set] = ACTIONS(142), + [sym_keyword_unset] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [199] = { - [sym_array] = STATE(94), - [sym_object] = STATE(94), - [sym_record_id_value] = STATE(109), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_value] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_flexible] = ACTIONS(343), - [sym_keyword_readonly] = ACTIONS(343), - [sym_keyword_type] = ACTIONS(343), - [sym_keyword_default] = ACTIONS(343), - [sym_keyword_assert] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(351), - [sym_record_id_ident] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_array] = STATE(101), + [sym_object] = STATE(101), + [sym_record_id_value] = STATE(116), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_value] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_flexible] = ACTIONS(202), + [sym_keyword_readonly] = ACTIONS(202), + [sym_keyword_type] = ACTIONS(202), + [sym_keyword_default] = ACTIONS(202), + [sym_keyword_assert] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(355), + [sym_record_id_ident] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [200] = { - [sym_expressions] = STATE(1773), - [sym_expression] = STATE(1557), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [sym_array] = STATE(266), + [sym_object] = STATE(266), + [sym_record_id_value] = STATE(280), [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_fetch] = ACTIONS(202), + [sym_keyword_limit] = ACTIONS(202), + [sym_keyword_order] = ACTIONS(202), + [sym_keyword_split] = ACTIONS(202), + [sym_keyword_group] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(347), + [sym_record_id_ident] = ACTIONS(347), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [201] = { - [sym_array] = STATE(232), - [sym_object] = STATE(232), - [sym_record_id_value] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(212), + [sym_array] = STATE(251), + [sym_object] = STATE(251), + [sym_record_id_value] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_as] = ACTIONS(214), - [sym_keyword_group] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_drop] = ACTIONS(214), - [sym_keyword_schemafull] = ACTIONS(214), - [sym_keyword_schemaless] = ACTIONS(214), - [sym_keyword_changefeed] = ACTIONS(214), - [sym_keyword_type] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(395), - [sym_record_id_ident] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_as] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_drop] = ACTIONS(142), + [sym_keyword_schemafull] = ACTIONS(142), + [sym_keyword_schemaless] = ACTIONS(142), + [sym_keyword_changefeed] = ACTIONS(142), + [sym_keyword_type] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_for] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(424), + [sym_record_id_ident] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [202] = { - [sym_array] = STATE(232), - [sym_object] = STATE(232), - [sym_record_id_value] = STATE(321), - [ts_builtin_sym_end] = ACTIONS(160), + [sym_array] = STATE(251), + [sym_object] = STATE(251), + [sym_record_id_value] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(200), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_as] = ACTIONS(162), - [sym_keyword_group] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_drop] = ACTIONS(162), - [sym_keyword_schemafull] = ACTIONS(162), - [sym_keyword_schemaless] = ACTIONS(162), - [sym_keyword_changefeed] = ACTIONS(162), - [sym_keyword_type] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(395), - [sym_record_id_ident] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_as] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_drop] = ACTIONS(202), + [sym_keyword_schemafull] = ACTIONS(202), + [sym_keyword_schemaless] = ACTIONS(202), + [sym_keyword_changefeed] = ACTIONS(202), + [sym_keyword_type] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_for] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(424), + [sym_record_id_ident] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [203] = { - [sym_array] = STATE(244), - [sym_object] = STATE(244), - [sym_record_id_value] = STATE(279), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_explain] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_fetch] = ACTIONS(343), - [sym_keyword_limit] = ACTIONS(343), - [sym_keyword_order] = ACTIONS(343), - [sym_keyword_split] = ACTIONS(343), - [sym_keyword_group] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(375), - [sym_record_id_ident] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_array] = STATE(101), + [sym_object] = STATE(101), + [sym_record_id_value] = STATE(121), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_value] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_flexible] = ACTIONS(351), + [sym_keyword_readonly] = ACTIONS(351), + [sym_keyword_type] = ACTIONS(351), + [sym_keyword_default] = ACTIONS(351), + [sym_keyword_assert] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(355), + [sym_record_id_ident] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, [204] = { - [sym_array] = STATE(232), - [sym_object] = STATE(232), - [sym_record_id_value] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_as] = ACTIONS(343), - [sym_keyword_group] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_drop] = ACTIONS(343), - [sym_keyword_schemafull] = ACTIONS(343), - [sym_keyword_schemaless] = ACTIONS(343), - [sym_keyword_changefeed] = ACTIONS(343), - [sym_keyword_type] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(395), - [sym_record_id_ident] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_expression] = STATE(1443), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1326), + [sym_value] = STATE(595), + [sym_function_call] = STATE(99), + [sym_base_value] = STATE(145), + [sym_binary_expression] = STATE(99), + [sym_path] = STATE(99), + [sym_graph_path] = STATE(144), + [sym_number] = STATE(57), + [sym_identifier] = STATE(57), + [sym_array] = STATE(57), + [sym_object] = STATE(57), + [sym_object_key] = STATE(1851), + [sym_record_id] = STATE(57), + [sym_sub_query] = STATE(57), + [sym_duration] = STATE(57), + [sym_point] = STATE(57), + [aux_sym_duration_repeat1] = STATE(51), + [ts_builtin_sym_end] = ACTIONS(504), + [sym_comment] = ACTIONS(3), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(7), + [sym_keyword_true] = ACTIONS(11), + [sym_keyword_false] = ACTIONS(11), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(11), + [sym_keyword_null] = ACTIONS(11), + [sym_keyword_define] = ACTIONS(19), + [sym_keyword_live] = ACTIONS(21), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(25), + [sym_keyword_delete] = ACTIONS(27), + [sym_keyword_update] = ACTIONS(29), + [sym_keyword_insert] = ACTIONS(31), + [sym_keyword_relate] = ACTIONS(33), + [sym_keyword_count] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(45), + [anon_sym_LT_DASH_GT] = ACTIONS(37), + [aux_sym_type_name_token1] = ACTIONS(47), + [sym_string] = ACTIONS(49), + [sym_prefixed_string] = ACTIONS(49), + [sym_int] = ACTIONS(51), + [sym_float] = ACTIONS(51), + [sym_decimal] = ACTIONS(53), + [sym_variable_name] = ACTIONS(49), + [sym_custom_function_name] = ACTIONS(7), + [sym_function_name] = ACTIONS(7), + [sym_duration_part] = ACTIONS(55), }, [205] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(212), + [sym_array] = STATE(251), + [sym_object] = STATE(251), + [sym_record_id_value] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_value] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_flexible] = ACTIONS(214), - [sym_keyword_readonly] = ACTIONS(214), - [sym_keyword_type] = ACTIONS(214), - [sym_keyword_default] = ACTIONS(214), - [sym_keyword_assert] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_for] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_as] = ACTIONS(142), + [sym_keyword_group] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_drop] = ACTIONS(142), + [sym_keyword_schemafull] = ACTIONS(142), + [sym_keyword_schemaless] = ACTIONS(142), + [sym_keyword_changefeed] = ACTIONS(142), + [sym_keyword_type] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(424), + [sym_record_id_ident] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [206] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(160), + [sym_expression] = STATE(1443), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1326), + [sym_value] = STATE(595), + [sym_function_call] = STATE(99), + [sym_base_value] = STATE(145), + [sym_binary_expression] = STATE(99), + [sym_path] = STATE(99), + [sym_graph_path] = STATE(144), + [sym_number] = STATE(57), + [sym_identifier] = STATE(57), + [sym_array] = STATE(57), + [sym_object] = STATE(57), + [sym_object_key] = STATE(1851), + [sym_record_id] = STATE(57), + [sym_sub_query] = STATE(57), + [sym_duration] = STATE(57), + [sym_point] = STATE(57), + [aux_sym_duration_repeat1] = STATE(51), + [ts_builtin_sym_end] = ACTIONS(506), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_value] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_flexible] = ACTIONS(162), - [sym_keyword_readonly] = ACTIONS(162), - [sym_keyword_type] = ACTIONS(162), - [sym_keyword_default] = ACTIONS(162), - [sym_keyword_assert] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_for] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(7), + [sym_keyword_true] = ACTIONS(11), + [sym_keyword_false] = ACTIONS(11), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(11), + [sym_keyword_null] = ACTIONS(11), + [sym_keyword_define] = ACTIONS(19), + [sym_keyword_live] = ACTIONS(21), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(25), + [sym_keyword_delete] = ACTIONS(27), + [sym_keyword_update] = ACTIONS(29), + [sym_keyword_insert] = ACTIONS(31), + [sym_keyword_relate] = ACTIONS(33), + [sym_keyword_count] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(45), + [anon_sym_LT_DASH_GT] = ACTIONS(37), + [aux_sym_type_name_token1] = ACTIONS(47), + [sym_string] = ACTIONS(49), + [sym_prefixed_string] = ACTIONS(49), + [sym_int] = ACTIONS(51), + [sym_float] = ACTIONS(51), + [sym_decimal] = ACTIONS(53), + [sym_variable_name] = ACTIONS(49), + [sym_custom_function_name] = ACTIONS(7), + [sym_function_name] = ACTIONS(7), + [sym_duration_part] = ACTIONS(55), }, [207] = { - [sym_array] = STATE(244), - [sym_object] = STATE(244), - [sym_record_id_value] = STATE(282), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_fetch] = ACTIONS(162), - [sym_keyword_limit] = ACTIONS(162), - [sym_keyword_order] = ACTIONS(162), - [sym_keyword_split] = ACTIONS(162), - [sym_keyword_group] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(375), - [sym_record_id_ident] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_value] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_flexible] = ACTIONS(351), + [sym_keyword_readonly] = ACTIONS(351), + [sym_keyword_type] = ACTIONS(351), + [sym_keyword_default] = ACTIONS(351), + [sym_keyword_assert] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_for] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, [208] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_value] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_flexible] = ACTIONS(343), - [sym_keyword_readonly] = ACTIONS(343), - [sym_keyword_type] = ACTIONS(343), - [sym_keyword_default] = ACTIONS(343), - [sym_keyword_assert] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_for] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_expression] = STATE(1443), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), + [sym_comment] = ACTIONS(3), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [209] = { - [sym_array] = STATE(232), - [sym_object] = STATE(232), - [sym_record_id_value] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(212), + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_as] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_drop] = ACTIONS(214), - [sym_keyword_schemafull] = ACTIONS(214), - [sym_keyword_schemaless] = ACTIONS(214), - [sym_keyword_changefeed] = ACTIONS(214), - [sym_keyword_type] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_for] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(395), - [sym_record_id_ident] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_value] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_flexible] = ACTIONS(142), + [sym_keyword_readonly] = ACTIONS(142), + [sym_keyword_type] = ACTIONS(142), + [sym_keyword_default] = ACTIONS(142), + [sym_keyword_assert] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_for] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [210] = { - [sym_array] = STATE(232), - [sym_object] = STATE(232), - [sym_record_id_value] = STATE(321), - [ts_builtin_sym_end] = ACTIONS(160), + [sym_array] = STATE(251), + [sym_object] = STATE(251), + [sym_record_id_value] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(200), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_as] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_drop] = ACTIONS(162), - [sym_keyword_schemafull] = ACTIONS(162), - [sym_keyword_schemaless] = ACTIONS(162), - [sym_keyword_changefeed] = ACTIONS(162), - [sym_keyword_type] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_for] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(395), - [sym_record_id_ident] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_as] = ACTIONS(202), + [sym_keyword_group] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_drop] = ACTIONS(202), + [sym_keyword_schemafull] = ACTIONS(202), + [sym_keyword_schemaless] = ACTIONS(202), + [sym_keyword_changefeed] = ACTIONS(202), + [sym_keyword_type] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(424), + [sym_record_id_ident] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [211] = { - [sym_array] = STATE(94), - [sym_object] = STATE(94), - [sym_record_id_value] = STATE(107), + [sym_array] = STATE(101), + [sym_object] = STATE(101), + [sym_record_id_value] = STATE(104), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_value] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_flexible] = ACTIONS(162), - [sym_keyword_readonly] = ACTIONS(162), - [sym_keyword_type] = ACTIONS(162), - [sym_keyword_default] = ACTIONS(162), - [sym_keyword_assert] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(351), - [sym_record_id_ident] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_value] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_flexible] = ACTIONS(142), + [sym_keyword_readonly] = ACTIONS(142), + [sym_keyword_type] = ACTIONS(142), + [sym_keyword_default] = ACTIONS(142), + [sym_keyword_assert] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(355), + [sym_record_id_ident] = ACTIONS(355), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [212] = { - [sym_array] = STATE(232), - [sym_object] = STATE(232), - [sym_record_id_value] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_as] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_drop] = ACTIONS(343), - [sym_keyword_schemafull] = ACTIONS(343), - [sym_keyword_schemaless] = ACTIONS(343), - [sym_keyword_changefeed] = ACTIONS(343), - [sym_keyword_type] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_for] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(395), - [sym_record_id_ident] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_array] = STATE(251), + [sym_object] = STATE(251), + [sym_record_id_value] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_as] = ACTIONS(351), + [sym_keyword_group] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_drop] = ACTIONS(351), + [sym_keyword_schemafull] = ACTIONS(351), + [sym_keyword_schemaless] = ACTIONS(351), + [sym_keyword_changefeed] = ACTIONS(351), + [sym_keyword_type] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(424), + [sym_record_id_ident] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, [213] = { - [sym_array] = STATE(94), - [sym_object] = STATE(94), - [sym_record_id_value] = STATE(113), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_value] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_flexible] = ACTIONS(214), - [sym_keyword_readonly] = ACTIONS(214), - [sym_keyword_type] = ACTIONS(214), - [sym_keyword_default] = ACTIONS(214), - [sym_keyword_assert] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(349), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(351), - [sym_record_id_ident] = ACTIONS(351), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [214] = { - [sym_expression] = STATE(1426), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [sym_expression] = STATE(1443), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), [anon_sym_RBRACE] = ACTIONS(504), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), + }, + [214] = { + [sym_array] = STATE(266), + [sym_object] = STATE(266), + [sym_record_id_value] = STATE(274), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_fetch] = ACTIONS(142), + [sym_keyword_limit] = ACTIONS(142), + [sym_keyword_order] = ACTIONS(142), + [sym_keyword_split] = ACTIONS(142), + [sym_keyword_group] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(347), + [sym_record_id_ident] = ACTIONS(347), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [215] = { - [aux_sym_duration_repeat1] = STATE(215), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(103), - [sym_keyword_explain] = ACTIONS(103), - [sym_keyword_parallel] = ACTIONS(103), - [sym_keyword_timeout] = ACTIONS(103), - [sym_keyword_fetch] = ACTIONS(103), - [sym_keyword_limit] = ACTIONS(103), - [sym_keyword_order] = ACTIONS(103), - [sym_keyword_with] = ACTIONS(103), - [sym_keyword_where] = ACTIONS(103), - [sym_keyword_split] = ACTIONS(103), - [sym_keyword_group] = ACTIONS(103), - [sym_keyword_and] = ACTIONS(103), - [sym_keyword_or] = ACTIONS(105), - [sym_keyword_is] = ACTIONS(103), - [sym_keyword_not] = ACTIONS(105), - [sym_keyword_contains] = ACTIONS(103), - [sym_keyword_contains_not] = ACTIONS(103), - [sym_keyword_contains_all] = ACTIONS(103), - [sym_keyword_contains_any] = ACTIONS(103), - [sym_keyword_contains_none] = ACTIONS(103), - [sym_keyword_inside] = ACTIONS(103), - [sym_keyword_in] = ACTIONS(105), - [sym_keyword_not_inside] = ACTIONS(103), - [sym_keyword_all_inside] = ACTIONS(103), - [sym_keyword_any_inside] = ACTIONS(103), - [sym_keyword_none_inside] = ACTIONS(103), - [sym_keyword_outside] = ACTIONS(103), - [sym_keyword_intersects] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_DASH_GT] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(105), - [anon_sym_LT_DASH_GT] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_EQ] = ACTIONS(105), - [sym_duration_part] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_AT] = ACTIONS(105), - [anon_sym_LT_PIPE] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_PIPE_PIPE] = ACTIONS(103), - [anon_sym_QMARK_QMARK] = ACTIONS(103), - [anon_sym_QMARK_COLON] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_QMARK_EQ] = ACTIONS(103), - [anon_sym_STAR_EQ] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_STAR_TILDE] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_PLUS_EQ] = ACTIONS(103), - [anon_sym_DASH_EQ] = ACTIONS(103), - [anon_sym_u00d7] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(105), - [anon_sym_u00f7] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_u220b] = ACTIONS(103), - [anon_sym_u220c] = ACTIONS(103), - [anon_sym_u2287] = ACTIONS(103), - [anon_sym_u2283] = ACTIONS(103), - [anon_sym_u2285] = ACTIONS(103), - [anon_sym_u2208] = ACTIONS(103), - [anon_sym_u2209] = ACTIONS(103), - [anon_sym_u2286] = ACTIONS(103), - [anon_sym_u2282] = ACTIONS(103), - [anon_sym_u2284] = ACTIONS(103), - [anon_sym_AT_AT] = ACTIONS(103), + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_value] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_flexible] = ACTIONS(202), + [sym_keyword_readonly] = ACTIONS(202), + [sym_keyword_type] = ACTIONS(202), + [sym_keyword_default] = ACTIONS(202), + [sym_keyword_assert] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_for] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [216] = { - [sym_expression] = STATE(1426), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), - [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(509), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_array] = STATE(251), + [sym_object] = STATE(251), + [sym_record_id_value] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_as] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_drop] = ACTIONS(351), + [sym_keyword_schemafull] = ACTIONS(351), + [sym_keyword_schemaless] = ACTIONS(351), + [sym_keyword_changefeed] = ACTIONS(351), + [sym_keyword_type] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_for] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(422), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(424), + [sym_record_id_ident] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, [217] = { - [sym_array] = STATE(300), - [sym_object] = STATE(300), - [sym_record_id_value] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_explain] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_fetch] = ACTIONS(343), - [sym_keyword_limit] = ACTIONS(343), - [sym_keyword_order] = ACTIONS(343), - [sym_keyword_split] = ACTIONS(343), - [sym_keyword_group] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(379), - [sym_record_id_ident] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_array] = STATE(266), + [sym_object] = STATE(266), + [sym_record_id_value] = STATE(289), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_explain] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_fetch] = ACTIONS(351), + [sym_keyword_limit] = ACTIONS(351), + [sym_keyword_order] = ACTIONS(351), + [sym_keyword_split] = ACTIONS(351), + [sym_keyword_group] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(347), + [sym_record_id_ident] = ACTIONS(347), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, [218] = { - [sym_expression] = STATE(1426), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1341), - [sym_value] = STATE(591), - [sym_function_call] = STATE(93), - [sym_base_value] = STATE(159), - [sym_binary_expression] = STATE(93), - [sym_path] = STATE(93), - [sym_graph_path] = STATE(158), - [sym_number] = STATE(61), - [sym_identifier] = STATE(61), - [sym_array] = STATE(61), - [sym_object] = STATE(61), - [sym_object_key] = STATE(1839), - [sym_record_id] = STATE(61), - [sym_sub_query] = STATE(61), - [sym_duration] = STATE(61), - [sym_point] = STATE(61), - [aux_sym_duration_repeat1] = STATE(52), - [ts_builtin_sym_end] = ACTIONS(504), + [sym_statement] = STATE(1395), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1326), + [sym_value] = STATE(147), + [sym_function_call] = STATE(99), + [sym_base_value] = STATE(145), + [sym_binary_expression] = STATE(99), + [sym_path] = STATE(99), + [sym_graph_path] = STATE(144), + [sym_number] = STATE(57), + [sym_identifier] = STATE(57), + [sym_array] = STATE(57), + [sym_object] = STATE(57), + [sym_object_key] = STATE(1822), + [sym_record_id] = STATE(57), + [sym_sub_query] = STATE(57), + [sym_duration] = STATE(57), + [sym_point] = STATE(57), + [aux_sym_duration_repeat1] = STATE(51), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), + [sym_keyword_only] = ACTIONS(508), [sym_keyword_rand] = ACTIONS(7), [sym_keyword_true] = ACTIONS(11), [sym_keyword_false] = ACTIONS(11), @@ -35432,1702 +35457,1638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_part] = ACTIONS(55), }, [219] = { - [aux_sym_duration_repeat1] = STATE(215), + [sym_statement] = STATE(1407), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(125), + [sym_function_call] = STATE(442), + [sym_base_value] = STATE(151), + [sym_binary_expression] = STATE(442), + [sym_path] = STATE(442), + [sym_graph_path] = STATE(150), + [sym_number] = STATE(315), + [sym_identifier] = STATE(315), + [sym_array] = STATE(315), + [sym_object] = STATE(315), + [sym_object_key] = STATE(1781), + [sym_record_id] = STATE(315), + [sym_sub_query] = STATE(315), + [sym_duration] = STATE(315), + [sym_point] = STATE(315), + [aux_sym_duration_repeat1] = STATE(222), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(97), - [sym_keyword_explain] = ACTIONS(97), - [sym_keyword_parallel] = ACTIONS(97), - [sym_keyword_timeout] = ACTIONS(97), - [sym_keyword_fetch] = ACTIONS(97), - [sym_keyword_limit] = ACTIONS(97), - [sym_keyword_order] = ACTIONS(97), - [sym_keyword_with] = ACTIONS(97), - [sym_keyword_where] = ACTIONS(97), - [sym_keyword_split] = ACTIONS(97), - [sym_keyword_group] = ACTIONS(97), - [sym_keyword_and] = ACTIONS(97), - [sym_keyword_or] = ACTIONS(99), - [sym_keyword_is] = ACTIONS(97), - [sym_keyword_not] = ACTIONS(99), - [sym_keyword_contains] = ACTIONS(97), - [sym_keyword_contains_not] = ACTIONS(97), - [sym_keyword_contains_all] = ACTIONS(97), - [sym_keyword_contains_any] = ACTIONS(97), - [sym_keyword_contains_none] = ACTIONS(97), - [sym_keyword_inside] = ACTIONS(97), - [sym_keyword_in] = ACTIONS(99), - [sym_keyword_not_inside] = ACTIONS(97), - [sym_keyword_all_inside] = ACTIONS(97), - [sym_keyword_any_inside] = ACTIONS(97), - [sym_keyword_none_inside] = ACTIONS(97), - [sym_keyword_outside] = ACTIONS(97), - [sym_keyword_intersects] = ACTIONS(97), - [anon_sym_COMMA] = ACTIONS(97), - [anon_sym_DASH_GT] = ACTIONS(97), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_RPAREN] = ACTIONS(97), - [anon_sym_RBRACE] = ACTIONS(97), - [anon_sym_LT_DASH] = ACTIONS(99), - [anon_sym_LT_DASH_GT] = ACTIONS(97), - [anon_sym_STAR] = ACTIONS(99), - [anon_sym_DOT] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_EQ] = ACTIONS(99), - [sym_duration_part] = ACTIONS(511), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_LT_PIPE] = ACTIONS(97), - [anon_sym_AMP_AMP] = ACTIONS(97), - [anon_sym_PIPE_PIPE] = ACTIONS(97), - [anon_sym_QMARK_QMARK] = ACTIONS(97), - [anon_sym_QMARK_COLON] = ACTIONS(97), - [anon_sym_BANG_EQ] = ACTIONS(97), - [anon_sym_EQ_EQ] = ACTIONS(97), - [anon_sym_QMARK_EQ] = ACTIONS(97), - [anon_sym_STAR_EQ] = ACTIONS(97), - [anon_sym_TILDE] = ACTIONS(97), - [anon_sym_BANG_TILDE] = ACTIONS(97), - [anon_sym_STAR_TILDE] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(99), - [anon_sym_PLUS_EQ] = ACTIONS(97), - [anon_sym_DASH_EQ] = ACTIONS(97), - [anon_sym_u00d7] = ACTIONS(97), - [anon_sym_SLASH] = ACTIONS(99), - [anon_sym_u00f7] = ACTIONS(97), - [anon_sym_STAR_STAR] = ACTIONS(97), - [anon_sym_u220b] = ACTIONS(97), - [anon_sym_u220c] = ACTIONS(97), - [anon_sym_u2287] = ACTIONS(97), - [anon_sym_u2283] = ACTIONS(97), - [anon_sym_u2285] = ACTIONS(97), - [anon_sym_u2208] = ACTIONS(97), - [anon_sym_u2209] = ACTIONS(97), - [anon_sym_u2286] = ACTIONS(97), - [anon_sym_u2282] = ACTIONS(97), - [anon_sym_u2284] = ACTIONS(97), - [anon_sym_AT_AT] = ACTIONS(97), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_only] = ACTIONS(510), + [sym_keyword_rand] = ACTIONS(512), + [sym_keyword_true] = ACTIONS(514), + [sym_keyword_false] = ACTIONS(514), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(514), + [sym_keyword_null] = ACTIONS(514), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(516), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_LT_DASH] = ACTIONS(385), + [anon_sym_LT_DASH_GT] = ACTIONS(381), + [aux_sym_type_name_token1] = ACTIONS(522), + [sym_string] = ACTIONS(524), + [sym_prefixed_string] = ACTIONS(524), + [sym_int] = ACTIONS(526), + [sym_float] = ACTIONS(526), + [sym_decimal] = ACTIONS(528), + [sym_variable_name] = ACTIONS(524), + [sym_custom_function_name] = ACTIONS(512), + [sym_function_name] = ACTIONS(512), + [sym_duration_part] = ACTIONS(530), }, [220] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(212), + [sym_expression] = STATE(1443), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_value] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_flexible] = ACTIONS(214), - [sym_keyword_readonly] = ACTIONS(214), - [sym_keyword_type] = ACTIONS(214), - [sym_keyword_default] = ACTIONS(214), - [sym_keyword_assert] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [221] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(160), + [sym_array] = STATE(283), + [sym_object] = STATE(283), + [sym_record_id_value] = STATE(342), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_value] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_flexible] = ACTIONS(162), - [sym_keyword_readonly] = ACTIONS(162), - [sym_keyword_type] = ACTIONS(162), - [sym_keyword_default] = ACTIONS(162), - [sym_keyword_assert] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_fetch] = ACTIONS(142), + [sym_keyword_limit] = ACTIONS(142), + [sym_keyword_order] = ACTIONS(142), + [sym_keyword_split] = ACTIONS(142), + [sym_keyword_group] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(379), + [sym_record_id_ident] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [222] = { - [sym_expression] = STATE(1426), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1341), - [sym_value] = STATE(591), - [sym_function_call] = STATE(93), - [sym_base_value] = STATE(159), - [sym_binary_expression] = STATE(93), - [sym_path] = STATE(93), - [sym_graph_path] = STATE(158), - [sym_number] = STATE(61), - [sym_identifier] = STATE(61), - [sym_array] = STATE(61), - [sym_object] = STATE(61), - [sym_object_key] = STATE(1839), - [sym_record_id] = STATE(61), - [sym_sub_query] = STATE(61), - [sym_duration] = STATE(61), - [sym_point] = STATE(61), - [aux_sym_duration_repeat1] = STATE(52), - [ts_builtin_sym_end] = ACTIONS(509), + [aux_sym_duration_repeat1] = STATE(233), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(104), + [sym_keyword_explain] = ACTIONS(104), + [sym_keyword_parallel] = ACTIONS(104), + [sym_keyword_timeout] = ACTIONS(104), + [sym_keyword_fetch] = ACTIONS(104), + [sym_keyword_limit] = ACTIONS(104), + [sym_keyword_order] = ACTIONS(104), + [sym_keyword_with] = ACTIONS(104), + [sym_keyword_where] = ACTIONS(104), + [sym_keyword_split] = ACTIONS(104), + [sym_keyword_group] = ACTIONS(104), + [sym_keyword_and] = ACTIONS(104), + [sym_keyword_or] = ACTIONS(106), + [sym_keyword_is] = ACTIONS(104), + [sym_keyword_not] = ACTIONS(106), + [sym_keyword_contains] = ACTIONS(104), + [sym_keyword_contains_not] = ACTIONS(104), + [sym_keyword_contains_all] = ACTIONS(104), + [sym_keyword_contains_any] = ACTIONS(104), + [sym_keyword_contains_none] = ACTIONS(104), + [sym_keyword_inside] = ACTIONS(104), + [sym_keyword_in] = ACTIONS(106), + [sym_keyword_not_inside] = ACTIONS(104), + [sym_keyword_all_inside] = ACTIONS(104), + [sym_keyword_any_inside] = ACTIONS(104), + [sym_keyword_none_inside] = ACTIONS(104), + [sym_keyword_outside] = ACTIONS(104), + [sym_keyword_intersects] = ACTIONS(104), + [anon_sym_COMMA] = ACTIONS(104), + [anon_sym_DASH_GT] = ACTIONS(104), + [anon_sym_LBRACK] = ACTIONS(104), + [anon_sym_RPAREN] = ACTIONS(104), + [anon_sym_RBRACE] = ACTIONS(104), + [anon_sym_LT_DASH] = ACTIONS(106), + [anon_sym_LT_DASH_GT] = ACTIONS(104), + [anon_sym_STAR] = ACTIONS(106), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LT] = ACTIONS(106), + [anon_sym_GT] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(106), + [sym_duration_part] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(106), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_LT_PIPE] = ACTIONS(104), + [anon_sym_AMP_AMP] = ACTIONS(104), + [anon_sym_PIPE_PIPE] = ACTIONS(104), + [anon_sym_QMARK_QMARK] = ACTIONS(104), + [anon_sym_QMARK_COLON] = ACTIONS(104), + [anon_sym_BANG_EQ] = ACTIONS(104), + [anon_sym_EQ_EQ] = ACTIONS(104), + [anon_sym_QMARK_EQ] = ACTIONS(104), + [anon_sym_STAR_EQ] = ACTIONS(104), + [anon_sym_TILDE] = ACTIONS(104), + [anon_sym_BANG_TILDE] = ACTIONS(104), + [anon_sym_STAR_TILDE] = ACTIONS(104), + [anon_sym_LT_EQ] = ACTIONS(104), + [anon_sym_GT_EQ] = ACTIONS(104), + [anon_sym_PLUS] = ACTIONS(106), + [anon_sym_PLUS_EQ] = ACTIONS(104), + [anon_sym_DASH_EQ] = ACTIONS(104), + [anon_sym_u00d7] = ACTIONS(104), + [anon_sym_SLASH] = ACTIONS(106), + [anon_sym_u00f7] = ACTIONS(104), + [anon_sym_STAR_STAR] = ACTIONS(104), + [anon_sym_u220b] = ACTIONS(104), + [anon_sym_u220c] = ACTIONS(104), + [anon_sym_u2287] = ACTIONS(104), + [anon_sym_u2283] = ACTIONS(104), + [anon_sym_u2285] = ACTIONS(104), + [anon_sym_u2208] = ACTIONS(104), + [anon_sym_u2209] = ACTIONS(104), + [anon_sym_u2286] = ACTIONS(104), + [anon_sym_u2282] = ACTIONS(104), + [anon_sym_u2284] = ACTIONS(104), + [anon_sym_AT_AT] = ACTIONS(104), + }, + [223] = { + [sym_statement] = STATE(1714), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(584), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(7), - [sym_keyword_true] = ACTIONS(11), - [sym_keyword_false] = ACTIONS(11), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(11), - [sym_keyword_null] = ACTIONS(11), - [sym_keyword_define] = ACTIONS(19), - [sym_keyword_live] = ACTIONS(21), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(25), - [sym_keyword_delete] = ACTIONS(27), - [sym_keyword_update] = ACTIONS(29), - [sym_keyword_insert] = ACTIONS(31), - [sym_keyword_relate] = ACTIONS(33), - [sym_keyword_count] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(45), - [anon_sym_LT_DASH_GT] = ACTIONS(37), - [aux_sym_type_name_token1] = ACTIONS(47), - [sym_string] = ACTIONS(49), - [sym_prefixed_string] = ACTIONS(49), - [sym_int] = ACTIONS(51), - [sym_float] = ACTIONS(51), - [sym_decimal] = ACTIONS(53), - [sym_variable_name] = ACTIONS(49), - [sym_custom_function_name] = ACTIONS(7), - [sym_function_name] = ACTIONS(7), - [sym_duration_part] = ACTIONS(55), - }, - [223] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_value] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_flexible] = ACTIONS(343), - [sym_keyword_readonly] = ACTIONS(343), - [sym_keyword_type] = ACTIONS(343), - [sym_keyword_default] = ACTIONS(343), - [sym_keyword_assert] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [224] = { - [sym_array] = STATE(300), - [sym_object] = STATE(300), - [sym_record_id_value] = STATE(346), - [ts_builtin_sym_end] = ACTIONS(212), + [sym_expression] = STATE(1812), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_fetch] = ACTIONS(214), - [sym_keyword_limit] = ACTIONS(214), - [sym_keyword_order] = ACTIONS(214), - [sym_keyword_split] = ACTIONS(214), - [sym_keyword_group] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(379), - [sym_record_id_ident] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(536), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [225] = { - [sym_array] = STATE(300), - [sym_object] = STATE(300), - [sym_record_id_value] = STATE(354), - [ts_builtin_sym_end] = ACTIONS(160), + [sym_statement] = STATE(1702), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(551), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_fetch] = ACTIONS(162), - [sym_keyword_limit] = ACTIONS(162), - [sym_keyword_order] = ACTIONS(162), - [sym_keyword_split] = ACTIONS(162), - [sym_keyword_group] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(379), - [sym_record_id_ident] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(538), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [226] = { + [sym_expression] = STATE(1706), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(132), - [sym_keyword_explain] = ACTIONS(132), - [sym_keyword_parallel] = ACTIONS(132), - [sym_keyword_timeout] = ACTIONS(132), - [sym_keyword_fetch] = ACTIONS(132), - [sym_keyword_limit] = ACTIONS(132), - [sym_keyword_order] = ACTIONS(132), - [sym_keyword_with] = ACTIONS(132), - [sym_keyword_where] = ACTIONS(132), - [sym_keyword_split] = ACTIONS(132), - [sym_keyword_group] = ACTIONS(132), - [sym_keyword_and] = ACTIONS(132), - [sym_keyword_or] = ACTIONS(134), - [sym_keyword_is] = ACTIONS(132), - [sym_keyword_not] = ACTIONS(134), - [sym_keyword_contains] = ACTIONS(132), - [sym_keyword_contains_not] = ACTIONS(132), - [sym_keyword_contains_all] = ACTIONS(132), - [sym_keyword_contains_any] = ACTIONS(132), - [sym_keyword_contains_none] = ACTIONS(132), - [sym_keyword_inside] = ACTIONS(132), - [sym_keyword_in] = ACTIONS(134), - [sym_keyword_not_inside] = ACTIONS(132), - [sym_keyword_all_inside] = ACTIONS(132), - [sym_keyword_any_inside] = ACTIONS(132), - [sym_keyword_none_inside] = ACTIONS(132), - [sym_keyword_outside] = ACTIONS(132), - [sym_keyword_intersects] = ACTIONS(132), - [anon_sym_COMMA] = ACTIONS(132), - [anon_sym_DASH_GT] = ACTIONS(132), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_RPAREN] = ACTIONS(132), - [anon_sym_RBRACE] = ACTIONS(132), - [anon_sym_LT_DASH] = ACTIONS(134), - [anon_sym_LT_DASH_GT] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(134), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_LT] = ACTIONS(134), - [anon_sym_GT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(132), - [anon_sym_EQ] = ACTIONS(134), - [anon_sym_DASH] = ACTIONS(134), - [anon_sym_AT] = ACTIONS(134), - [anon_sym_LT_PIPE] = ACTIONS(132), - [anon_sym_AMP_AMP] = ACTIONS(132), - [anon_sym_PIPE_PIPE] = ACTIONS(132), - [anon_sym_QMARK_QMARK] = ACTIONS(132), - [anon_sym_QMARK_COLON] = ACTIONS(132), - [anon_sym_BANG_EQ] = ACTIONS(132), - [anon_sym_EQ_EQ] = ACTIONS(132), - [anon_sym_QMARK_EQ] = ACTIONS(132), - [anon_sym_STAR_EQ] = ACTIONS(132), - [anon_sym_TILDE] = ACTIONS(132), - [anon_sym_BANG_TILDE] = ACTIONS(132), - [anon_sym_STAR_TILDE] = ACTIONS(132), - [anon_sym_LT_EQ] = ACTIONS(132), - [anon_sym_GT_EQ] = ACTIONS(132), - [anon_sym_PLUS] = ACTIONS(134), - [anon_sym_PLUS_EQ] = ACTIONS(132), - [anon_sym_DASH_EQ] = ACTIONS(132), - [anon_sym_u00d7] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(134), - [anon_sym_u00f7] = ACTIONS(132), - [anon_sym_STAR_STAR] = ACTIONS(132), - [anon_sym_u220b] = ACTIONS(132), - [anon_sym_u220c] = ACTIONS(132), - [anon_sym_u2287] = ACTIONS(132), - [anon_sym_u2283] = ACTIONS(132), - [anon_sym_u2285] = ACTIONS(132), - [anon_sym_u2208] = ACTIONS(132), - [anon_sym_u2209] = ACTIONS(132), - [anon_sym_u2286] = ACTIONS(132), - [anon_sym_u2282] = ACTIONS(132), - [anon_sym_u2284] = ACTIONS(132), - [anon_sym_AT_AT] = ACTIONS(132), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(540), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [227] = { - [sym_statement] = STATE(1413), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(392), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1766), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [sym_statement] = STATE(1742), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(571), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_only] = ACTIONS(513), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(120), + [sym_statement] = STATE(1754), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(562), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(120), - [sym_keyword_as] = ACTIONS(120), - [sym_keyword_where] = ACTIONS(120), - [sym_keyword_group] = ACTIONS(120), - [sym_keyword_and] = ACTIONS(120), - [sym_keyword_or] = ACTIONS(120), - [sym_keyword_is] = ACTIONS(120), - [sym_keyword_not] = ACTIONS(122), - [sym_keyword_contains] = ACTIONS(120), - [sym_keyword_contains_not] = ACTIONS(120), - [sym_keyword_contains_all] = ACTIONS(120), - [sym_keyword_contains_any] = ACTIONS(120), - [sym_keyword_contains_none] = ACTIONS(120), - [sym_keyword_inside] = ACTIONS(120), - [sym_keyword_in] = ACTIONS(122), - [sym_keyword_not_inside] = ACTIONS(120), - [sym_keyword_all_inside] = ACTIONS(120), - [sym_keyword_any_inside] = ACTIONS(120), - [sym_keyword_none_inside] = ACTIONS(120), - [sym_keyword_outside] = ACTIONS(120), - [sym_keyword_intersects] = ACTIONS(120), - [sym_keyword_drop] = ACTIONS(120), - [sym_keyword_schemafull] = ACTIONS(120), - [sym_keyword_schemaless] = ACTIONS(120), - [sym_keyword_changefeed] = ACTIONS(120), - [sym_keyword_type] = ACTIONS(120), - [sym_keyword_permissions] = ACTIONS(120), - [sym_keyword_for] = ACTIONS(120), - [sym_keyword_comment] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_DASH_GT] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(120), - [anon_sym_LT_DASH] = ACTIONS(122), - [anon_sym_LT_DASH_GT] = ACTIONS(120), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_AT] = ACTIONS(122), - [anon_sym_LT_PIPE] = ACTIONS(120), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_QMARK_COLON] = ACTIONS(120), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_QMARK_EQ] = ACTIONS(120), - [anon_sym_STAR_EQ] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(120), - [anon_sym_BANG_TILDE] = ACTIONS(120), - [anon_sym_STAR_TILDE] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(120), - [anon_sym_GT_EQ] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_PLUS_EQ] = ACTIONS(120), - [anon_sym_DASH_EQ] = ACTIONS(120), - [anon_sym_u00d7] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_u00f7] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_u220b] = ACTIONS(120), - [anon_sym_u220c] = ACTIONS(120), - [anon_sym_u2287] = ACTIONS(120), - [anon_sym_u2283] = ACTIONS(120), - [anon_sym_u2285] = ACTIONS(120), - [anon_sym_u2208] = ACTIONS(120), - [anon_sym_u2209] = ACTIONS(120), - [anon_sym_u2286] = ACTIONS(120), - [anon_sym_u2282] = ACTIONS(120), - [anon_sym_u2284] = ACTIONS(120), - [anon_sym_AT_AT] = ACTIONS(120), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(544), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [229] = { - [sym_expression] = STATE(1812), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [sym_expression] = STATE(1798), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(515), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(546), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [230] = { - [ts_builtin_sym_end] = ACTIONS(124), + [sym_expression] = STATE(1725), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(124), - [sym_keyword_as] = ACTIONS(124), - [sym_keyword_where] = ACTIONS(124), - [sym_keyword_group] = ACTIONS(124), - [sym_keyword_and] = ACTIONS(124), - [sym_keyword_or] = ACTIONS(124), - [sym_keyword_is] = ACTIONS(124), - [sym_keyword_not] = ACTIONS(126), - [sym_keyword_contains] = ACTIONS(124), - [sym_keyword_contains_not] = ACTIONS(124), - [sym_keyword_contains_all] = ACTIONS(124), - [sym_keyword_contains_any] = ACTIONS(124), - [sym_keyword_contains_none] = ACTIONS(124), - [sym_keyword_inside] = ACTIONS(124), - [sym_keyword_in] = ACTIONS(126), - [sym_keyword_not_inside] = ACTIONS(124), - [sym_keyword_all_inside] = ACTIONS(124), - [sym_keyword_any_inside] = ACTIONS(124), - [sym_keyword_none_inside] = ACTIONS(124), - [sym_keyword_outside] = ACTIONS(124), - [sym_keyword_intersects] = ACTIONS(124), - [sym_keyword_drop] = ACTIONS(124), - [sym_keyword_schemafull] = ACTIONS(124), - [sym_keyword_schemaless] = ACTIONS(124), - [sym_keyword_changefeed] = ACTIONS(124), - [sym_keyword_type] = ACTIONS(124), - [sym_keyword_permissions] = ACTIONS(124), - [sym_keyword_for] = ACTIONS(124), - [sym_keyword_comment] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_DASH_GT] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(124), - [anon_sym_LT_DASH] = ACTIONS(126), - [anon_sym_LT_DASH_GT] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_LT] = ACTIONS(126), - [anon_sym_GT] = ACTIONS(126), - [anon_sym_DOT_DOT] = ACTIONS(124), - [anon_sym_EQ] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), - [anon_sym_AT] = ACTIONS(126), - [anon_sym_LT_PIPE] = ACTIONS(124), - [anon_sym_AMP_AMP] = ACTIONS(124), - [anon_sym_PIPE_PIPE] = ACTIONS(124), - [anon_sym_QMARK_QMARK] = ACTIONS(124), - [anon_sym_QMARK_COLON] = ACTIONS(124), - [anon_sym_BANG_EQ] = ACTIONS(124), - [anon_sym_EQ_EQ] = ACTIONS(124), - [anon_sym_QMARK_EQ] = ACTIONS(124), - [anon_sym_STAR_EQ] = ACTIONS(124), - [anon_sym_TILDE] = ACTIONS(124), - [anon_sym_BANG_TILDE] = ACTIONS(124), - [anon_sym_STAR_TILDE] = ACTIONS(124), - [anon_sym_LT_EQ] = ACTIONS(124), - [anon_sym_GT_EQ] = ACTIONS(124), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_PLUS_EQ] = ACTIONS(124), - [anon_sym_DASH_EQ] = ACTIONS(124), - [anon_sym_u00d7] = ACTIONS(124), - [anon_sym_SLASH] = ACTIONS(126), - [anon_sym_u00f7] = ACTIONS(124), - [anon_sym_STAR_STAR] = ACTIONS(124), - [anon_sym_u220b] = ACTIONS(124), - [anon_sym_u220c] = ACTIONS(124), - [anon_sym_u2287] = ACTIONS(124), - [anon_sym_u2283] = ACTIONS(124), - [anon_sym_u2285] = ACTIONS(124), - [anon_sym_u2208] = ACTIONS(124), - [anon_sym_u2209] = ACTIONS(124), - [anon_sym_u2286] = ACTIONS(124), - [anon_sym_u2282] = ACTIONS(124), - [anon_sym_u2284] = ACTIONS(124), - [anon_sym_AT_AT] = ACTIONS(124), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(548), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [231] = { - [ts_builtin_sym_end] = ACTIONS(132), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(132), - [sym_keyword_as] = ACTIONS(132), - [sym_keyword_where] = ACTIONS(132), - [sym_keyword_group] = ACTIONS(132), - [sym_keyword_and] = ACTIONS(132), - [sym_keyword_or] = ACTIONS(132), - [sym_keyword_is] = ACTIONS(132), - [sym_keyword_not] = ACTIONS(134), - [sym_keyword_contains] = ACTIONS(132), - [sym_keyword_contains_not] = ACTIONS(132), - [sym_keyword_contains_all] = ACTIONS(132), - [sym_keyword_contains_any] = ACTIONS(132), - [sym_keyword_contains_none] = ACTIONS(132), - [sym_keyword_inside] = ACTIONS(132), - [sym_keyword_in] = ACTIONS(134), - [sym_keyword_not_inside] = ACTIONS(132), - [sym_keyword_all_inside] = ACTIONS(132), - [sym_keyword_any_inside] = ACTIONS(132), - [sym_keyword_none_inside] = ACTIONS(132), - [sym_keyword_outside] = ACTIONS(132), - [sym_keyword_intersects] = ACTIONS(132), - [sym_keyword_drop] = ACTIONS(132), - [sym_keyword_schemafull] = ACTIONS(132), - [sym_keyword_schemaless] = ACTIONS(132), - [sym_keyword_changefeed] = ACTIONS(132), - [sym_keyword_type] = ACTIONS(132), - [sym_keyword_permissions] = ACTIONS(132), - [sym_keyword_for] = ACTIONS(132), - [sym_keyword_comment] = ACTIONS(132), - [anon_sym_COMMA] = ACTIONS(132), - [anon_sym_DASH_GT] = ACTIONS(132), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_LT_DASH] = ACTIONS(134), - [anon_sym_LT_DASH_GT] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(134), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_LT] = ACTIONS(134), - [anon_sym_GT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(132), - [anon_sym_EQ] = ACTIONS(134), - [anon_sym_DASH] = ACTIONS(134), - [anon_sym_AT] = ACTIONS(134), - [anon_sym_LT_PIPE] = ACTIONS(132), - [anon_sym_AMP_AMP] = ACTIONS(132), - [anon_sym_PIPE_PIPE] = ACTIONS(132), - [anon_sym_QMARK_QMARK] = ACTIONS(132), - [anon_sym_QMARK_COLON] = ACTIONS(132), - [anon_sym_BANG_EQ] = ACTIONS(132), - [anon_sym_EQ_EQ] = ACTIONS(132), - [anon_sym_QMARK_EQ] = ACTIONS(132), - [anon_sym_STAR_EQ] = ACTIONS(132), - [anon_sym_TILDE] = ACTIONS(132), - [anon_sym_BANG_TILDE] = ACTIONS(132), - [anon_sym_STAR_TILDE] = ACTIONS(132), - [anon_sym_LT_EQ] = ACTIONS(132), - [anon_sym_GT_EQ] = ACTIONS(132), - [anon_sym_PLUS] = ACTIONS(134), - [anon_sym_PLUS_EQ] = ACTIONS(132), - [anon_sym_DASH_EQ] = ACTIONS(132), - [anon_sym_u00d7] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(134), - [anon_sym_u00f7] = ACTIONS(132), - [anon_sym_STAR_STAR] = ACTIONS(132), - [anon_sym_u220b] = ACTIONS(132), - [anon_sym_u220c] = ACTIONS(132), - [anon_sym_u2287] = ACTIONS(132), - [anon_sym_u2283] = ACTIONS(132), - [anon_sym_u2285] = ACTIONS(132), - [anon_sym_u2208] = ACTIONS(132), - [anon_sym_u2209] = ACTIONS(132), - [anon_sym_u2286] = ACTIONS(132), - [anon_sym_u2282] = ACTIONS(132), - [anon_sym_u2284] = ACTIONS(132), - [anon_sym_AT_AT] = ACTIONS(132), + [sym_array] = STATE(283), + [sym_object] = STATE(283), + [sym_record_id_value] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_explain] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_fetch] = ACTIONS(351), + [sym_keyword_limit] = ACTIONS(351), + [sym_keyword_order] = ACTIONS(351), + [sym_keyword_split] = ACTIONS(351), + [sym_keyword_group] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(379), + [sym_record_id_ident] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(136), + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_value] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_flexible] = ACTIONS(351), + [sym_keyword_readonly] = ACTIONS(351), + [sym_keyword_type] = ACTIONS(351), + [sym_keyword_default] = ACTIONS(351), + [sym_keyword_assert] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [233] = { + [aux_sym_duration_repeat1] = STATE(233), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(136), - [sym_keyword_as] = ACTIONS(136), - [sym_keyword_where] = ACTIONS(136), - [sym_keyword_group] = ACTIONS(136), - [sym_keyword_and] = ACTIONS(136), - [sym_keyword_or] = ACTIONS(136), - [sym_keyword_is] = ACTIONS(136), - [sym_keyword_not] = ACTIONS(138), - [sym_keyword_contains] = ACTIONS(136), - [sym_keyword_contains_not] = ACTIONS(136), - [sym_keyword_contains_all] = ACTIONS(136), - [sym_keyword_contains_any] = ACTIONS(136), - [sym_keyword_contains_none] = ACTIONS(136), - [sym_keyword_inside] = ACTIONS(136), - [sym_keyword_in] = ACTIONS(138), - [sym_keyword_not_inside] = ACTIONS(136), - [sym_keyword_all_inside] = ACTIONS(136), - [sym_keyword_any_inside] = ACTIONS(136), - [sym_keyword_none_inside] = ACTIONS(136), - [sym_keyword_outside] = ACTIONS(136), - [sym_keyword_intersects] = ACTIONS(136), - [sym_keyword_drop] = ACTIONS(136), - [sym_keyword_schemafull] = ACTIONS(136), - [sym_keyword_schemaless] = ACTIONS(136), - [sym_keyword_changefeed] = ACTIONS(136), - [sym_keyword_type] = ACTIONS(136), - [sym_keyword_permissions] = ACTIONS(136), - [sym_keyword_for] = ACTIONS(136), - [sym_keyword_comment] = ACTIONS(136), - [anon_sym_COMMA] = ACTIONS(136), - [anon_sym_DASH_GT] = ACTIONS(136), - [anon_sym_LBRACK] = ACTIONS(136), - [anon_sym_LT_DASH] = ACTIONS(138), - [anon_sym_LT_DASH_GT] = ACTIONS(136), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_DOT] = ACTIONS(138), - [anon_sym_LT] = ACTIONS(138), - [anon_sym_GT] = ACTIONS(138), - [anon_sym_DOT_DOT] = ACTIONS(136), - [anon_sym_EQ] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_LT_PIPE] = ACTIONS(136), - [anon_sym_AMP_AMP] = ACTIONS(136), - [anon_sym_PIPE_PIPE] = ACTIONS(136), - [anon_sym_QMARK_QMARK] = ACTIONS(136), - [anon_sym_QMARK_COLON] = ACTIONS(136), - [anon_sym_BANG_EQ] = ACTIONS(136), - [anon_sym_EQ_EQ] = ACTIONS(136), - [anon_sym_QMARK_EQ] = ACTIONS(136), - [anon_sym_STAR_EQ] = ACTIONS(136), - [anon_sym_TILDE] = ACTIONS(136), - [anon_sym_BANG_TILDE] = ACTIONS(136), - [anon_sym_STAR_TILDE] = ACTIONS(136), - [anon_sym_LT_EQ] = ACTIONS(136), - [anon_sym_GT_EQ] = ACTIONS(136), - [anon_sym_PLUS] = ACTIONS(138), - [anon_sym_PLUS_EQ] = ACTIONS(136), - [anon_sym_DASH_EQ] = ACTIONS(136), - [anon_sym_u00d7] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(138), - [anon_sym_u00f7] = ACTIONS(136), - [anon_sym_STAR_STAR] = ACTIONS(136), - [anon_sym_u220b] = ACTIONS(136), - [anon_sym_u220c] = ACTIONS(136), - [anon_sym_u2287] = ACTIONS(136), - [anon_sym_u2283] = ACTIONS(136), - [anon_sym_u2285] = ACTIONS(136), - [anon_sym_u2208] = ACTIONS(136), - [anon_sym_u2209] = ACTIONS(136), - [anon_sym_u2286] = ACTIONS(136), - [anon_sym_u2282] = ACTIONS(136), - [anon_sym_u2284] = ACTIONS(136), - [anon_sym_AT_AT] = ACTIONS(136), + [sym_semi_colon] = ACTIONS(97), + [sym_keyword_explain] = ACTIONS(97), + [sym_keyword_parallel] = ACTIONS(97), + [sym_keyword_timeout] = ACTIONS(97), + [sym_keyword_fetch] = ACTIONS(97), + [sym_keyword_limit] = ACTIONS(97), + [sym_keyword_order] = ACTIONS(97), + [sym_keyword_with] = ACTIONS(97), + [sym_keyword_where] = ACTIONS(97), + [sym_keyword_split] = ACTIONS(97), + [sym_keyword_group] = ACTIONS(97), + [sym_keyword_and] = ACTIONS(97), + [sym_keyword_or] = ACTIONS(99), + [sym_keyword_is] = ACTIONS(97), + [sym_keyword_not] = ACTIONS(99), + [sym_keyword_contains] = ACTIONS(97), + [sym_keyword_contains_not] = ACTIONS(97), + [sym_keyword_contains_all] = ACTIONS(97), + [sym_keyword_contains_any] = ACTIONS(97), + [sym_keyword_contains_none] = ACTIONS(97), + [sym_keyword_inside] = ACTIONS(97), + [sym_keyword_in] = ACTIONS(99), + [sym_keyword_not_inside] = ACTIONS(97), + [sym_keyword_all_inside] = ACTIONS(97), + [sym_keyword_any_inside] = ACTIONS(97), + [sym_keyword_none_inside] = ACTIONS(97), + [sym_keyword_outside] = ACTIONS(97), + [sym_keyword_intersects] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(97), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_LBRACK] = ACTIONS(97), + [anon_sym_RPAREN] = ACTIONS(97), + [anon_sym_RBRACE] = ACTIONS(97), + [anon_sym_LT_DASH] = ACTIONS(99), + [anon_sym_LT_DASH_GT] = ACTIONS(97), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(97), + [anon_sym_LT] = ACTIONS(99), + [anon_sym_GT] = ACTIONS(99), + [anon_sym_EQ] = ACTIONS(99), + [sym_duration_part] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_LT_PIPE] = ACTIONS(97), + [anon_sym_AMP_AMP] = ACTIONS(97), + [anon_sym_PIPE_PIPE] = ACTIONS(97), + [anon_sym_QMARK_QMARK] = ACTIONS(97), + [anon_sym_QMARK_COLON] = ACTIONS(97), + [anon_sym_BANG_EQ] = ACTIONS(97), + [anon_sym_EQ_EQ] = ACTIONS(97), + [anon_sym_QMARK_EQ] = ACTIONS(97), + [anon_sym_STAR_EQ] = ACTIONS(97), + [anon_sym_TILDE] = ACTIONS(97), + [anon_sym_BANG_TILDE] = ACTIONS(97), + [anon_sym_STAR_TILDE] = ACTIONS(97), + [anon_sym_LT_EQ] = ACTIONS(97), + [anon_sym_GT_EQ] = ACTIONS(97), + [anon_sym_PLUS] = ACTIONS(99), + [anon_sym_PLUS_EQ] = ACTIONS(97), + [anon_sym_DASH_EQ] = ACTIONS(97), + [anon_sym_u00d7] = ACTIONS(97), + [anon_sym_SLASH] = ACTIONS(99), + [anon_sym_u00f7] = ACTIONS(97), + [anon_sym_STAR_STAR] = ACTIONS(97), + [anon_sym_u220b] = ACTIONS(97), + [anon_sym_u220c] = ACTIONS(97), + [anon_sym_u2287] = ACTIONS(97), + [anon_sym_u2283] = ACTIONS(97), + [anon_sym_u2285] = ACTIONS(97), + [anon_sym_u2208] = ACTIONS(97), + [anon_sym_u2209] = ACTIONS(97), + [anon_sym_u2286] = ACTIONS(97), + [anon_sym_u2282] = ACTIONS(97), + [anon_sym_u2284] = ACTIONS(97), + [anon_sym_AT_AT] = ACTIONS(97), }, - [233] = { - [sym_expression] = STATE(1696), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [234] = { + [sym_expression] = STATE(1443), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1326), + [sym_value] = STATE(595), + [sym_function_call] = STATE(99), + [sym_base_value] = STATE(145), + [sym_binary_expression] = STATE(99), + [sym_path] = STATE(99), + [sym_graph_path] = STATE(144), + [sym_number] = STATE(57), + [sym_identifier] = STATE(57), + [sym_array] = STATE(57), + [sym_object] = STATE(57), + [sym_object_key] = STATE(1851), + [sym_record_id] = STATE(57), + [sym_sub_query] = STATE(57), + [sym_duration] = STATE(57), + [sym_point] = STATE(57), + [aux_sym_duration_repeat1] = STATE(51), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), + [sym_keyword_rand] = ACTIONS(7), + [sym_keyword_true] = ACTIONS(11), + [sym_keyword_false] = ACTIONS(11), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(11), + [sym_keyword_null] = ACTIONS(11), + [sym_keyword_define] = ACTIONS(19), + [sym_keyword_live] = ACTIONS(21), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(517), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), - }, - [234] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_rand] = ACTIONS(192), - [sym_keyword_collate] = ACTIONS(192), - [sym_keyword_numeric] = ACTIONS(192), - [sym_keyword_asc] = ACTIONS(192), - [sym_keyword_desc] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(519), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_keyword_create] = ACTIONS(25), + [sym_keyword_delete] = ACTIONS(27), + [sym_keyword_update] = ACTIONS(29), + [sym_keyword_insert] = ACTIONS(31), + [sym_keyword_relate] = ACTIONS(33), + [sym_keyword_count] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(45), + [anon_sym_LT_DASH_GT] = ACTIONS(37), + [aux_sym_type_name_token1] = ACTIONS(47), + [sym_string] = ACTIONS(49), + [sym_prefixed_string] = ACTIONS(49), + [sym_int] = ACTIONS(51), + [sym_float] = ACTIONS(51), + [sym_decimal] = ACTIONS(53), + [sym_variable_name] = ACTIONS(49), + [sym_custom_function_name] = ACTIONS(7), + [sym_function_name] = ACTIONS(7), + [sym_duration_part] = ACTIONS(55), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(128), + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(200), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(128), - [sym_keyword_as] = ACTIONS(128), - [sym_keyword_where] = ACTIONS(128), - [sym_keyword_group] = ACTIONS(128), - [sym_keyword_and] = ACTIONS(128), - [sym_keyword_or] = ACTIONS(128), - [sym_keyword_is] = ACTIONS(128), - [sym_keyword_not] = ACTIONS(130), - [sym_keyword_contains] = ACTIONS(128), - [sym_keyword_contains_not] = ACTIONS(128), - [sym_keyword_contains_all] = ACTIONS(128), - [sym_keyword_contains_any] = ACTIONS(128), - [sym_keyword_contains_none] = ACTIONS(128), - [sym_keyword_inside] = ACTIONS(128), - [sym_keyword_in] = ACTIONS(130), - [sym_keyword_not_inside] = ACTIONS(128), - [sym_keyword_all_inside] = ACTIONS(128), - [sym_keyword_any_inside] = ACTIONS(128), - [sym_keyword_none_inside] = ACTIONS(128), - [sym_keyword_outside] = ACTIONS(128), - [sym_keyword_intersects] = ACTIONS(128), - [sym_keyword_drop] = ACTIONS(128), - [sym_keyword_schemafull] = ACTIONS(128), - [sym_keyword_schemaless] = ACTIONS(128), - [sym_keyword_changefeed] = ACTIONS(128), - [sym_keyword_type] = ACTIONS(128), - [sym_keyword_permissions] = ACTIONS(128), - [sym_keyword_for] = ACTIONS(128), - [sym_keyword_comment] = ACTIONS(128), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_DASH_GT] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_LT_DASH] = ACTIONS(130), - [anon_sym_LT_DASH_GT] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(130), - [anon_sym_LT] = ACTIONS(130), - [anon_sym_GT] = ACTIONS(130), - [anon_sym_DOT_DOT] = ACTIONS(128), - [anon_sym_EQ] = ACTIONS(130), - [anon_sym_DASH] = ACTIONS(130), - [anon_sym_AT] = ACTIONS(130), - [anon_sym_LT_PIPE] = ACTIONS(128), - [anon_sym_AMP_AMP] = ACTIONS(128), - [anon_sym_PIPE_PIPE] = ACTIONS(128), - [anon_sym_QMARK_QMARK] = ACTIONS(128), - [anon_sym_QMARK_COLON] = ACTIONS(128), - [anon_sym_BANG_EQ] = ACTIONS(128), - [anon_sym_EQ_EQ] = ACTIONS(128), - [anon_sym_QMARK_EQ] = ACTIONS(128), - [anon_sym_STAR_EQ] = ACTIONS(128), - [anon_sym_TILDE] = ACTIONS(128), - [anon_sym_BANG_TILDE] = ACTIONS(128), - [anon_sym_STAR_TILDE] = ACTIONS(128), - [anon_sym_LT_EQ] = ACTIONS(128), - [anon_sym_GT_EQ] = ACTIONS(128), - [anon_sym_PLUS] = ACTIONS(130), - [anon_sym_PLUS_EQ] = ACTIONS(128), - [anon_sym_DASH_EQ] = ACTIONS(128), - [anon_sym_u00d7] = ACTIONS(128), - [anon_sym_SLASH] = ACTIONS(130), - [anon_sym_u00f7] = ACTIONS(128), - [anon_sym_STAR_STAR] = ACTIONS(128), - [anon_sym_u220b] = ACTIONS(128), - [anon_sym_u220c] = ACTIONS(128), - [anon_sym_u2287] = ACTIONS(128), - [anon_sym_u2283] = ACTIONS(128), - [anon_sym_u2285] = ACTIONS(128), - [anon_sym_u2208] = ACTIONS(128), - [anon_sym_u2209] = ACTIONS(128), - [anon_sym_u2286] = ACTIONS(128), - [anon_sym_u2282] = ACTIONS(128), - [anon_sym_u2284] = ACTIONS(128), - [anon_sym_AT_AT] = ACTIONS(128), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_value] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_flexible] = ACTIONS(202), + [sym_keyword_readonly] = ACTIONS(202), + [sym_keyword_type] = ACTIONS(202), + [sym_keyword_default] = ACTIONS(202), + [sym_keyword_assert] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [236] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(57), - [sym_keyword_explain] = ACTIONS(57), - [sym_keyword_parallel] = ACTIONS(57), - [sym_keyword_timeout] = ACTIONS(57), - [sym_keyword_fetch] = ACTIONS(57), - [sym_keyword_limit] = ACTIONS(57), - [sym_keyword_order] = ACTIONS(57), - [sym_keyword_with] = ACTIONS(57), - [sym_keyword_where] = ACTIONS(57), - [sym_keyword_split] = ACTIONS(57), - [sym_keyword_group] = ACTIONS(57), - [sym_keyword_and] = ACTIONS(57), - [sym_keyword_or] = ACTIONS(59), - [sym_keyword_is] = ACTIONS(57), - [sym_keyword_not] = ACTIONS(59), - [sym_keyword_contains] = ACTIONS(57), - [sym_keyword_contains_not] = ACTIONS(57), - [sym_keyword_contains_all] = ACTIONS(57), - [sym_keyword_contains_any] = ACTIONS(57), - [sym_keyword_contains_none] = ACTIONS(57), - [sym_keyword_inside] = ACTIONS(57), - [sym_keyword_in] = ACTIONS(59), - [sym_keyword_not_inside] = ACTIONS(57), - [sym_keyword_all_inside] = ACTIONS(57), - [sym_keyword_any_inside] = ACTIONS(57), - [sym_keyword_none_inside] = ACTIONS(57), - [sym_keyword_outside] = ACTIONS(57), - [sym_keyword_intersects] = ACTIONS(57), - [anon_sym_COMMA] = ACTIONS(57), - [anon_sym_DASH_GT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(57), - [anon_sym_COLON] = ACTIONS(114), - [anon_sym_RBRACE] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [anon_sym_LT_DASH_GT] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(59), - [anon_sym_LT_PIPE] = ACTIONS(57), - [anon_sym_AMP_AMP] = ACTIONS(57), - [anon_sym_PIPE_PIPE] = ACTIONS(57), - [anon_sym_QMARK_QMARK] = ACTIONS(57), - [anon_sym_QMARK_COLON] = ACTIONS(57), - [anon_sym_BANG_EQ] = ACTIONS(57), - [anon_sym_EQ_EQ] = ACTIONS(57), - [anon_sym_QMARK_EQ] = ACTIONS(57), - [anon_sym_STAR_EQ] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_BANG_TILDE] = ACTIONS(57), - [anon_sym_STAR_TILDE] = ACTIONS(57), - [anon_sym_LT_EQ] = ACTIONS(57), - [anon_sym_GT_EQ] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_PLUS_EQ] = ACTIONS(57), - [anon_sym_DASH_EQ] = ACTIONS(57), - [anon_sym_u00d7] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_u00f7] = ACTIONS(57), - [anon_sym_STAR_STAR] = ACTIONS(57), - [anon_sym_u220b] = ACTIONS(57), - [anon_sym_u220c] = ACTIONS(57), - [anon_sym_u2287] = ACTIONS(57), - [anon_sym_u2283] = ACTIONS(57), - [anon_sym_u2285] = ACTIONS(57), - [anon_sym_u2208] = ACTIONS(57), - [anon_sym_u2209] = ACTIONS(57), - [anon_sym_u2286] = ACTIONS(57), - [anon_sym_u2282] = ACTIONS(57), - [anon_sym_u2284] = ACTIONS(57), - [anon_sym_AT_AT] = ACTIONS(57), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_value] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_flexible] = ACTIONS(142), + [sym_keyword_readonly] = ACTIONS(142), + [sym_keyword_type] = ACTIONS(142), + [sym_keyword_default] = ACTIONS(142), + [sym_keyword_assert] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(57), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(57), - [sym_keyword_as] = ACTIONS(57), - [sym_keyword_where] = ACTIONS(57), - [sym_keyword_group] = ACTIONS(57), - [sym_keyword_and] = ACTIONS(57), - [sym_keyword_or] = ACTIONS(57), - [sym_keyword_is] = ACTIONS(57), - [sym_keyword_not] = ACTIONS(59), - [sym_keyword_contains] = ACTIONS(57), - [sym_keyword_contains_not] = ACTIONS(57), - [sym_keyword_contains_all] = ACTIONS(57), - [sym_keyword_contains_any] = ACTIONS(57), - [sym_keyword_contains_none] = ACTIONS(57), - [sym_keyword_inside] = ACTIONS(57), - [sym_keyword_in] = ACTIONS(59), - [sym_keyword_not_inside] = ACTIONS(57), - [sym_keyword_all_inside] = ACTIONS(57), - [sym_keyword_any_inside] = ACTIONS(57), - [sym_keyword_none_inside] = ACTIONS(57), - [sym_keyword_outside] = ACTIONS(57), - [sym_keyword_intersects] = ACTIONS(57), - [sym_keyword_drop] = ACTIONS(57), - [sym_keyword_schemafull] = ACTIONS(57), - [sym_keyword_schemaless] = ACTIONS(57), - [sym_keyword_changefeed] = ACTIONS(57), - [sym_keyword_type] = ACTIONS(57), - [sym_keyword_permissions] = ACTIONS(57), - [sym_keyword_for] = ACTIONS(57), - [sym_keyword_comment] = ACTIONS(57), - [anon_sym_COMMA] = ACTIONS(57), - [anon_sym_DASH_GT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_COLON] = ACTIONS(114), - [anon_sym_LT_DASH] = ACTIONS(59), - [anon_sym_LT_DASH_GT] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(59), - [anon_sym_LT_PIPE] = ACTIONS(57), - [anon_sym_AMP_AMP] = ACTIONS(57), - [anon_sym_PIPE_PIPE] = ACTIONS(57), - [anon_sym_QMARK_QMARK] = ACTIONS(57), - [anon_sym_QMARK_COLON] = ACTIONS(57), - [anon_sym_BANG_EQ] = ACTIONS(57), - [anon_sym_EQ_EQ] = ACTIONS(57), - [anon_sym_QMARK_EQ] = ACTIONS(57), - [anon_sym_STAR_EQ] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_BANG_TILDE] = ACTIONS(57), - [anon_sym_STAR_TILDE] = ACTIONS(57), - [anon_sym_LT_EQ] = ACTIONS(57), - [anon_sym_GT_EQ] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_PLUS_EQ] = ACTIONS(57), - [anon_sym_DASH_EQ] = ACTIONS(57), - [anon_sym_u00d7] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_u00f7] = ACTIONS(57), - [anon_sym_STAR_STAR] = ACTIONS(57), - [anon_sym_u220b] = ACTIONS(57), - [anon_sym_u220c] = ACTIONS(57), - [anon_sym_u2287] = ACTIONS(57), - [anon_sym_u2283] = ACTIONS(57), - [anon_sym_u2285] = ACTIONS(57), - [anon_sym_u2208] = ACTIONS(57), - [anon_sym_u2209] = ACTIONS(57), - [anon_sym_u2286] = ACTIONS(57), - [anon_sym_u2282] = ACTIONS(57), - [anon_sym_u2284] = ACTIONS(57), - [anon_sym_AT_AT] = ACTIONS(57), - }, - [238] = { - [sym_expression] = STATE(1707), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [sym_statement] = STATE(1853), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(550), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(521), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, - [239] = { - [sym_expression] = STATE(1827), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [238] = { + [sym_expression] = STATE(1812), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(523), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, - [240] = { - [sym_statement] = STATE(1421), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1341), - [sym_value] = STATE(128), - [sym_function_call] = STATE(479), - [sym_base_value] = STATE(194), - [sym_binary_expression] = STATE(479), - [sym_path] = STATE(479), - [sym_graph_path] = STATE(195), - [sym_number] = STATE(352), - [sym_identifier] = STATE(352), - [sym_array] = STATE(352), - [sym_object] = STATE(352), - [sym_object_key] = STATE(1763), - [sym_record_id] = STATE(352), - [sym_sub_query] = STATE(352), - [sym_duration] = STATE(352), - [sym_point] = STATE(352), - [aux_sym_duration_repeat1] = STATE(257), + [239] = { + [sym_statement] = STATE(1407), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1326), + [sym_value] = STATE(129), + [sym_function_call] = STATE(475), + [sym_base_value] = STATE(171), + [sym_binary_expression] = STATE(475), + [sym_path] = STATE(475), + [sym_graph_path] = STATE(178), + [sym_number] = STATE(348), + [sym_identifier] = STATE(348), + [sym_array] = STATE(348), + [sym_object] = STATE(348), + [sym_object_key] = STATE(1700), + [sym_record_id] = STATE(348), + [sym_sub_query] = STATE(348), + [sym_duration] = STATE(348), + [sym_point] = STATE(348), + [aux_sym_duration_repeat1] = STATE(258), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_only] = ACTIONS(525), - [sym_keyword_rand] = ACTIONS(527), - [sym_keyword_true] = ACTIONS(529), - [sym_keyword_false] = ACTIONS(529), + [sym_keyword_only] = ACTIONS(555), + [sym_keyword_rand] = ACTIONS(557), + [sym_keyword_true] = ACTIONS(559), + [sym_keyword_false] = ACTIONS(559), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(529), - [sym_keyword_null] = ACTIONS(529), + [sym_keyword_none] = ACTIONS(559), + [sym_keyword_null] = ACTIONS(559), [sym_keyword_define] = ACTIONS(19), [sym_keyword_live] = ACTIONS(21), [sym_keyword_remove] = ACTIONS(23), @@ -37136,612 +37097,853 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_update] = ACTIONS(29), [sym_keyword_insert] = ACTIONS(31), [sym_keyword_relate] = ACTIONS(33), - [sym_keyword_count] = ACTIONS(531), + [sym_keyword_count] = ACTIONS(561), [anon_sym_DASH_GT] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), [anon_sym_LBRACE] = ACTIONS(377), [anon_sym_LT_DASH] = ACTIONS(452), [anon_sym_LT_DASH_GT] = ACTIONS(448), - [aux_sym_type_name_token1] = ACTIONS(537), - [sym_string] = ACTIONS(539), - [sym_prefixed_string] = ACTIONS(539), - [sym_int] = ACTIONS(541), - [sym_float] = ACTIONS(541), - [sym_decimal] = ACTIONS(543), - [sym_variable_name] = ACTIONS(539), - [sym_custom_function_name] = ACTIONS(527), - [sym_function_name] = ACTIONS(527), - [sym_duration_part] = ACTIONS(545), + [aux_sym_type_name_token1] = ACTIONS(567), + [sym_string] = ACTIONS(569), + [sym_prefixed_string] = ACTIONS(569), + [sym_int] = ACTIONS(571), + [sym_float] = ACTIONS(571), + [sym_decimal] = ACTIONS(573), + [sym_variable_name] = ACTIONS(569), + [sym_custom_function_name] = ACTIONS(557), + [sym_function_name] = ACTIONS(557), + [sym_duration_part] = ACTIONS(575), + }, + [240] = { + [sym_expression] = STATE(1859), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), + [sym_comment] = ACTIONS(3), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(577), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [241] = { + [sym_statement] = STATE(1394), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1326), + [sym_value] = STATE(432), + [sym_function_call] = STATE(99), + [sym_base_value] = STATE(145), + [sym_binary_expression] = STATE(99), + [sym_path] = STATE(99), + [sym_graph_path] = STATE(144), + [sym_number] = STATE(57), + [sym_identifier] = STATE(57), + [sym_array] = STATE(57), + [sym_object] = STATE(57), + [sym_object_key] = STATE(1831), + [sym_record_id] = STATE(57), + [sym_sub_query] = STATE(57), + [sym_duration] = STATE(57), + [sym_point] = STATE(57), + [aux_sym_duration_repeat1] = STATE(51), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_order] = ACTIONS(192), - [sym_keyword_with] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_split] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(194), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(547), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_only] = ACTIONS(579), + [sym_keyword_rand] = ACTIONS(7), + [sym_keyword_true] = ACTIONS(11), + [sym_keyword_false] = ACTIONS(11), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(11), + [sym_keyword_null] = ACTIONS(11), + [sym_keyword_define] = ACTIONS(19), + [sym_keyword_live] = ACTIONS(21), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(25), + [sym_keyword_delete] = ACTIONS(27), + [sym_keyword_update] = ACTIONS(29), + [sym_keyword_insert] = ACTIONS(31), + [sym_keyword_relate] = ACTIONS(33), + [sym_keyword_count] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(45), + [anon_sym_LT_DASH_GT] = ACTIONS(37), + [aux_sym_type_name_token1] = ACTIONS(47), + [sym_string] = ACTIONS(49), + [sym_prefixed_string] = ACTIONS(49), + [sym_int] = ACTIONS(51), + [sym_float] = ACTIONS(51), + [sym_decimal] = ACTIONS(53), + [sym_variable_name] = ACTIONS(49), + [sym_custom_function_name] = ACTIONS(7), + [sym_function_name] = ACTIONS(7), + [sym_duration_part] = ACTIONS(55), }, [242] = { - [sym_statement] = STATE(1706), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(576), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [sym_expression] = STATE(1747), + [sym_statement] = STATE(1323), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(564), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(581), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [243] = { + [sym_statement] = STATE(1751), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(574), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1791), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(128), - [sym_keyword_explain] = ACTIONS(128), - [sym_keyword_parallel] = ACTIONS(128), - [sym_keyword_timeout] = ACTIONS(128), - [sym_keyword_fetch] = ACTIONS(128), - [sym_keyword_limit] = ACTIONS(128), - [sym_keyword_order] = ACTIONS(128), - [sym_keyword_with] = ACTIONS(128), - [sym_keyword_where] = ACTIONS(128), - [sym_keyword_split] = ACTIONS(128), - [sym_keyword_group] = ACTIONS(128), - [sym_keyword_and] = ACTIONS(128), - [sym_keyword_or] = ACTIONS(130), - [sym_keyword_is] = ACTIONS(128), - [sym_keyword_not] = ACTIONS(130), - [sym_keyword_contains] = ACTIONS(128), - [sym_keyword_contains_not] = ACTIONS(128), - [sym_keyword_contains_all] = ACTIONS(128), - [sym_keyword_contains_any] = ACTIONS(128), - [sym_keyword_contains_none] = ACTIONS(128), - [sym_keyword_inside] = ACTIONS(128), - [sym_keyword_in] = ACTIONS(130), - [sym_keyword_not_inside] = ACTIONS(128), - [sym_keyword_all_inside] = ACTIONS(128), - [sym_keyword_any_inside] = ACTIONS(128), - [sym_keyword_none_inside] = ACTIONS(128), - [sym_keyword_outside] = ACTIONS(128), - [sym_keyword_intersects] = ACTIONS(128), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_DASH_GT] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_RPAREN] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_LT_DASH] = ACTIONS(130), - [anon_sym_LT_DASH_GT] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(130), - [anon_sym_LT] = ACTIONS(130), - [anon_sym_GT] = ACTIONS(130), - [anon_sym_DOT_DOT] = ACTIONS(128), - [anon_sym_EQ] = ACTIONS(130), - [anon_sym_DASH] = ACTIONS(130), - [anon_sym_AT] = ACTIONS(130), - [anon_sym_LT_PIPE] = ACTIONS(128), - [anon_sym_AMP_AMP] = ACTIONS(128), - [anon_sym_PIPE_PIPE] = ACTIONS(128), - [anon_sym_QMARK_QMARK] = ACTIONS(128), - [anon_sym_QMARK_COLON] = ACTIONS(128), - [anon_sym_BANG_EQ] = ACTIONS(128), - [anon_sym_EQ_EQ] = ACTIONS(128), - [anon_sym_QMARK_EQ] = ACTIONS(128), - [anon_sym_STAR_EQ] = ACTIONS(128), - [anon_sym_TILDE] = ACTIONS(128), - [anon_sym_BANG_TILDE] = ACTIONS(128), - [anon_sym_STAR_TILDE] = ACTIONS(128), - [anon_sym_LT_EQ] = ACTIONS(128), - [anon_sym_GT_EQ] = ACTIONS(128), - [anon_sym_PLUS] = ACTIONS(130), - [anon_sym_PLUS_EQ] = ACTIONS(128), - [anon_sym_DASH_EQ] = ACTIONS(128), - [anon_sym_u00d7] = ACTIONS(128), - [anon_sym_SLASH] = ACTIONS(130), - [anon_sym_u00f7] = ACTIONS(128), - [anon_sym_STAR_STAR] = ACTIONS(128), - [anon_sym_u220b] = ACTIONS(128), - [anon_sym_u220c] = ACTIONS(128), - [anon_sym_u2287] = ACTIONS(128), - [anon_sym_u2283] = ACTIONS(128), - [anon_sym_u2285] = ACTIONS(128), - [anon_sym_u2208] = ACTIONS(128), - [anon_sym_u2209] = ACTIONS(128), - [anon_sym_u2286] = ACTIONS(128), - [anon_sym_u2282] = ACTIONS(128), - [anon_sym_u2284] = ACTIONS(128), - [anon_sym_AT_AT] = ACTIONS(128), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [244] = { + [sym_statement] = STATE(1394), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(414), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1789), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(136), - [sym_keyword_explain] = ACTIONS(136), - [sym_keyword_parallel] = ACTIONS(136), - [sym_keyword_timeout] = ACTIONS(136), - [sym_keyword_fetch] = ACTIONS(136), - [sym_keyword_limit] = ACTIONS(136), - [sym_keyword_order] = ACTIONS(136), - [sym_keyword_with] = ACTIONS(136), - [sym_keyword_where] = ACTIONS(136), - [sym_keyword_split] = ACTIONS(136), - [sym_keyword_group] = ACTIONS(136), - [sym_keyword_and] = ACTIONS(136), - [sym_keyword_or] = ACTIONS(138), - [sym_keyword_is] = ACTIONS(136), - [sym_keyword_not] = ACTIONS(138), - [sym_keyword_contains] = ACTIONS(136), - [sym_keyword_contains_not] = ACTIONS(136), - [sym_keyword_contains_all] = ACTIONS(136), - [sym_keyword_contains_any] = ACTIONS(136), - [sym_keyword_contains_none] = ACTIONS(136), - [sym_keyword_inside] = ACTIONS(136), - [sym_keyword_in] = ACTIONS(138), - [sym_keyword_not_inside] = ACTIONS(136), - [sym_keyword_all_inside] = ACTIONS(136), - [sym_keyword_any_inside] = ACTIONS(136), - [sym_keyword_none_inside] = ACTIONS(136), - [sym_keyword_outside] = ACTIONS(136), - [sym_keyword_intersects] = ACTIONS(136), - [anon_sym_COMMA] = ACTIONS(136), - [anon_sym_DASH_GT] = ACTIONS(136), - [anon_sym_LBRACK] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(136), - [anon_sym_RBRACE] = ACTIONS(136), - [anon_sym_LT_DASH] = ACTIONS(138), - [anon_sym_LT_DASH_GT] = ACTIONS(136), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_DOT] = ACTIONS(138), - [anon_sym_LT] = ACTIONS(138), - [anon_sym_GT] = ACTIONS(138), - [anon_sym_DOT_DOT] = ACTIONS(136), - [anon_sym_EQ] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_LT_PIPE] = ACTIONS(136), - [anon_sym_AMP_AMP] = ACTIONS(136), - [anon_sym_PIPE_PIPE] = ACTIONS(136), - [anon_sym_QMARK_QMARK] = ACTIONS(136), - [anon_sym_QMARK_COLON] = ACTIONS(136), - [anon_sym_BANG_EQ] = ACTIONS(136), - [anon_sym_EQ_EQ] = ACTIONS(136), - [anon_sym_QMARK_EQ] = ACTIONS(136), - [anon_sym_STAR_EQ] = ACTIONS(136), - [anon_sym_TILDE] = ACTIONS(136), - [anon_sym_BANG_TILDE] = ACTIONS(136), - [anon_sym_STAR_TILDE] = ACTIONS(136), - [anon_sym_LT_EQ] = ACTIONS(136), - [anon_sym_GT_EQ] = ACTIONS(136), - [anon_sym_PLUS] = ACTIONS(138), - [anon_sym_PLUS_EQ] = ACTIONS(136), - [anon_sym_DASH_EQ] = ACTIONS(136), - [anon_sym_u00d7] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(138), - [anon_sym_u00f7] = ACTIONS(136), - [anon_sym_STAR_STAR] = ACTIONS(136), - [anon_sym_u220b] = ACTIONS(136), - [anon_sym_u220c] = ACTIONS(136), - [anon_sym_u2287] = ACTIONS(136), - [anon_sym_u2283] = ACTIONS(136), - [anon_sym_u2285] = ACTIONS(136), - [anon_sym_u2208] = ACTIONS(136), - [anon_sym_u2209] = ACTIONS(136), - [anon_sym_u2286] = ACTIONS(136), - [anon_sym_u2282] = ACTIONS(136), - [anon_sym_u2284] = ACTIONS(136), - [anon_sym_AT_AT] = ACTIONS(136), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_only] = ACTIONS(585), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(116), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(116), - [sym_keyword_as] = ACTIONS(116), - [sym_keyword_where] = ACTIONS(116), - [sym_keyword_group] = ACTIONS(116), - [sym_keyword_and] = ACTIONS(116), - [sym_keyword_or] = ACTIONS(116), - [sym_keyword_is] = ACTIONS(116), - [sym_keyword_not] = ACTIONS(118), - [sym_keyword_contains] = ACTIONS(116), - [sym_keyword_contains_not] = ACTIONS(116), - [sym_keyword_contains_all] = ACTIONS(116), - [sym_keyword_contains_any] = ACTIONS(116), - [sym_keyword_contains_none] = ACTIONS(116), - [sym_keyword_inside] = ACTIONS(116), - [sym_keyword_in] = ACTIONS(118), - [sym_keyword_not_inside] = ACTIONS(116), - [sym_keyword_all_inside] = ACTIONS(116), - [sym_keyword_any_inside] = ACTIONS(116), - [sym_keyword_none_inside] = ACTIONS(116), - [sym_keyword_outside] = ACTIONS(116), - [sym_keyword_intersects] = ACTIONS(116), - [sym_keyword_drop] = ACTIONS(116), - [sym_keyword_schemafull] = ACTIONS(116), - [sym_keyword_schemaless] = ACTIONS(116), - [sym_keyword_changefeed] = ACTIONS(116), - [sym_keyword_type] = ACTIONS(116), - [sym_keyword_permissions] = ACTIONS(116), - [sym_keyword_for] = ACTIONS(116), - [sym_keyword_comment] = ACTIONS(116), - [anon_sym_COMMA] = ACTIONS(116), - [anon_sym_DASH_GT] = ACTIONS(116), - [anon_sym_LBRACK] = ACTIONS(116), - [anon_sym_LT_DASH] = ACTIONS(118), - [anon_sym_LT_DASH_GT] = ACTIONS(116), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT_DOT] = ACTIONS(116), - [anon_sym_EQ] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_AT] = ACTIONS(118), - [anon_sym_LT_PIPE] = ACTIONS(116), - [anon_sym_AMP_AMP] = ACTIONS(116), - [anon_sym_PIPE_PIPE] = ACTIONS(116), - [anon_sym_QMARK_QMARK] = ACTIONS(116), - [anon_sym_QMARK_COLON] = ACTIONS(116), - [anon_sym_BANG_EQ] = ACTIONS(116), - [anon_sym_EQ_EQ] = ACTIONS(116), - [anon_sym_QMARK_EQ] = ACTIONS(116), - [anon_sym_STAR_EQ] = ACTIONS(116), - [anon_sym_TILDE] = ACTIONS(116), - [anon_sym_BANG_TILDE] = ACTIONS(116), - [anon_sym_STAR_TILDE] = ACTIONS(116), - [anon_sym_LT_EQ] = ACTIONS(116), - [anon_sym_GT_EQ] = ACTIONS(116), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(116), - [anon_sym_DASH_EQ] = ACTIONS(116), - [anon_sym_u00d7] = ACTIONS(116), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_u00f7] = ACTIONS(116), - [anon_sym_STAR_STAR] = ACTIONS(116), - [anon_sym_u220b] = ACTIONS(116), - [anon_sym_u220c] = ACTIONS(116), - [anon_sym_u2287] = ACTIONS(116), - [anon_sym_u2283] = ACTIONS(116), - [anon_sym_u2285] = ACTIONS(116), - [anon_sym_u2208] = ACTIONS(116), - [anon_sym_u2209] = ACTIONS(116), - [anon_sym_u2286] = ACTIONS(116), - [anon_sym_u2282] = ACTIONS(116), - [anon_sym_u2284] = ACTIONS(116), - [anon_sym_AT_AT] = ACTIONS(116), - }, - [246] = { - [sym_statement] = STATE(1409), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(134), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1764), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [sym_statement] = STATE(1395), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(137), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1788), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_only] = ACTIONS(551), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), + [sym_keyword_only] = ACTIONS(587), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), + }, + [246] = { + [sym_array] = STATE(283), + [sym_object] = STATE(283), + [sym_record_id_value] = STATE(335), + [ts_builtin_sym_end] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_fetch] = ACTIONS(202), + [sym_keyword_limit] = ACTIONS(202), + [sym_keyword_order] = ACTIONS(202), + [sym_keyword_split] = ACTIONS(202), + [sym_keyword_group] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(379), + [sym_record_id_ident] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [247] = { - [sym_statement] = STATE(1421), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(127), - [sym_function_call] = STATE(424), - [sym_base_value] = STATE(162), - [sym_binary_expression] = STATE(424), - [sym_path] = STATE(424), - [sym_graph_path] = STATE(149), - [sym_number] = STATE(272), - [sym_identifier] = STATE(272), - [sym_array] = STATE(272), - [sym_object] = STATE(272), - [sym_object_key] = STATE(1753), - [sym_record_id] = STATE(272), - [sym_sub_query] = STATE(272), - [sym_duration] = STATE(272), - [sym_point] = STATE(272), - [aux_sym_duration_repeat1] = STATE(219), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(126), + [sym_keyword_explain] = ACTIONS(126), + [sym_keyword_parallel] = ACTIONS(126), + [sym_keyword_timeout] = ACTIONS(126), + [sym_keyword_fetch] = ACTIONS(126), + [sym_keyword_limit] = ACTIONS(126), + [sym_keyword_order] = ACTIONS(126), + [sym_keyword_with] = ACTIONS(126), + [sym_keyword_where] = ACTIONS(126), + [sym_keyword_split] = ACTIONS(126), + [sym_keyword_group] = ACTIONS(126), + [sym_keyword_and] = ACTIONS(126), + [sym_keyword_or] = ACTIONS(128), + [sym_keyword_is] = ACTIONS(126), + [sym_keyword_not] = ACTIONS(128), + [sym_keyword_contains] = ACTIONS(126), + [sym_keyword_contains_not] = ACTIONS(126), + [sym_keyword_contains_all] = ACTIONS(126), + [sym_keyword_contains_any] = ACTIONS(126), + [sym_keyword_contains_none] = ACTIONS(126), + [sym_keyword_inside] = ACTIONS(126), + [sym_keyword_in] = ACTIONS(128), + [sym_keyword_not_inside] = ACTIONS(126), + [sym_keyword_all_inside] = ACTIONS(126), + [sym_keyword_any_inside] = ACTIONS(126), + [sym_keyword_none_inside] = ACTIONS(126), + [sym_keyword_outside] = ACTIONS(126), + [sym_keyword_intersects] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_DASH_GT] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_RPAREN] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(126), + [anon_sym_LT_DASH] = ACTIONS(128), + [anon_sym_LT_DASH_GT] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(128), + [anon_sym_DOT] = ACTIONS(128), + [anon_sym_LT] = ACTIONS(128), + [anon_sym_GT] = ACTIONS(128), + [anon_sym_DOT_DOT] = ACTIONS(126), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_DASH] = ACTIONS(128), + [anon_sym_AT] = ACTIONS(128), + [anon_sym_LT_PIPE] = ACTIONS(126), + [anon_sym_AMP_AMP] = ACTIONS(126), + [anon_sym_PIPE_PIPE] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(126), + [anon_sym_QMARK_COLON] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_QMARK_EQ] = ACTIONS(126), + [anon_sym_STAR_EQ] = ACTIONS(126), + [anon_sym_TILDE] = ACTIONS(126), + [anon_sym_BANG_TILDE] = ACTIONS(126), + [anon_sym_STAR_TILDE] = ACTIONS(126), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(128), + [anon_sym_PLUS_EQ] = ACTIONS(126), + [anon_sym_DASH_EQ] = ACTIONS(126), + [anon_sym_u00d7] = ACTIONS(126), + [anon_sym_SLASH] = ACTIONS(128), + [anon_sym_u00f7] = ACTIONS(126), + [anon_sym_STAR_STAR] = ACTIONS(126), + [anon_sym_u220b] = ACTIONS(126), + [anon_sym_u220c] = ACTIONS(126), + [anon_sym_u2287] = ACTIONS(126), + [anon_sym_u2283] = ACTIONS(126), + [anon_sym_u2285] = ACTIONS(126), + [anon_sym_u2208] = ACTIONS(126), + [anon_sym_u2209] = ACTIONS(126), + [anon_sym_u2286] = ACTIONS(126), + [anon_sym_u2282] = ACTIONS(126), + [anon_sym_u2284] = ACTIONS(126), + [anon_sym_AT_AT] = ACTIONS(126), + }, + [248] = { + [ts_builtin_sym_end] = ACTIONS(114), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(114), + [sym_keyword_as] = ACTIONS(114), + [sym_keyword_where] = ACTIONS(114), + [sym_keyword_group] = ACTIONS(114), + [sym_keyword_and] = ACTIONS(114), + [sym_keyword_or] = ACTIONS(114), + [sym_keyword_is] = ACTIONS(114), + [sym_keyword_not] = ACTIONS(116), + [sym_keyword_contains] = ACTIONS(114), + [sym_keyword_contains_not] = ACTIONS(114), + [sym_keyword_contains_all] = ACTIONS(114), + [sym_keyword_contains_any] = ACTIONS(114), + [sym_keyword_contains_none] = ACTIONS(114), + [sym_keyword_inside] = ACTIONS(114), + [sym_keyword_in] = ACTIONS(116), + [sym_keyword_not_inside] = ACTIONS(114), + [sym_keyword_all_inside] = ACTIONS(114), + [sym_keyword_any_inside] = ACTIONS(114), + [sym_keyword_none_inside] = ACTIONS(114), + [sym_keyword_outside] = ACTIONS(114), + [sym_keyword_intersects] = ACTIONS(114), + [sym_keyword_drop] = ACTIONS(114), + [sym_keyword_schemafull] = ACTIONS(114), + [sym_keyword_schemaless] = ACTIONS(114), + [sym_keyword_changefeed] = ACTIONS(114), + [sym_keyword_type] = ACTIONS(114), + [sym_keyword_permissions] = ACTIONS(114), + [sym_keyword_for] = ACTIONS(114), + [sym_keyword_comment] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_DASH_GT] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_LT_DASH] = ACTIONS(116), + [anon_sym_LT_DASH_GT] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(116), + [anon_sym_LT] = ACTIONS(116), + [anon_sym_GT] = ACTIONS(116), + [anon_sym_DOT_DOT] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_DASH] = ACTIONS(116), + [anon_sym_AT] = ACTIONS(116), + [anon_sym_LT_PIPE] = ACTIONS(114), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_QMARK_COLON] = ACTIONS(114), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_QMARK_EQ] = ACTIONS(114), + [anon_sym_STAR_EQ] = ACTIONS(114), + [anon_sym_TILDE] = ACTIONS(114), + [anon_sym_BANG_TILDE] = ACTIONS(114), + [anon_sym_STAR_TILDE] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(114), + [anon_sym_GT_EQ] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(116), + [anon_sym_PLUS_EQ] = ACTIONS(114), + [anon_sym_DASH_EQ] = ACTIONS(114), + [anon_sym_u00d7] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(116), + [anon_sym_u00f7] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_u220b] = ACTIONS(114), + [anon_sym_u220c] = ACTIONS(114), + [anon_sym_u2287] = ACTIONS(114), + [anon_sym_u2283] = ACTIONS(114), + [anon_sym_u2285] = ACTIONS(114), + [anon_sym_u2208] = ACTIONS(114), + [anon_sym_u2209] = ACTIONS(114), + [anon_sym_u2286] = ACTIONS(114), + [anon_sym_u2282] = ACTIONS(114), + [anon_sym_u2284] = ACTIONS(114), + [anon_sym_AT_AT] = ACTIONS(114), + }, + [249] = { + [sym_statement] = STATE(1422), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1326), + [sym_value] = STATE(169), + [sym_function_call] = STATE(99), + [sym_base_value] = STATE(145), + [sym_binary_expression] = STATE(99), + [sym_path] = STATE(99), + [sym_graph_path] = STATE(144), + [sym_number] = STATE(57), + [sym_identifier] = STATE(57), + [sym_array] = STATE(57), + [sym_object] = STATE(57), + [sym_object_key] = STATE(1822), + [sym_record_id] = STATE(57), + [sym_sub_query] = STATE(57), + [sym_duration] = STATE(57), + [sym_point] = STATE(57), + [aux_sym_duration_repeat1] = STATE(51), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_only] = ACTIONS(553), - [sym_keyword_rand] = ACTIONS(555), - [sym_keyword_true] = ACTIONS(557), - [sym_keyword_false] = ACTIONS(557), + [sym_keyword_rand] = ACTIONS(7), + [sym_keyword_true] = ACTIONS(11), + [sym_keyword_false] = ACTIONS(11), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(557), - [sym_keyword_null] = ACTIONS(557), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(11), + [sym_keyword_null] = ACTIONS(11), + [sym_keyword_define] = ACTIONS(19), + [sym_keyword_live] = ACTIONS(21), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(559), - [anon_sym_DASH_GT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_LT_DASH] = ACTIONS(389), - [anon_sym_LT_DASH_GT] = ACTIONS(385), - [aux_sym_type_name_token1] = ACTIONS(565), - [sym_string] = ACTIONS(567), - [sym_prefixed_string] = ACTIONS(567), - [sym_int] = ACTIONS(569), - [sym_float] = ACTIONS(569), - [sym_decimal] = ACTIONS(571), - [sym_variable_name] = ACTIONS(567), - [sym_custom_function_name] = ACTIONS(555), - [sym_function_name] = ACTIONS(555), - [sym_duration_part] = ACTIONS(573), + [sym_keyword_create] = ACTIONS(25), + [sym_keyword_delete] = ACTIONS(27), + [sym_keyword_update] = ACTIONS(29), + [sym_keyword_insert] = ACTIONS(31), + [sym_keyword_relate] = ACTIONS(33), + [sym_keyword_count] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(45), + [anon_sym_LT_DASH_GT] = ACTIONS(37), + [aux_sym_type_name_token1] = ACTIONS(47), + [sym_string] = ACTIONS(49), + [sym_prefixed_string] = ACTIONS(49), + [sym_int] = ACTIONS(51), + [sym_float] = ACTIONS(51), + [sym_decimal] = ACTIONS(53), + [sym_variable_name] = ACTIONS(49), + [sym_custom_function_name] = ACTIONS(7), + [sym_function_name] = ACTIONS(7), + [sym_duration_part] = ACTIONS(55), }, - [248] = { - [sym_expression] = STATE(1426), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1341), - [sym_value] = STATE(591), - [sym_function_call] = STATE(93), - [sym_base_value] = STATE(159), - [sym_binary_expression] = STATE(93), - [sym_path] = STATE(93), - [sym_graph_path] = STATE(158), - [sym_number] = STATE(61), - [sym_identifier] = STATE(61), - [sym_array] = STATE(61), - [sym_object] = STATE(61), - [sym_object_key] = STATE(1839), - [sym_record_id] = STATE(61), - [sym_sub_query] = STATE(61), - [sym_duration] = STATE(61), - [sym_point] = STATE(61), - [aux_sym_duration_repeat1] = STATE(52), + [250] = { + [sym_statement] = STATE(1423), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1326), + [sym_value] = STATE(421), + [sym_function_call] = STATE(99), + [sym_base_value] = STATE(145), + [sym_binary_expression] = STATE(99), + [sym_path] = STATE(99), + [sym_graph_path] = STATE(144), + [sym_number] = STATE(57), + [sym_identifier] = STATE(57), + [sym_array] = STATE(57), + [sym_object] = STATE(57), + [sym_object_key] = STATE(1831), + [sym_record_id] = STATE(57), + [sym_sub_query] = STATE(57), + [sym_duration] = STATE(57), + [sym_point] = STATE(57), + [aux_sym_duration_repeat1] = STATE(51), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), [sym_keyword_rand] = ACTIONS(7), @@ -37778,632 +37980,788 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_name] = ACTIONS(7), [sym_duration_part] = ACTIONS(55), }, - [249] = { + [251] = { + [ts_builtin_sym_end] = ACTIONS(110), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(124), - [sym_keyword_explain] = ACTIONS(124), - [sym_keyword_parallel] = ACTIONS(124), - [sym_keyword_timeout] = ACTIONS(124), - [sym_keyword_fetch] = ACTIONS(124), - [sym_keyword_limit] = ACTIONS(124), - [sym_keyword_order] = ACTIONS(124), - [sym_keyword_with] = ACTIONS(124), - [sym_keyword_where] = ACTIONS(124), - [sym_keyword_split] = ACTIONS(124), - [sym_keyword_group] = ACTIONS(124), - [sym_keyword_and] = ACTIONS(124), - [sym_keyword_or] = ACTIONS(126), - [sym_keyword_is] = ACTIONS(124), - [sym_keyword_not] = ACTIONS(126), - [sym_keyword_contains] = ACTIONS(124), - [sym_keyword_contains_not] = ACTIONS(124), - [sym_keyword_contains_all] = ACTIONS(124), - [sym_keyword_contains_any] = ACTIONS(124), - [sym_keyword_contains_none] = ACTIONS(124), - [sym_keyword_inside] = ACTIONS(124), - [sym_keyword_in] = ACTIONS(126), - [sym_keyword_not_inside] = ACTIONS(124), - [sym_keyword_all_inside] = ACTIONS(124), - [sym_keyword_any_inside] = ACTIONS(124), - [sym_keyword_none_inside] = ACTIONS(124), - [sym_keyword_outside] = ACTIONS(124), - [sym_keyword_intersects] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_DASH_GT] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(124), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_LT_DASH] = ACTIONS(126), - [anon_sym_LT_DASH_GT] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_LT] = ACTIONS(126), - [anon_sym_GT] = ACTIONS(126), - [anon_sym_DOT_DOT] = ACTIONS(124), - [anon_sym_EQ] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), - [anon_sym_AT] = ACTIONS(126), - [anon_sym_LT_PIPE] = ACTIONS(124), - [anon_sym_AMP_AMP] = ACTIONS(124), - [anon_sym_PIPE_PIPE] = ACTIONS(124), - [anon_sym_QMARK_QMARK] = ACTIONS(124), - [anon_sym_QMARK_COLON] = ACTIONS(124), - [anon_sym_BANG_EQ] = ACTIONS(124), - [anon_sym_EQ_EQ] = ACTIONS(124), - [anon_sym_QMARK_EQ] = ACTIONS(124), - [anon_sym_STAR_EQ] = ACTIONS(124), - [anon_sym_TILDE] = ACTIONS(124), - [anon_sym_BANG_TILDE] = ACTIONS(124), - [anon_sym_STAR_TILDE] = ACTIONS(124), - [anon_sym_LT_EQ] = ACTIONS(124), - [anon_sym_GT_EQ] = ACTIONS(124), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_PLUS_EQ] = ACTIONS(124), - [anon_sym_DASH_EQ] = ACTIONS(124), - [anon_sym_u00d7] = ACTIONS(124), - [anon_sym_SLASH] = ACTIONS(126), - [anon_sym_u00f7] = ACTIONS(124), - [anon_sym_STAR_STAR] = ACTIONS(124), - [anon_sym_u220b] = ACTIONS(124), - [anon_sym_u220c] = ACTIONS(124), - [anon_sym_u2287] = ACTIONS(124), - [anon_sym_u2283] = ACTIONS(124), - [anon_sym_u2285] = ACTIONS(124), - [anon_sym_u2208] = ACTIONS(124), - [anon_sym_u2209] = ACTIONS(124), - [anon_sym_u2286] = ACTIONS(124), - [anon_sym_u2282] = ACTIONS(124), - [anon_sym_u2284] = ACTIONS(124), - [anon_sym_AT_AT] = ACTIONS(124), + [sym_semi_colon] = ACTIONS(110), + [sym_keyword_as] = ACTIONS(110), + [sym_keyword_where] = ACTIONS(110), + [sym_keyword_group] = ACTIONS(110), + [sym_keyword_and] = ACTIONS(110), + [sym_keyword_or] = ACTIONS(110), + [sym_keyword_is] = ACTIONS(110), + [sym_keyword_not] = ACTIONS(112), + [sym_keyword_contains] = ACTIONS(110), + [sym_keyword_contains_not] = ACTIONS(110), + [sym_keyword_contains_all] = ACTIONS(110), + [sym_keyword_contains_any] = ACTIONS(110), + [sym_keyword_contains_none] = ACTIONS(110), + [sym_keyword_inside] = ACTIONS(110), + [sym_keyword_in] = ACTIONS(112), + [sym_keyword_not_inside] = ACTIONS(110), + [sym_keyword_all_inside] = ACTIONS(110), + [sym_keyword_any_inside] = ACTIONS(110), + [sym_keyword_none_inside] = ACTIONS(110), + [sym_keyword_outside] = ACTIONS(110), + [sym_keyword_intersects] = ACTIONS(110), + [sym_keyword_drop] = ACTIONS(110), + [sym_keyword_schemafull] = ACTIONS(110), + [sym_keyword_schemaless] = ACTIONS(110), + [sym_keyword_changefeed] = ACTIONS(110), + [sym_keyword_type] = ACTIONS(110), + [sym_keyword_permissions] = ACTIONS(110), + [sym_keyword_for] = ACTIONS(110), + [sym_keyword_comment] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(110), + [anon_sym_DASH_GT] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(110), + [anon_sym_LT_DASH] = ACTIONS(112), + [anon_sym_LT_DASH_GT] = ACTIONS(110), + [anon_sym_STAR] = ACTIONS(112), + [anon_sym_DOT] = ACTIONS(112), + [anon_sym_LT] = ACTIONS(112), + [anon_sym_GT] = ACTIONS(112), + [anon_sym_DOT_DOT] = ACTIONS(110), + [anon_sym_EQ] = ACTIONS(112), + [anon_sym_DASH] = ACTIONS(112), + [anon_sym_AT] = ACTIONS(112), + [anon_sym_LT_PIPE] = ACTIONS(110), + [anon_sym_AMP_AMP] = ACTIONS(110), + [anon_sym_PIPE_PIPE] = ACTIONS(110), + [anon_sym_QMARK_QMARK] = ACTIONS(110), + [anon_sym_QMARK_COLON] = ACTIONS(110), + [anon_sym_BANG_EQ] = ACTIONS(110), + [anon_sym_EQ_EQ] = ACTIONS(110), + [anon_sym_QMARK_EQ] = ACTIONS(110), + [anon_sym_STAR_EQ] = ACTIONS(110), + [anon_sym_TILDE] = ACTIONS(110), + [anon_sym_BANG_TILDE] = ACTIONS(110), + [anon_sym_STAR_TILDE] = ACTIONS(110), + [anon_sym_LT_EQ] = ACTIONS(110), + [anon_sym_GT_EQ] = ACTIONS(110), + [anon_sym_PLUS] = ACTIONS(112), + [anon_sym_PLUS_EQ] = ACTIONS(110), + [anon_sym_DASH_EQ] = ACTIONS(110), + [anon_sym_u00d7] = ACTIONS(110), + [anon_sym_SLASH] = ACTIONS(112), + [anon_sym_u00f7] = ACTIONS(110), + [anon_sym_STAR_STAR] = ACTIONS(110), + [anon_sym_u220b] = ACTIONS(110), + [anon_sym_u220c] = ACTIONS(110), + [anon_sym_u2287] = ACTIONS(110), + [anon_sym_u2283] = ACTIONS(110), + [anon_sym_u2285] = ACTIONS(110), + [anon_sym_u2208] = ACTIONS(110), + [anon_sym_u2209] = ACTIONS(110), + [anon_sym_u2286] = ACTIONS(110), + [anon_sym_u2282] = ACTIONS(110), + [anon_sym_u2284] = ACTIONS(110), + [anon_sym_AT_AT] = ACTIONS(110), }, - [250] = { - [sym_expression] = STATE(1426), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [252] = { + [sym_statement] = STATE(1423), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(405), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1789), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), + }, + [253] = { + [sym_statement] = STATE(1422), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(138), + [sym_function_call] = STATE(73), + [sym_base_value] = STATE(3), + [sym_binary_expression] = STATE(73), + [sym_path] = STATE(73), + [sym_graph_path] = STATE(6), + [sym_number] = STATE(19), + [sym_identifier] = STATE(19), + [sym_array] = STATE(19), + [sym_object] = STATE(19), + [sym_object_key] = STATE(1788), + [sym_record_id] = STATE(19), + [sym_sub_query] = STATE(19), + [sym_duration] = STATE(19), + [sym_point] = STATE(19), + [aux_sym_duration_repeat1] = STATE(8), + [sym_comment] = ACTIONS(3), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(456), + [sym_keyword_true] = ACTIONS(458), + [sym_keyword_false] = ACTIONS(458), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(458), + [sym_keyword_null] = ACTIONS(458), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(474), + [anon_sym_DASH_GT] = ACTIONS(65), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(69), + [anon_sym_LT_DASH_GT] = ACTIONS(65), + [aux_sym_type_name_token1] = ACTIONS(482), + [sym_string] = ACTIONS(484), + [sym_prefixed_string] = ACTIONS(484), + [sym_int] = ACTIONS(486), + [sym_float] = ACTIONS(486), + [sym_decimal] = ACTIONS(488), + [sym_variable_name] = ACTIONS(484), + [sym_custom_function_name] = ACTIONS(456), + [sym_function_name] = ACTIONS(456), + [sym_duration_part] = ACTIONS(490), + }, + [254] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_rand] = ACTIONS(160), + [sym_keyword_collate] = ACTIONS(160), + [sym_keyword_numeric] = ACTIONS(160), + [sym_keyword_asc] = ACTIONS(160), + [sym_keyword_desc] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(589), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), + }, + [255] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(132), + [sym_keyword_explain] = ACTIONS(132), + [sym_keyword_parallel] = ACTIONS(132), + [sym_keyword_timeout] = ACTIONS(132), + [sym_keyword_fetch] = ACTIONS(132), + [sym_keyword_limit] = ACTIONS(132), + [sym_keyword_order] = ACTIONS(132), + [sym_keyword_with] = ACTIONS(132), + [sym_keyword_where] = ACTIONS(132), + [sym_keyword_split] = ACTIONS(132), + [sym_keyword_group] = ACTIONS(132), + [sym_keyword_and] = ACTIONS(132), + [sym_keyword_or] = ACTIONS(134), + [sym_keyword_is] = ACTIONS(132), + [sym_keyword_not] = ACTIONS(134), + [sym_keyword_contains] = ACTIONS(132), + [sym_keyword_contains_not] = ACTIONS(132), + [sym_keyword_contains_all] = ACTIONS(132), + [sym_keyword_contains_any] = ACTIONS(132), + [sym_keyword_contains_none] = ACTIONS(132), + [sym_keyword_inside] = ACTIONS(132), + [sym_keyword_in] = ACTIONS(134), + [sym_keyword_not_inside] = ACTIONS(132), + [sym_keyword_all_inside] = ACTIONS(132), + [sym_keyword_any_inside] = ACTIONS(132), + [sym_keyword_none_inside] = ACTIONS(132), + [sym_keyword_outside] = ACTIONS(132), + [sym_keyword_intersects] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_DASH_GT] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_RPAREN] = ACTIONS(132), + [anon_sym_RBRACE] = ACTIONS(132), + [anon_sym_LT_DASH] = ACTIONS(134), + [anon_sym_LT_DASH_GT] = ACTIONS(132), + [anon_sym_STAR] = ACTIONS(134), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_LT] = ACTIONS(134), + [anon_sym_GT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(132), + [anon_sym_EQ] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_AT] = ACTIONS(134), + [anon_sym_LT_PIPE] = ACTIONS(132), + [anon_sym_AMP_AMP] = ACTIONS(132), + [anon_sym_PIPE_PIPE] = ACTIONS(132), + [anon_sym_QMARK_QMARK] = ACTIONS(132), + [anon_sym_QMARK_COLON] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_QMARK_EQ] = ACTIONS(132), + [anon_sym_STAR_EQ] = ACTIONS(132), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_STAR_TILDE] = ACTIONS(132), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_PLUS_EQ] = ACTIONS(132), + [anon_sym_DASH_EQ] = ACTIONS(132), + [anon_sym_u00d7] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(134), + [anon_sym_u00f7] = ACTIONS(132), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_u220b] = ACTIONS(132), + [anon_sym_u220c] = ACTIONS(132), + [anon_sym_u2287] = ACTIONS(132), + [anon_sym_u2283] = ACTIONS(132), + [anon_sym_u2285] = ACTIONS(132), + [anon_sym_u2208] = ACTIONS(132), + [anon_sym_u2209] = ACTIONS(132), + [anon_sym_u2286] = ACTIONS(132), + [anon_sym_u2282] = ACTIONS(132), + [anon_sym_u2284] = ACTIONS(132), + [anon_sym_AT_AT] = ACTIONS(132), + }, + [256] = { + [ts_builtin_sym_end] = ACTIONS(136), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(136), + [sym_keyword_as] = ACTIONS(136), + [sym_keyword_where] = ACTIONS(136), + [sym_keyword_group] = ACTIONS(136), + [sym_keyword_and] = ACTIONS(136), + [sym_keyword_or] = ACTIONS(136), + [sym_keyword_is] = ACTIONS(136), + [sym_keyword_not] = ACTIONS(138), + [sym_keyword_contains] = ACTIONS(136), + [sym_keyword_contains_not] = ACTIONS(136), + [sym_keyword_contains_all] = ACTIONS(136), + [sym_keyword_contains_any] = ACTIONS(136), + [sym_keyword_contains_none] = ACTIONS(136), + [sym_keyword_inside] = ACTIONS(136), + [sym_keyword_in] = ACTIONS(138), + [sym_keyword_not_inside] = ACTIONS(136), + [sym_keyword_all_inside] = ACTIONS(136), + [sym_keyword_any_inside] = ACTIONS(136), + [sym_keyword_none_inside] = ACTIONS(136), + [sym_keyword_outside] = ACTIONS(136), + [sym_keyword_intersects] = ACTIONS(136), + [sym_keyword_drop] = ACTIONS(136), + [sym_keyword_schemafull] = ACTIONS(136), + [sym_keyword_schemaless] = ACTIONS(136), + [sym_keyword_changefeed] = ACTIONS(136), + [sym_keyword_type] = ACTIONS(136), + [sym_keyword_permissions] = ACTIONS(136), + [sym_keyword_for] = ACTIONS(136), + [sym_keyword_comment] = ACTIONS(136), + [anon_sym_COMMA] = ACTIONS(136), + [anon_sym_DASH_GT] = ACTIONS(136), + [anon_sym_LBRACK] = ACTIONS(136), + [anon_sym_LT_DASH] = ACTIONS(138), + [anon_sym_LT_DASH_GT] = ACTIONS(136), + [anon_sym_STAR] = ACTIONS(138), + [anon_sym_DOT] = ACTIONS(138), + [anon_sym_LT] = ACTIONS(138), + [anon_sym_GT] = ACTIONS(138), + [anon_sym_DOT_DOT] = ACTIONS(136), + [anon_sym_EQ] = ACTIONS(138), + [anon_sym_DASH] = ACTIONS(138), + [anon_sym_AT] = ACTIONS(138), + [anon_sym_LT_PIPE] = ACTIONS(136), + [anon_sym_AMP_AMP] = ACTIONS(136), + [anon_sym_PIPE_PIPE] = ACTIONS(136), + [anon_sym_QMARK_QMARK] = ACTIONS(136), + [anon_sym_QMARK_COLON] = ACTIONS(136), + [anon_sym_BANG_EQ] = ACTIONS(136), + [anon_sym_EQ_EQ] = ACTIONS(136), + [anon_sym_QMARK_EQ] = ACTIONS(136), + [anon_sym_STAR_EQ] = ACTIONS(136), + [anon_sym_TILDE] = ACTIONS(136), + [anon_sym_BANG_TILDE] = ACTIONS(136), + [anon_sym_STAR_TILDE] = ACTIONS(136), + [anon_sym_LT_EQ] = ACTIONS(136), + [anon_sym_GT_EQ] = ACTIONS(136), + [anon_sym_PLUS] = ACTIONS(138), + [anon_sym_PLUS_EQ] = ACTIONS(136), + [anon_sym_DASH_EQ] = ACTIONS(136), + [anon_sym_u00d7] = ACTIONS(136), + [anon_sym_SLASH] = ACTIONS(138), + [anon_sym_u00f7] = ACTIONS(136), + [anon_sym_STAR_STAR] = ACTIONS(136), + [anon_sym_u220b] = ACTIONS(136), + [anon_sym_u220c] = ACTIONS(136), + [anon_sym_u2287] = ACTIONS(136), + [anon_sym_u2283] = ACTIONS(136), + [anon_sym_u2285] = ACTIONS(136), + [anon_sym_u2208] = ACTIONS(136), + [anon_sym_u2209] = ACTIONS(136), + [anon_sym_u2286] = ACTIONS(136), + [anon_sym_u2282] = ACTIONS(136), + [anon_sym_u2284] = ACTIONS(136), + [anon_sym_AT_AT] = ACTIONS(136), }, - [251] = { - [sym_expression] = STATE(1795), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [257] = { + [ts_builtin_sym_end] = ACTIONS(132), [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(575), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_semi_colon] = ACTIONS(132), + [sym_keyword_as] = ACTIONS(132), + [sym_keyword_where] = ACTIONS(132), + [sym_keyword_group] = ACTIONS(132), + [sym_keyword_and] = ACTIONS(132), + [sym_keyword_or] = ACTIONS(132), + [sym_keyword_is] = ACTIONS(132), + [sym_keyword_not] = ACTIONS(134), + [sym_keyword_contains] = ACTIONS(132), + [sym_keyword_contains_not] = ACTIONS(132), + [sym_keyword_contains_all] = ACTIONS(132), + [sym_keyword_contains_any] = ACTIONS(132), + [sym_keyword_contains_none] = ACTIONS(132), + [sym_keyword_inside] = ACTIONS(132), + [sym_keyword_in] = ACTIONS(134), + [sym_keyword_not_inside] = ACTIONS(132), + [sym_keyword_all_inside] = ACTIONS(132), + [sym_keyword_any_inside] = ACTIONS(132), + [sym_keyword_none_inside] = ACTIONS(132), + [sym_keyword_outside] = ACTIONS(132), + [sym_keyword_intersects] = ACTIONS(132), + [sym_keyword_drop] = ACTIONS(132), + [sym_keyword_schemafull] = ACTIONS(132), + [sym_keyword_schemaless] = ACTIONS(132), + [sym_keyword_changefeed] = ACTIONS(132), + [sym_keyword_type] = ACTIONS(132), + [sym_keyword_permissions] = ACTIONS(132), + [sym_keyword_for] = ACTIONS(132), + [sym_keyword_comment] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_DASH_GT] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_LT_DASH] = ACTIONS(134), + [anon_sym_LT_DASH_GT] = ACTIONS(132), + [anon_sym_STAR] = ACTIONS(134), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_LT] = ACTIONS(134), + [anon_sym_GT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(132), + [anon_sym_EQ] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_AT] = ACTIONS(134), + [anon_sym_LT_PIPE] = ACTIONS(132), + [anon_sym_AMP_AMP] = ACTIONS(132), + [anon_sym_PIPE_PIPE] = ACTIONS(132), + [anon_sym_QMARK_QMARK] = ACTIONS(132), + [anon_sym_QMARK_COLON] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_QMARK_EQ] = ACTIONS(132), + [anon_sym_STAR_EQ] = ACTIONS(132), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_STAR_TILDE] = ACTIONS(132), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_PLUS_EQ] = ACTIONS(132), + [anon_sym_DASH_EQ] = ACTIONS(132), + [anon_sym_u00d7] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(134), + [anon_sym_u00f7] = ACTIONS(132), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_u220b] = ACTIONS(132), + [anon_sym_u220c] = ACTIONS(132), + [anon_sym_u2287] = ACTIONS(132), + [anon_sym_u2283] = ACTIONS(132), + [anon_sym_u2285] = ACTIONS(132), + [anon_sym_u2208] = ACTIONS(132), + [anon_sym_u2209] = ACTIONS(132), + [anon_sym_u2286] = ACTIONS(132), + [anon_sym_u2282] = ACTIONS(132), + [anon_sym_u2284] = ACTIONS(132), + [anon_sym_AT_AT] = ACTIONS(132), }, - [252] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(120), - [sym_keyword_explain] = ACTIONS(120), - [sym_keyword_parallel] = ACTIONS(120), - [sym_keyword_timeout] = ACTIONS(120), - [sym_keyword_fetch] = ACTIONS(120), - [sym_keyword_limit] = ACTIONS(120), - [sym_keyword_order] = ACTIONS(120), - [sym_keyword_with] = ACTIONS(120), - [sym_keyword_where] = ACTIONS(120), - [sym_keyword_split] = ACTIONS(120), - [sym_keyword_group] = ACTIONS(120), - [sym_keyword_and] = ACTIONS(120), - [sym_keyword_or] = ACTIONS(122), - [sym_keyword_is] = ACTIONS(120), - [sym_keyword_not] = ACTIONS(122), - [sym_keyword_contains] = ACTIONS(120), - [sym_keyword_contains_not] = ACTIONS(120), - [sym_keyword_contains_all] = ACTIONS(120), - [sym_keyword_contains_any] = ACTIONS(120), - [sym_keyword_contains_none] = ACTIONS(120), - [sym_keyword_inside] = ACTIONS(120), - [sym_keyword_in] = ACTIONS(122), - [sym_keyword_not_inside] = ACTIONS(120), - [sym_keyword_all_inside] = ACTIONS(120), - [sym_keyword_any_inside] = ACTIONS(120), - [sym_keyword_none_inside] = ACTIONS(120), - [sym_keyword_outside] = ACTIONS(120), - [sym_keyword_intersects] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_DASH_GT] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(120), - [anon_sym_RPAREN] = ACTIONS(120), - [anon_sym_RBRACE] = ACTIONS(120), - [anon_sym_LT_DASH] = ACTIONS(122), - [anon_sym_LT_DASH_GT] = ACTIONS(120), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_AT] = ACTIONS(122), - [anon_sym_LT_PIPE] = ACTIONS(120), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_QMARK_COLON] = ACTIONS(120), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_QMARK_EQ] = ACTIONS(120), - [anon_sym_STAR_EQ] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(120), - [anon_sym_BANG_TILDE] = ACTIONS(120), - [anon_sym_STAR_TILDE] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(120), - [anon_sym_GT_EQ] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_PLUS_EQ] = ACTIONS(120), - [anon_sym_DASH_EQ] = ACTIONS(120), - [anon_sym_u00d7] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_u00f7] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_u220b] = ACTIONS(120), - [anon_sym_u220c] = ACTIONS(120), - [anon_sym_u2287] = ACTIONS(120), - [anon_sym_u2283] = ACTIONS(120), - [anon_sym_u2285] = ACTIONS(120), - [anon_sym_u2208] = ACTIONS(120), - [anon_sym_u2209] = ACTIONS(120), - [anon_sym_u2286] = ACTIONS(120), - [anon_sym_u2282] = ACTIONS(120), - [anon_sym_u2284] = ACTIONS(120), - [anon_sym_AT_AT] = ACTIONS(120), + [258] = { + [aux_sym_duration_repeat1] = STATE(261), + [ts_builtin_sym_end] = ACTIONS(104), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(104), + [sym_keyword_explain] = ACTIONS(104), + [sym_keyword_parallel] = ACTIONS(104), + [sym_keyword_timeout] = ACTIONS(104), + [sym_keyword_fetch] = ACTIONS(104), + [sym_keyword_limit] = ACTIONS(104), + [sym_keyword_order] = ACTIONS(104), + [sym_keyword_with] = ACTIONS(104), + [sym_keyword_where] = ACTIONS(104), + [sym_keyword_split] = ACTIONS(104), + [sym_keyword_group] = ACTIONS(104), + [sym_keyword_and] = ACTIONS(104), + [sym_keyword_or] = ACTIONS(106), + [sym_keyword_is] = ACTIONS(104), + [sym_keyword_not] = ACTIONS(106), + [sym_keyword_contains] = ACTIONS(104), + [sym_keyword_contains_not] = ACTIONS(104), + [sym_keyword_contains_all] = ACTIONS(104), + [sym_keyword_contains_any] = ACTIONS(104), + [sym_keyword_contains_none] = ACTIONS(104), + [sym_keyword_inside] = ACTIONS(104), + [sym_keyword_in] = ACTIONS(106), + [sym_keyword_not_inside] = ACTIONS(104), + [sym_keyword_all_inside] = ACTIONS(104), + [sym_keyword_any_inside] = ACTIONS(104), + [sym_keyword_none_inside] = ACTIONS(104), + [sym_keyword_outside] = ACTIONS(104), + [sym_keyword_intersects] = ACTIONS(104), + [anon_sym_COMMA] = ACTIONS(104), + [anon_sym_DASH_GT] = ACTIONS(104), + [anon_sym_LBRACK] = ACTIONS(104), + [anon_sym_LT_DASH] = ACTIONS(106), + [anon_sym_LT_DASH_GT] = ACTIONS(104), + [anon_sym_STAR] = ACTIONS(106), + [anon_sym_DOT] = ACTIONS(104), + [anon_sym_LT] = ACTIONS(106), + [anon_sym_GT] = ACTIONS(106), + [anon_sym_EQ] = ACTIONS(106), + [sym_duration_part] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(106), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_LT_PIPE] = ACTIONS(104), + [anon_sym_AMP_AMP] = ACTIONS(104), + [anon_sym_PIPE_PIPE] = ACTIONS(104), + [anon_sym_QMARK_QMARK] = ACTIONS(104), + [anon_sym_QMARK_COLON] = ACTIONS(104), + [anon_sym_BANG_EQ] = ACTIONS(104), + [anon_sym_EQ_EQ] = ACTIONS(104), + [anon_sym_QMARK_EQ] = ACTIONS(104), + [anon_sym_STAR_EQ] = ACTIONS(104), + [anon_sym_TILDE] = ACTIONS(104), + [anon_sym_BANG_TILDE] = ACTIONS(104), + [anon_sym_STAR_TILDE] = ACTIONS(104), + [anon_sym_LT_EQ] = ACTIONS(104), + [anon_sym_GT_EQ] = ACTIONS(104), + [anon_sym_PLUS] = ACTIONS(106), + [anon_sym_PLUS_EQ] = ACTIONS(104), + [anon_sym_DASH_EQ] = ACTIONS(104), + [anon_sym_u00d7] = ACTIONS(104), + [anon_sym_SLASH] = ACTIONS(106), + [anon_sym_u00f7] = ACTIONS(104), + [anon_sym_STAR_STAR] = ACTIONS(104), + [anon_sym_u220b] = ACTIONS(104), + [anon_sym_u220c] = ACTIONS(104), + [anon_sym_u2287] = ACTIONS(104), + [anon_sym_u2283] = ACTIONS(104), + [anon_sym_u2285] = ACTIONS(104), + [anon_sym_u2208] = ACTIONS(104), + [anon_sym_u2209] = ACTIONS(104), + [anon_sym_u2286] = ACTIONS(104), + [anon_sym_u2282] = ACTIONS(104), + [anon_sym_u2284] = ACTIONS(104), + [anon_sym_AT_AT] = ACTIONS(104), }, - [253] = { - [sym_expression] = STATE(1735), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [259] = { + [ts_builtin_sym_end] = ACTIONS(126), [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(577), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_semi_colon] = ACTIONS(126), + [sym_keyword_as] = ACTIONS(126), + [sym_keyword_where] = ACTIONS(126), + [sym_keyword_group] = ACTIONS(126), + [sym_keyword_and] = ACTIONS(126), + [sym_keyword_or] = ACTIONS(126), + [sym_keyword_is] = ACTIONS(126), + [sym_keyword_not] = ACTIONS(128), + [sym_keyword_contains] = ACTIONS(126), + [sym_keyword_contains_not] = ACTIONS(126), + [sym_keyword_contains_all] = ACTIONS(126), + [sym_keyword_contains_any] = ACTIONS(126), + [sym_keyword_contains_none] = ACTIONS(126), + [sym_keyword_inside] = ACTIONS(126), + [sym_keyword_in] = ACTIONS(128), + [sym_keyword_not_inside] = ACTIONS(126), + [sym_keyword_all_inside] = ACTIONS(126), + [sym_keyword_any_inside] = ACTIONS(126), + [sym_keyword_none_inside] = ACTIONS(126), + [sym_keyword_outside] = ACTIONS(126), + [sym_keyword_intersects] = ACTIONS(126), + [sym_keyword_drop] = ACTIONS(126), + [sym_keyword_schemafull] = ACTIONS(126), + [sym_keyword_schemaless] = ACTIONS(126), + [sym_keyword_changefeed] = ACTIONS(126), + [sym_keyword_type] = ACTIONS(126), + [sym_keyword_permissions] = ACTIONS(126), + [sym_keyword_for] = ACTIONS(126), + [sym_keyword_comment] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_DASH_GT] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_LT_DASH] = ACTIONS(128), + [anon_sym_LT_DASH_GT] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(128), + [anon_sym_DOT] = ACTIONS(128), + [anon_sym_LT] = ACTIONS(128), + [anon_sym_GT] = ACTIONS(128), + [anon_sym_DOT_DOT] = ACTIONS(126), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_DASH] = ACTIONS(128), + [anon_sym_AT] = ACTIONS(128), + [anon_sym_LT_PIPE] = ACTIONS(126), + [anon_sym_AMP_AMP] = ACTIONS(126), + [anon_sym_PIPE_PIPE] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(126), + [anon_sym_QMARK_COLON] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_QMARK_EQ] = ACTIONS(126), + [anon_sym_STAR_EQ] = ACTIONS(126), + [anon_sym_TILDE] = ACTIONS(126), + [anon_sym_BANG_TILDE] = ACTIONS(126), + [anon_sym_STAR_TILDE] = ACTIONS(126), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(128), + [anon_sym_PLUS_EQ] = ACTIONS(126), + [anon_sym_DASH_EQ] = ACTIONS(126), + [anon_sym_u00d7] = ACTIONS(126), + [anon_sym_SLASH] = ACTIONS(128), + [anon_sym_u00f7] = ACTIONS(126), + [anon_sym_STAR_STAR] = ACTIONS(126), + [anon_sym_u220b] = ACTIONS(126), + [anon_sym_u220c] = ACTIONS(126), + [anon_sym_u2287] = ACTIONS(126), + [anon_sym_u2283] = ACTIONS(126), + [anon_sym_u2285] = ACTIONS(126), + [anon_sym_u2208] = ACTIONS(126), + [anon_sym_u2209] = ACTIONS(126), + [anon_sym_u2286] = ACTIONS(126), + [anon_sym_u2282] = ACTIONS(126), + [anon_sym_u2284] = ACTIONS(126), + [anon_sym_AT_AT] = ACTIONS(126), }, - [254] = { + [260] = { + [ts_builtin_sym_end] = ACTIONS(118), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(116), - [sym_keyword_explain] = ACTIONS(116), - [sym_keyword_parallel] = ACTIONS(116), - [sym_keyword_timeout] = ACTIONS(116), - [sym_keyword_fetch] = ACTIONS(116), - [sym_keyword_limit] = ACTIONS(116), - [sym_keyword_order] = ACTIONS(116), - [sym_keyword_with] = ACTIONS(116), - [sym_keyword_where] = ACTIONS(116), - [sym_keyword_split] = ACTIONS(116), - [sym_keyword_group] = ACTIONS(116), - [sym_keyword_and] = ACTIONS(116), + [sym_semi_colon] = ACTIONS(118), + [sym_keyword_as] = ACTIONS(118), + [sym_keyword_where] = ACTIONS(118), + [sym_keyword_group] = ACTIONS(118), + [sym_keyword_and] = ACTIONS(118), [sym_keyword_or] = ACTIONS(118), - [sym_keyword_is] = ACTIONS(116), - [sym_keyword_not] = ACTIONS(118), - [sym_keyword_contains] = ACTIONS(116), - [sym_keyword_contains_not] = ACTIONS(116), - [sym_keyword_contains_all] = ACTIONS(116), - [sym_keyword_contains_any] = ACTIONS(116), - [sym_keyword_contains_none] = ACTIONS(116), - [sym_keyword_inside] = ACTIONS(116), - [sym_keyword_in] = ACTIONS(118), - [sym_keyword_not_inside] = ACTIONS(116), - [sym_keyword_all_inside] = ACTIONS(116), - [sym_keyword_any_inside] = ACTIONS(116), - [sym_keyword_none_inside] = ACTIONS(116), - [sym_keyword_outside] = ACTIONS(116), - [sym_keyword_intersects] = ACTIONS(116), - [anon_sym_COMMA] = ACTIONS(116), - [anon_sym_DASH_GT] = ACTIONS(116), - [anon_sym_LBRACK] = ACTIONS(116), - [anon_sym_RPAREN] = ACTIONS(116), - [anon_sym_RBRACE] = ACTIONS(116), - [anon_sym_LT_DASH] = ACTIONS(118), - [anon_sym_LT_DASH_GT] = ACTIONS(116), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT_DOT] = ACTIONS(116), - [anon_sym_EQ] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_AT] = ACTIONS(118), - [anon_sym_LT_PIPE] = ACTIONS(116), - [anon_sym_AMP_AMP] = ACTIONS(116), - [anon_sym_PIPE_PIPE] = ACTIONS(116), - [anon_sym_QMARK_QMARK] = ACTIONS(116), - [anon_sym_QMARK_COLON] = ACTIONS(116), - [anon_sym_BANG_EQ] = ACTIONS(116), - [anon_sym_EQ_EQ] = ACTIONS(116), - [anon_sym_QMARK_EQ] = ACTIONS(116), - [anon_sym_STAR_EQ] = ACTIONS(116), - [anon_sym_TILDE] = ACTIONS(116), - [anon_sym_BANG_TILDE] = ACTIONS(116), - [anon_sym_STAR_TILDE] = ACTIONS(116), - [anon_sym_LT_EQ] = ACTIONS(116), - [anon_sym_GT_EQ] = ACTIONS(116), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(116), - [anon_sym_DASH_EQ] = ACTIONS(116), - [anon_sym_u00d7] = ACTIONS(116), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_u00f7] = ACTIONS(116), - [anon_sym_STAR_STAR] = ACTIONS(116), - [anon_sym_u220b] = ACTIONS(116), - [anon_sym_u220c] = ACTIONS(116), - [anon_sym_u2287] = ACTIONS(116), - [anon_sym_u2283] = ACTIONS(116), - [anon_sym_u2285] = ACTIONS(116), - [anon_sym_u2208] = ACTIONS(116), - [anon_sym_u2209] = ACTIONS(116), - [anon_sym_u2286] = ACTIONS(116), - [anon_sym_u2282] = ACTIONS(116), - [anon_sym_u2284] = ACTIONS(116), - [anon_sym_AT_AT] = ACTIONS(116), - }, - [255] = { - [sym_statement] = STATE(1409), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1341), - [sym_value] = STATE(161), - [sym_function_call] = STATE(93), - [sym_base_value] = STATE(159), - [sym_binary_expression] = STATE(93), - [sym_path] = STATE(93), - [sym_graph_path] = STATE(158), - [sym_number] = STATE(61), - [sym_identifier] = STATE(61), - [sym_array] = STATE(61), - [sym_object] = STATE(61), - [sym_object_key] = STATE(1780), - [sym_record_id] = STATE(61), - [sym_sub_query] = STATE(61), - [sym_duration] = STATE(61), - [sym_point] = STATE(61), - [aux_sym_duration_repeat1] = STATE(52), - [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_only] = ACTIONS(579), - [sym_keyword_rand] = ACTIONS(7), - [sym_keyword_true] = ACTIONS(11), - [sym_keyword_false] = ACTIONS(11), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(11), - [sym_keyword_null] = ACTIONS(11), - [sym_keyword_define] = ACTIONS(19), - [sym_keyword_live] = ACTIONS(21), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(25), - [sym_keyword_delete] = ACTIONS(27), - [sym_keyword_update] = ACTIONS(29), - [sym_keyword_insert] = ACTIONS(31), - [sym_keyword_relate] = ACTIONS(33), - [sym_keyword_count] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(45), - [anon_sym_LT_DASH_GT] = ACTIONS(37), - [aux_sym_type_name_token1] = ACTIONS(47), - [sym_string] = ACTIONS(49), - [sym_prefixed_string] = ACTIONS(49), - [sym_int] = ACTIONS(51), - [sym_float] = ACTIONS(51), - [sym_decimal] = ACTIONS(53), - [sym_variable_name] = ACTIONS(49), - [sym_custom_function_name] = ACTIONS(7), - [sym_function_name] = ACTIONS(7), - [sym_duration_part] = ACTIONS(55), - }, - [256] = { - [sym_statement] = STATE(1413), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1341), - [sym_value] = STATE(420), - [sym_function_call] = STATE(93), - [sym_base_value] = STATE(159), - [sym_binary_expression] = STATE(93), - [sym_path] = STATE(93), - [sym_graph_path] = STATE(158), - [sym_number] = STATE(61), - [sym_identifier] = STATE(61), - [sym_array] = STATE(61), - [sym_object] = STATE(61), - [sym_object_key] = STATE(1788), - [sym_record_id] = STATE(61), - [sym_sub_query] = STATE(61), - [sym_duration] = STATE(61), - [sym_point] = STATE(61), - [aux_sym_duration_repeat1] = STATE(52), - [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_only] = ACTIONS(581), - [sym_keyword_rand] = ACTIONS(7), - [sym_keyword_true] = ACTIONS(11), - [sym_keyword_false] = ACTIONS(11), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(11), - [sym_keyword_null] = ACTIONS(11), - [sym_keyword_define] = ACTIONS(19), - [sym_keyword_live] = ACTIONS(21), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(25), - [sym_keyword_delete] = ACTIONS(27), - [sym_keyword_update] = ACTIONS(29), - [sym_keyword_insert] = ACTIONS(31), - [sym_keyword_relate] = ACTIONS(33), - [sym_keyword_count] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(45), - [anon_sym_LT_DASH_GT] = ACTIONS(37), - [aux_sym_type_name_token1] = ACTIONS(47), - [sym_string] = ACTIONS(49), - [sym_prefixed_string] = ACTIONS(49), - [sym_int] = ACTIONS(51), - [sym_float] = ACTIONS(51), - [sym_decimal] = ACTIONS(53), - [sym_variable_name] = ACTIONS(49), - [sym_custom_function_name] = ACTIONS(7), - [sym_function_name] = ACTIONS(7), - [sym_duration_part] = ACTIONS(55), + [sym_keyword_is] = ACTIONS(118), + [sym_keyword_not] = ACTIONS(120), + [sym_keyword_contains] = ACTIONS(118), + [sym_keyword_contains_not] = ACTIONS(118), + [sym_keyword_contains_all] = ACTIONS(118), + [sym_keyword_contains_any] = ACTIONS(118), + [sym_keyword_contains_none] = ACTIONS(118), + [sym_keyword_inside] = ACTIONS(118), + [sym_keyword_in] = ACTIONS(120), + [sym_keyword_not_inside] = ACTIONS(118), + [sym_keyword_all_inside] = ACTIONS(118), + [sym_keyword_any_inside] = ACTIONS(118), + [sym_keyword_none_inside] = ACTIONS(118), + [sym_keyword_outside] = ACTIONS(118), + [sym_keyword_intersects] = ACTIONS(118), + [sym_keyword_drop] = ACTIONS(118), + [sym_keyword_schemafull] = ACTIONS(118), + [sym_keyword_schemaless] = ACTIONS(118), + [sym_keyword_changefeed] = ACTIONS(118), + [sym_keyword_type] = ACTIONS(118), + [sym_keyword_permissions] = ACTIONS(118), + [sym_keyword_for] = ACTIONS(118), + [sym_keyword_comment] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_DASH_GT] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_LT_DASH] = ACTIONS(120), + [anon_sym_LT_DASH_GT] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT_DOT] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_AT] = ACTIONS(120), + [anon_sym_LT_PIPE] = ACTIONS(118), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_QMARK_COLON] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_QMARK_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(118), + [anon_sym_BANG_TILDE] = ACTIONS(118), + [anon_sym_STAR_TILDE] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_u00d7] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_u00f7] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_u220b] = ACTIONS(118), + [anon_sym_u220c] = ACTIONS(118), + [anon_sym_u2287] = ACTIONS(118), + [anon_sym_u2283] = ACTIONS(118), + [anon_sym_u2285] = ACTIONS(118), + [anon_sym_u2208] = ACTIONS(118), + [anon_sym_u2209] = ACTIONS(118), + [anon_sym_u2286] = ACTIONS(118), + [anon_sym_u2282] = ACTIONS(118), + [anon_sym_u2284] = ACTIONS(118), + [anon_sym_AT_AT] = ACTIONS(118), }, - [257] = { - [aux_sym_duration_repeat1] = STATE(260), + [261] = { + [aux_sym_duration_repeat1] = STATE(261), [ts_builtin_sym_end] = ACTIONS(97), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(97), @@ -38444,7 +38802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(99), [anon_sym_GT] = ACTIONS(99), [anon_sym_EQ] = ACTIONS(99), - [sym_duration_part] = ACTIONS(583), + [sym_duration_part] = ACTIONS(593), [anon_sym_DASH] = ACTIONS(99), [anon_sym_AT] = ACTIONS(99), [anon_sym_LT_PIPE] = ACTIONS(97), @@ -38480,785 +38838,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(97), [anon_sym_AT_AT] = ACTIONS(97), }, - [258] = { - [sym_statement] = STATE(1729), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(567), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), - [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), - }, - [259] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_drop] = ACTIONS(192), - [sym_keyword_schemafull] = ACTIONS(192), - [sym_keyword_schemaless] = ACTIONS(192), - [sym_keyword_changefeed] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(587), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [260] = { - [aux_sym_duration_repeat1] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(103), - [sym_keyword_explain] = ACTIONS(103), - [sym_keyword_parallel] = ACTIONS(103), - [sym_keyword_timeout] = ACTIONS(103), - [sym_keyword_fetch] = ACTIONS(103), - [sym_keyword_limit] = ACTIONS(103), - [sym_keyword_order] = ACTIONS(103), - [sym_keyword_with] = ACTIONS(103), - [sym_keyword_where] = ACTIONS(103), - [sym_keyword_split] = ACTIONS(103), - [sym_keyword_group] = ACTIONS(103), - [sym_keyword_and] = ACTIONS(103), - [sym_keyword_or] = ACTIONS(105), - [sym_keyword_is] = ACTIONS(103), - [sym_keyword_not] = ACTIONS(105), - [sym_keyword_contains] = ACTIONS(103), - [sym_keyword_contains_not] = ACTIONS(103), - [sym_keyword_contains_all] = ACTIONS(103), - [sym_keyword_contains_any] = ACTIONS(103), - [sym_keyword_contains_none] = ACTIONS(103), - [sym_keyword_inside] = ACTIONS(103), - [sym_keyword_in] = ACTIONS(105), - [sym_keyword_not_inside] = ACTIONS(103), - [sym_keyword_all_inside] = ACTIONS(103), - [sym_keyword_any_inside] = ACTIONS(103), - [sym_keyword_none_inside] = ACTIONS(103), - [sym_keyword_outside] = ACTIONS(103), - [sym_keyword_intersects] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_DASH_GT] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LT_DASH] = ACTIONS(105), - [anon_sym_LT_DASH_GT] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(105), - [anon_sym_DOT] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_EQ] = ACTIONS(105), - [sym_duration_part] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_AT] = ACTIONS(105), - [anon_sym_LT_PIPE] = ACTIONS(103), - [anon_sym_AMP_AMP] = ACTIONS(103), - [anon_sym_PIPE_PIPE] = ACTIONS(103), - [anon_sym_QMARK_QMARK] = ACTIONS(103), - [anon_sym_QMARK_COLON] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_QMARK_EQ] = ACTIONS(103), - [anon_sym_STAR_EQ] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_STAR_TILDE] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_PLUS_EQ] = ACTIONS(103), - [anon_sym_DASH_EQ] = ACTIONS(103), - [anon_sym_u00d7] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(105), - [anon_sym_u00f7] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_u220b] = ACTIONS(103), - [anon_sym_u220c] = ACTIONS(103), - [anon_sym_u2287] = ACTIONS(103), - [anon_sym_u2283] = ACTIONS(103), - [anon_sym_u2285] = ACTIONS(103), - [anon_sym_u2208] = ACTIONS(103), - [anon_sym_u2209] = ACTIONS(103), - [anon_sym_u2286] = ACTIONS(103), - [anon_sym_u2282] = ACTIONS(103), - [anon_sym_u2284] = ACTIONS(103), - [anon_sym_AT_AT] = ACTIONS(103), - }, - [261] = { - [sym_expression] = STATE(1795), - [sym_statement] = STATE(1345), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(569), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), - [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), - }, [262] = { - [sym_statement] = STATE(1703), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(579), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [sym_statement] = STATE(1298), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1307), + [sym_value] = STATE(127), + [sym_function_call] = STATE(442), + [sym_base_value] = STATE(151), + [sym_binary_expression] = STATE(442), + [sym_path] = STATE(442), + [sym_graph_path] = STATE(150), + [sym_number] = STATE(315), + [sym_identifier] = STATE(315), + [sym_array] = STATE(315), + [sym_object] = STATE(315), + [sym_object_key] = STATE(1781), + [sym_record_id] = STATE(315), + [sym_sub_query] = STATE(315), + [sym_duration] = STATE(315), + [sym_point] = STATE(315), + [aux_sym_duration_repeat1] = STATE(222), [sym_comment] = ACTIONS(3), [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), + [sym_keyword_rand] = ACTIONS(512), + [sym_keyword_true] = ACTIONS(514), + [sym_keyword_false] = ACTIONS(514), [sym_keyword_begin] = ACTIONS(13), [sym_keyword_cancel] = ACTIONS(15), [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), + [sym_keyword_none] = ACTIONS(514), + [sym_keyword_null] = ACTIONS(514), + [sym_keyword_define] = ACTIONS(460), + [sym_keyword_live] = ACTIONS(462), [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_RPAREN] = ACTIONS(592), + [sym_keyword_create] = ACTIONS(464), + [sym_keyword_delete] = ACTIONS(466), + [sym_keyword_update] = ACTIONS(468), + [sym_keyword_insert] = ACTIONS(470), + [sym_keyword_relate] = ACTIONS(472), + [sym_keyword_count] = ACTIONS(516), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(520), [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [anon_sym_LT_DASH] = ACTIONS(385), + [anon_sym_LT_DASH_GT] = ACTIONS(381), + [aux_sym_type_name_token1] = ACTIONS(522), + [sym_string] = ACTIONS(524), + [sym_prefixed_string] = ACTIONS(524), + [sym_int] = ACTIONS(526), + [sym_float] = ACTIONS(526), + [sym_decimal] = ACTIONS(528), + [sym_variable_name] = ACTIONS(524), + [sym_custom_function_name] = ACTIONS(512), + [sym_function_name] = ACTIONS(512), + [sym_duration_part] = ACTIONS(530), }, [263] = { - [sym_statement] = STATE(1772), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(584), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_RPAREN] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_semi_colon] = ACTIONS(57), + [sym_keyword_explain] = ACTIONS(57), + [sym_keyword_parallel] = ACTIONS(57), + [sym_keyword_timeout] = ACTIONS(57), + [sym_keyword_fetch] = ACTIONS(57), + [sym_keyword_limit] = ACTIONS(57), + [sym_keyword_order] = ACTIONS(57), + [sym_keyword_with] = ACTIONS(57), + [sym_keyword_where] = ACTIONS(57), + [sym_keyword_split] = ACTIONS(57), + [sym_keyword_group] = ACTIONS(57), + [sym_keyword_and] = ACTIONS(57), + [sym_keyword_or] = ACTIONS(59), + [sym_keyword_is] = ACTIONS(57), + [sym_keyword_not] = ACTIONS(59), + [sym_keyword_contains] = ACTIONS(57), + [sym_keyword_contains_not] = ACTIONS(57), + [sym_keyword_contains_all] = ACTIONS(57), + [sym_keyword_contains_any] = ACTIONS(57), + [sym_keyword_contains_none] = ACTIONS(57), + [sym_keyword_inside] = ACTIONS(57), + [sym_keyword_in] = ACTIONS(59), + [sym_keyword_not_inside] = ACTIONS(57), + [sym_keyword_all_inside] = ACTIONS(57), + [sym_keyword_any_inside] = ACTIONS(57), + [sym_keyword_none_inside] = ACTIONS(57), + [sym_keyword_outside] = ACTIONS(57), + [sym_keyword_intersects] = ACTIONS(57), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_DASH_GT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(130), + [anon_sym_RBRACE] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [anon_sym_LT_DASH_GT] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_DOT] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LT_PIPE] = ACTIONS(57), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_QMARK_COLON] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_QMARK_EQ] = ACTIONS(57), + [anon_sym_STAR_EQ] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG_TILDE] = ACTIONS(57), + [anon_sym_STAR_TILDE] = ACTIONS(57), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_DASH_EQ] = ACTIONS(57), + [anon_sym_u00d7] = ACTIONS(57), + [anon_sym_SLASH] = ACTIONS(59), + [anon_sym_u00f7] = ACTIONS(57), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_u220b] = ACTIONS(57), + [anon_sym_u220c] = ACTIONS(57), + [anon_sym_u2287] = ACTIONS(57), + [anon_sym_u2283] = ACTIONS(57), + [anon_sym_u2285] = ACTIONS(57), + [anon_sym_u2208] = ACTIONS(57), + [anon_sym_u2209] = ACTIONS(57), + [anon_sym_u2286] = ACTIONS(57), + [anon_sym_u2282] = ACTIONS(57), + [anon_sym_u2284] = ACTIONS(57), + [anon_sym_AT_AT] = ACTIONS(57), }, [264] = { - [sym_statement] = STATE(1816), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(571), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [ts_builtin_sym_end] = ACTIONS(57), [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_RPAREN] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_semi_colon] = ACTIONS(57), + [sym_keyword_as] = ACTIONS(57), + [sym_keyword_where] = ACTIONS(57), + [sym_keyword_group] = ACTIONS(57), + [sym_keyword_and] = ACTIONS(57), + [sym_keyword_or] = ACTIONS(57), + [sym_keyword_is] = ACTIONS(57), + [sym_keyword_not] = ACTIONS(59), + [sym_keyword_contains] = ACTIONS(57), + [sym_keyword_contains_not] = ACTIONS(57), + [sym_keyword_contains_all] = ACTIONS(57), + [sym_keyword_contains_any] = ACTIONS(57), + [sym_keyword_contains_none] = ACTIONS(57), + [sym_keyword_inside] = ACTIONS(57), + [sym_keyword_in] = ACTIONS(59), + [sym_keyword_not_inside] = ACTIONS(57), + [sym_keyword_all_inside] = ACTIONS(57), + [sym_keyword_any_inside] = ACTIONS(57), + [sym_keyword_none_inside] = ACTIONS(57), + [sym_keyword_outside] = ACTIONS(57), + [sym_keyword_intersects] = ACTIONS(57), + [sym_keyword_drop] = ACTIONS(57), + [sym_keyword_schemafull] = ACTIONS(57), + [sym_keyword_schemaless] = ACTIONS(57), + [sym_keyword_changefeed] = ACTIONS(57), + [sym_keyword_type] = ACTIONS(57), + [sym_keyword_permissions] = ACTIONS(57), + [sym_keyword_for] = ACTIONS(57), + [sym_keyword_comment] = ACTIONS(57), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_DASH_GT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(130), + [anon_sym_LT_DASH] = ACTIONS(59), + [anon_sym_LT_DASH_GT] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_DOT] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LT_PIPE] = ACTIONS(57), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_QMARK_COLON] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_QMARK_EQ] = ACTIONS(57), + [anon_sym_STAR_EQ] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG_TILDE] = ACTIONS(57), + [anon_sym_STAR_TILDE] = ACTIONS(57), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_DASH_EQ] = ACTIONS(57), + [anon_sym_u00d7] = ACTIONS(57), + [anon_sym_SLASH] = ACTIONS(59), + [anon_sym_u00f7] = ACTIONS(57), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_u220b] = ACTIONS(57), + [anon_sym_u220c] = ACTIONS(57), + [anon_sym_u2287] = ACTIONS(57), + [anon_sym_u2283] = ACTIONS(57), + [anon_sym_u2285] = ACTIONS(57), + [anon_sym_u2208] = ACTIONS(57), + [anon_sym_u2209] = ACTIONS(57), + [anon_sym_u2286] = ACTIONS(57), + [anon_sym_u2282] = ACTIONS(57), + [anon_sym_u2284] = ACTIONS(57), + [anon_sym_AT_AT] = ACTIONS(57), }, [265] = { - [sym_statement] = STATE(1847), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(564), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1769), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_RPAREN] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_semi_colon] = ACTIONS(118), + [sym_keyword_explain] = ACTIONS(118), + [sym_keyword_parallel] = ACTIONS(118), + [sym_keyword_timeout] = ACTIONS(118), + [sym_keyword_fetch] = ACTIONS(118), + [sym_keyword_limit] = ACTIONS(118), + [sym_keyword_order] = ACTIONS(118), + [sym_keyword_with] = ACTIONS(118), + [sym_keyword_where] = ACTIONS(118), + [sym_keyword_split] = ACTIONS(118), + [sym_keyword_group] = ACTIONS(118), + [sym_keyword_and] = ACTIONS(118), + [sym_keyword_or] = ACTIONS(120), + [sym_keyword_is] = ACTIONS(118), + [sym_keyword_not] = ACTIONS(120), + [sym_keyword_contains] = ACTIONS(118), + [sym_keyword_contains_not] = ACTIONS(118), + [sym_keyword_contains_all] = ACTIONS(118), + [sym_keyword_contains_any] = ACTIONS(118), + [sym_keyword_contains_none] = ACTIONS(118), + [sym_keyword_inside] = ACTIONS(118), + [sym_keyword_in] = ACTIONS(120), + [sym_keyword_not_inside] = ACTIONS(118), + [sym_keyword_all_inside] = ACTIONS(118), + [sym_keyword_any_inside] = ACTIONS(118), + [sym_keyword_none_inside] = ACTIONS(118), + [sym_keyword_outside] = ACTIONS(118), + [sym_keyword_intersects] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_DASH_GT] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_LT_DASH] = ACTIONS(120), + [anon_sym_LT_DASH_GT] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT_DOT] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_AT] = ACTIONS(120), + [anon_sym_LT_PIPE] = ACTIONS(118), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_QMARK_COLON] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_QMARK_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(118), + [anon_sym_BANG_TILDE] = ACTIONS(118), + [anon_sym_STAR_TILDE] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_u00d7] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_u00f7] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_u220b] = ACTIONS(118), + [anon_sym_u220c] = ACTIONS(118), + [anon_sym_u2287] = ACTIONS(118), + [anon_sym_u2283] = ACTIONS(118), + [anon_sym_u2285] = ACTIONS(118), + [anon_sym_u2208] = ACTIONS(118), + [anon_sym_u2209] = ACTIONS(118), + [anon_sym_u2286] = ACTIONS(118), + [anon_sym_u2282] = ACTIONS(118), + [anon_sym_u2284] = ACTIONS(118), + [anon_sym_AT_AT] = ACTIONS(118), }, [266] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_explain] = ACTIONS(180), - [sym_keyword_parallel] = ACTIONS(180), - [sym_keyword_timeout] = ACTIONS(180), - [sym_keyword_fetch] = ACTIONS(180), - [sym_keyword_limit] = ACTIONS(180), - [sym_keyword_order] = ACTIONS(180), - [sym_keyword_with] = ACTIONS(180), - [sym_keyword_where] = ACTIONS(180), - [sym_keyword_split] = ACTIONS(180), - [sym_keyword_group] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(182), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_DASH_GT] = ACTIONS(180), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_LT_DASH] = ACTIONS(182), - [anon_sym_LT_DASH_GT] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), - }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(184), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(184), - [sym_keyword_as] = ACTIONS(184), - [sym_keyword_where] = ACTIONS(184), - [sym_keyword_group] = ACTIONS(184), - [sym_keyword_and] = ACTIONS(184), - [sym_keyword_or] = ACTIONS(184), - [sym_keyword_is] = ACTIONS(184), - [sym_keyword_not] = ACTIONS(186), - [sym_keyword_contains] = ACTIONS(184), - [sym_keyword_contains_not] = ACTIONS(184), - [sym_keyword_contains_all] = ACTIONS(184), - [sym_keyword_contains_any] = ACTIONS(184), - [sym_keyword_contains_none] = ACTIONS(184), - [sym_keyword_inside] = ACTIONS(184), - [sym_keyword_in] = ACTIONS(186), - [sym_keyword_not_inside] = ACTIONS(184), - [sym_keyword_all_inside] = ACTIONS(184), - [sym_keyword_any_inside] = ACTIONS(184), - [sym_keyword_none_inside] = ACTIONS(184), - [sym_keyword_outside] = ACTIONS(184), - [sym_keyword_intersects] = ACTIONS(184), - [sym_keyword_drop] = ACTIONS(184), - [sym_keyword_schemafull] = ACTIONS(184), - [sym_keyword_schemaless] = ACTIONS(184), - [sym_keyword_changefeed] = ACTIONS(184), - [sym_keyword_type] = ACTIONS(184), - [sym_keyword_permissions] = ACTIONS(184), - [sym_keyword_for] = ACTIONS(184), - [sym_keyword_comment] = ACTIONS(184), - [anon_sym_COMMA] = ACTIONS(184), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_LT_DASH] = ACTIONS(186), - [anon_sym_LT_DASH_GT] = ACTIONS(184), - [anon_sym_STAR] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(186), - [anon_sym_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_AT] = ACTIONS(186), - [anon_sym_LT_PIPE] = ACTIONS(184), - [anon_sym_AMP_AMP] = ACTIONS(184), - [anon_sym_PIPE_PIPE] = ACTIONS(184), - [anon_sym_QMARK_QMARK] = ACTIONS(184), - [anon_sym_QMARK_COLON] = ACTIONS(184), - [anon_sym_BANG_EQ] = ACTIONS(184), - [anon_sym_EQ_EQ] = ACTIONS(184), - [anon_sym_QMARK_EQ] = ACTIONS(184), - [anon_sym_STAR_EQ] = ACTIONS(184), - [anon_sym_TILDE] = ACTIONS(184), - [anon_sym_BANG_TILDE] = ACTIONS(184), - [anon_sym_STAR_TILDE] = ACTIONS(184), - [anon_sym_LT_EQ] = ACTIONS(184), - [anon_sym_GT_EQ] = ACTIONS(184), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_PLUS_EQ] = ACTIONS(184), - [anon_sym_DASH_EQ] = ACTIONS(184), - [anon_sym_u00d7] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(186), - [anon_sym_u00f7] = ACTIONS(184), - [anon_sym_STAR_STAR] = ACTIONS(184), - [anon_sym_u220b] = ACTIONS(184), - [anon_sym_u220c] = ACTIONS(184), - [anon_sym_u2287] = ACTIONS(184), - [anon_sym_u2283] = ACTIONS(184), - [anon_sym_u2285] = ACTIONS(184), - [anon_sym_u2208] = ACTIONS(184), - [anon_sym_u2209] = ACTIONS(184), - [anon_sym_u2286] = ACTIONS(184), - [anon_sym_u2282] = ACTIONS(184), - [anon_sym_u2284] = ACTIONS(184), - [anon_sym_AT_AT] = ACTIONS(184), - }, - [268] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(110), [sym_keyword_explain] = ACTIONS(110), @@ -39296,9 +39188,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DASH] = ACTIONS(112), [anon_sym_LT_DASH_GT] = ACTIONS(110), [anon_sym_STAR] = ACTIONS(112), - [anon_sym_DOT] = ACTIONS(110), + [anon_sym_DOT] = ACTIONS(112), [anon_sym_LT] = ACTIONS(112), [anon_sym_GT] = ACTIONS(112), + [anon_sym_DOT_DOT] = ACTIONS(110), [anon_sym_EQ] = ACTIONS(112), [anon_sym_DASH] = ACTIONS(112), [anon_sym_AT] = ACTIONS(112), @@ -39335,7 +39228,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(110), [anon_sym_AT_AT] = ACTIONS(110), }, - [269] = { + [267] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(136), + [sym_keyword_explain] = ACTIONS(136), + [sym_keyword_parallel] = ACTIONS(136), + [sym_keyword_timeout] = ACTIONS(136), + [sym_keyword_fetch] = ACTIONS(136), + [sym_keyword_limit] = ACTIONS(136), + [sym_keyword_order] = ACTIONS(136), + [sym_keyword_with] = ACTIONS(136), + [sym_keyword_where] = ACTIONS(136), + [sym_keyword_split] = ACTIONS(136), + [sym_keyword_group] = ACTIONS(136), + [sym_keyword_and] = ACTIONS(136), + [sym_keyword_or] = ACTIONS(138), + [sym_keyword_is] = ACTIONS(136), + [sym_keyword_not] = ACTIONS(138), + [sym_keyword_contains] = ACTIONS(136), + [sym_keyword_contains_not] = ACTIONS(136), + [sym_keyword_contains_all] = ACTIONS(136), + [sym_keyword_contains_any] = ACTIONS(136), + [sym_keyword_contains_none] = ACTIONS(136), + [sym_keyword_inside] = ACTIONS(136), + [sym_keyword_in] = ACTIONS(138), + [sym_keyword_not_inside] = ACTIONS(136), + [sym_keyword_all_inside] = ACTIONS(136), + [sym_keyword_any_inside] = ACTIONS(136), + [sym_keyword_none_inside] = ACTIONS(136), + [sym_keyword_outside] = ACTIONS(136), + [sym_keyword_intersects] = ACTIONS(136), + [anon_sym_COMMA] = ACTIONS(136), + [anon_sym_DASH_GT] = ACTIONS(136), + [anon_sym_LBRACK] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(136), + [anon_sym_RBRACE] = ACTIONS(136), + [anon_sym_LT_DASH] = ACTIONS(138), + [anon_sym_LT_DASH_GT] = ACTIONS(136), + [anon_sym_STAR] = ACTIONS(138), + [anon_sym_DOT] = ACTIONS(138), + [anon_sym_LT] = ACTIONS(138), + [anon_sym_GT] = ACTIONS(138), + [anon_sym_DOT_DOT] = ACTIONS(136), + [anon_sym_EQ] = ACTIONS(138), + [anon_sym_DASH] = ACTIONS(138), + [anon_sym_AT] = ACTIONS(138), + [anon_sym_LT_PIPE] = ACTIONS(136), + [anon_sym_AMP_AMP] = ACTIONS(136), + [anon_sym_PIPE_PIPE] = ACTIONS(136), + [anon_sym_QMARK_QMARK] = ACTIONS(136), + [anon_sym_QMARK_COLON] = ACTIONS(136), + [anon_sym_BANG_EQ] = ACTIONS(136), + [anon_sym_EQ_EQ] = ACTIONS(136), + [anon_sym_QMARK_EQ] = ACTIONS(136), + [anon_sym_STAR_EQ] = ACTIONS(136), + [anon_sym_TILDE] = ACTIONS(136), + [anon_sym_BANG_TILDE] = ACTIONS(136), + [anon_sym_STAR_TILDE] = ACTIONS(136), + [anon_sym_LT_EQ] = ACTIONS(136), + [anon_sym_GT_EQ] = ACTIONS(136), + [anon_sym_PLUS] = ACTIONS(138), + [anon_sym_PLUS_EQ] = ACTIONS(136), + [anon_sym_DASH_EQ] = ACTIONS(136), + [anon_sym_u00d7] = ACTIONS(136), + [anon_sym_SLASH] = ACTIONS(138), + [anon_sym_u00f7] = ACTIONS(136), + [anon_sym_STAR_STAR] = ACTIONS(136), + [anon_sym_u220b] = ACTIONS(136), + [anon_sym_u220c] = ACTIONS(136), + [anon_sym_u2287] = ACTIONS(136), + [anon_sym_u2283] = ACTIONS(136), + [anon_sym_u2285] = ACTIONS(136), + [anon_sym_u2208] = ACTIONS(136), + [anon_sym_u2209] = ACTIONS(136), + [anon_sym_u2286] = ACTIONS(136), + [anon_sym_u2282] = ACTIONS(136), + [anon_sym_u2284] = ACTIONS(136), + [anon_sym_AT_AT] = ACTIONS(136), + }, + [268] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_order] = ACTIONS(160), + [sym_keyword_with] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_split] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(162), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), + }, + [269] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_as] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_drop] = ACTIONS(160), + [sym_keyword_schemafull] = ACTIONS(160), + [sym_keyword_schemaless] = ACTIONS(160), + [sym_keyword_changefeed] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), + }, + [270] = { + [sym_statement] = STATE(1298), + [sym_begin_statement] = STATE(1324), + [sym_cancel_statement] = STATE(1324), + [sym_commit_statement] = STATE(1324), + [sym_define_analyzer_statement] = STATE(1324), + [sym_define_database] = STATE(1324), + [sym_define_event_statement] = STATE(1324), + [sym_define_field_statement] = STATE(1324), + [sym_define_function_statement] = STATE(1324), + [sym_define_index_statement] = STATE(1324), + [sym_define_namespace_statement] = STATE(1324), + [sym_define_param_statement] = STATE(1324), + [sym_define_scope_statement] = STATE(1324), + [sym_define_table_statement] = STATE(1324), + [sym_define_token_statement] = STATE(1324), + [sym_define_user_statement] = STATE(1324), + [sym_remove_statement] = STATE(1324), + [sym_create_statement] = STATE(1324), + [sym_update_statement] = STATE(1324), + [sym_relate_statement] = STATE(1324), + [sym_delete_statement] = STATE(1324), + [sym_insert_statement] = STATE(1324), + [sym_select_statement] = STATE(1324), + [sym_live_select_statement] = STATE(1324), + [sym_select_clause] = STATE(1326), + [sym_value] = STATE(128), + [sym_function_call] = STATE(475), + [sym_base_value] = STATE(171), + [sym_binary_expression] = STATE(475), + [sym_path] = STATE(475), + [sym_graph_path] = STATE(178), + [sym_number] = STATE(348), + [sym_identifier] = STATE(348), + [sym_array] = STATE(348), + [sym_object] = STATE(348), + [sym_object_key] = STATE(1700), + [sym_record_id] = STATE(348), + [sym_sub_query] = STATE(348), + [sym_duration] = STATE(348), + [sym_point] = STATE(348), + [aux_sym_duration_repeat1] = STATE(258), + [sym_comment] = ACTIONS(3), + [sym_keyword_select] = ACTIONS(5), + [sym_keyword_rand] = ACTIONS(557), + [sym_keyword_true] = ACTIONS(559), + [sym_keyword_false] = ACTIONS(559), + [sym_keyword_begin] = ACTIONS(13), + [sym_keyword_cancel] = ACTIONS(15), + [sym_keyword_commit] = ACTIONS(17), + [sym_keyword_none] = ACTIONS(559), + [sym_keyword_null] = ACTIONS(559), + [sym_keyword_define] = ACTIONS(19), + [sym_keyword_live] = ACTIONS(21), + [sym_keyword_remove] = ACTIONS(23), + [sym_keyword_create] = ACTIONS(25), + [sym_keyword_delete] = ACTIONS(27), + [sym_keyword_update] = ACTIONS(29), + [sym_keyword_insert] = ACTIONS(31), + [sym_keyword_relate] = ACTIONS(33), + [sym_keyword_count] = ACTIONS(561), + [anon_sym_DASH_GT] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(452), + [anon_sym_LT_DASH_GT] = ACTIONS(448), + [aux_sym_type_name_token1] = ACTIONS(567), + [sym_string] = ACTIONS(569), + [sym_prefixed_string] = ACTIONS(569), + [sym_int] = ACTIONS(571), + [sym_float] = ACTIONS(571), + [sym_decimal] = ACTIONS(573), + [sym_variable_name] = ACTIONS(569), + [sym_custom_function_name] = ACTIONS(557), + [sym_function_name] = ACTIONS(557), + [sym_duration_part] = ACTIONS(575), + }, + [271] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(114), + [sym_keyword_explain] = ACTIONS(114), + [sym_keyword_parallel] = ACTIONS(114), + [sym_keyword_timeout] = ACTIONS(114), + [sym_keyword_fetch] = ACTIONS(114), + [sym_keyword_limit] = ACTIONS(114), + [sym_keyword_order] = ACTIONS(114), + [sym_keyword_with] = ACTIONS(114), + [sym_keyword_where] = ACTIONS(114), + [sym_keyword_split] = ACTIONS(114), + [sym_keyword_group] = ACTIONS(114), + [sym_keyword_and] = ACTIONS(114), + [sym_keyword_or] = ACTIONS(116), + [sym_keyword_is] = ACTIONS(114), + [sym_keyword_not] = ACTIONS(116), + [sym_keyword_contains] = ACTIONS(114), + [sym_keyword_contains_not] = ACTIONS(114), + [sym_keyword_contains_all] = ACTIONS(114), + [sym_keyword_contains_any] = ACTIONS(114), + [sym_keyword_contains_none] = ACTIONS(114), + [sym_keyword_inside] = ACTIONS(114), + [sym_keyword_in] = ACTIONS(116), + [sym_keyword_not_inside] = ACTIONS(114), + [sym_keyword_all_inside] = ACTIONS(114), + [sym_keyword_any_inside] = ACTIONS(114), + [sym_keyword_none_inside] = ACTIONS(114), + [sym_keyword_outside] = ACTIONS(114), + [sym_keyword_intersects] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_DASH_GT] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_RPAREN] = ACTIONS(114), + [anon_sym_RBRACE] = ACTIONS(114), + [anon_sym_LT_DASH] = ACTIONS(116), + [anon_sym_LT_DASH_GT] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(116), + [anon_sym_LT] = ACTIONS(116), + [anon_sym_GT] = ACTIONS(116), + [anon_sym_DOT_DOT] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_DASH] = ACTIONS(116), + [anon_sym_AT] = ACTIONS(116), + [anon_sym_LT_PIPE] = ACTIONS(114), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_QMARK_COLON] = ACTIONS(114), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_QMARK_EQ] = ACTIONS(114), + [anon_sym_STAR_EQ] = ACTIONS(114), + [anon_sym_TILDE] = ACTIONS(114), + [anon_sym_BANG_TILDE] = ACTIONS(114), + [anon_sym_STAR_TILDE] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(114), + [anon_sym_GT_EQ] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(116), + [anon_sym_PLUS_EQ] = ACTIONS(114), + [anon_sym_DASH_EQ] = ACTIONS(114), + [anon_sym_u00d7] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(116), + [anon_sym_u00f7] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_u220b] = ACTIONS(114), + [anon_sym_u220c] = ACTIONS(114), + [anon_sym_u2287] = ACTIONS(114), + [anon_sym_u2283] = ACTIONS(114), + [anon_sym_u2285] = ACTIONS(114), + [anon_sym_u2208] = ACTIONS(114), + [anon_sym_u2209] = ACTIONS(114), + [anon_sym_u2286] = ACTIONS(114), + [anon_sym_u2282] = ACTIONS(114), + [anon_sym_u2284] = ACTIONS(114), + [anon_sym_AT_AT] = ACTIONS(114), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(132), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(132), + [sym_keyword_explain] = ACTIONS(132), + [sym_keyword_parallel] = ACTIONS(132), + [sym_keyword_timeout] = ACTIONS(132), + [sym_keyword_fetch] = ACTIONS(132), + [sym_keyword_limit] = ACTIONS(132), + [sym_keyword_order] = ACTIONS(132), + [sym_keyword_with] = ACTIONS(132), + [sym_keyword_where] = ACTIONS(132), + [sym_keyword_split] = ACTIONS(132), + [sym_keyword_group] = ACTIONS(132), + [sym_keyword_and] = ACTIONS(132), + [sym_keyword_or] = ACTIONS(134), + [sym_keyword_is] = ACTIONS(132), + [sym_keyword_not] = ACTIONS(134), + [sym_keyword_contains] = ACTIONS(132), + [sym_keyword_contains_not] = ACTIONS(132), + [sym_keyword_contains_all] = ACTIONS(132), + [sym_keyword_contains_any] = ACTIONS(132), + [sym_keyword_contains_none] = ACTIONS(132), + [sym_keyword_inside] = ACTIONS(132), + [sym_keyword_in] = ACTIONS(134), + [sym_keyword_not_inside] = ACTIONS(132), + [sym_keyword_all_inside] = ACTIONS(132), + [sym_keyword_any_inside] = ACTIONS(132), + [sym_keyword_none_inside] = ACTIONS(132), + [sym_keyword_outside] = ACTIONS(132), + [sym_keyword_intersects] = ACTIONS(132), + [anon_sym_COMMA] = ACTIONS(132), + [anon_sym_DASH_GT] = ACTIONS(132), + [anon_sym_LBRACK] = ACTIONS(132), + [anon_sym_LT_DASH] = ACTIONS(134), + [anon_sym_LT_DASH_GT] = ACTIONS(132), + [anon_sym_STAR] = ACTIONS(134), + [anon_sym_DOT] = ACTIONS(134), + [anon_sym_LT] = ACTIONS(134), + [anon_sym_GT] = ACTIONS(134), + [anon_sym_DOT_DOT] = ACTIONS(132), + [anon_sym_EQ] = ACTIONS(134), + [anon_sym_DASH] = ACTIONS(134), + [anon_sym_AT] = ACTIONS(134), + [anon_sym_LT_PIPE] = ACTIONS(132), + [anon_sym_AMP_AMP] = ACTIONS(132), + [anon_sym_PIPE_PIPE] = ACTIONS(132), + [anon_sym_QMARK_QMARK] = ACTIONS(132), + [anon_sym_QMARK_COLON] = ACTIONS(132), + [anon_sym_BANG_EQ] = ACTIONS(132), + [anon_sym_EQ_EQ] = ACTIONS(132), + [anon_sym_QMARK_EQ] = ACTIONS(132), + [anon_sym_STAR_EQ] = ACTIONS(132), + [anon_sym_TILDE] = ACTIONS(132), + [anon_sym_BANG_TILDE] = ACTIONS(132), + [anon_sym_STAR_TILDE] = ACTIONS(132), + [anon_sym_LT_EQ] = ACTIONS(132), + [anon_sym_GT_EQ] = ACTIONS(132), + [anon_sym_PLUS] = ACTIONS(134), + [anon_sym_PLUS_EQ] = ACTIONS(132), + [anon_sym_DASH_EQ] = ACTIONS(132), + [anon_sym_u00d7] = ACTIONS(132), + [anon_sym_SLASH] = ACTIONS(134), + [anon_sym_u00f7] = ACTIONS(132), + [anon_sym_STAR_STAR] = ACTIONS(132), + [anon_sym_u220b] = ACTIONS(132), + [anon_sym_u220c] = ACTIONS(132), + [anon_sym_u2287] = ACTIONS(132), + [anon_sym_u2283] = ACTIONS(132), + [anon_sym_u2285] = ACTIONS(132), + [anon_sym_u2208] = ACTIONS(132), + [anon_sym_u2209] = ACTIONS(132), + [anon_sym_u2286] = ACTIONS(132), + [anon_sym_u2282] = ACTIONS(132), + [anon_sym_u2284] = ACTIONS(132), + [anon_sym_AT_AT] = ACTIONS(132), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(176), + [sym_keyword_as] = ACTIONS(176), + [sym_keyword_where] = ACTIONS(176), + [sym_keyword_group] = ACTIONS(176), + [sym_keyword_and] = ACTIONS(176), + [sym_keyword_or] = ACTIONS(176), + [sym_keyword_is] = ACTIONS(176), + [sym_keyword_not] = ACTIONS(178), + [sym_keyword_contains] = ACTIONS(176), + [sym_keyword_contains_not] = ACTIONS(176), + [sym_keyword_contains_all] = ACTIONS(176), + [sym_keyword_contains_any] = ACTIONS(176), + [sym_keyword_contains_none] = ACTIONS(176), + [sym_keyword_inside] = ACTIONS(176), + [sym_keyword_in] = ACTIONS(178), + [sym_keyword_not_inside] = ACTIONS(176), + [sym_keyword_all_inside] = ACTIONS(176), + [sym_keyword_any_inside] = ACTIONS(176), + [sym_keyword_none_inside] = ACTIONS(176), + [sym_keyword_outside] = ACTIONS(176), + [sym_keyword_intersects] = ACTIONS(176), + [sym_keyword_drop] = ACTIONS(176), + [sym_keyword_schemafull] = ACTIONS(176), + [sym_keyword_schemaless] = ACTIONS(176), + [sym_keyword_changefeed] = ACTIONS(176), + [sym_keyword_type] = ACTIONS(176), + [sym_keyword_permissions] = ACTIONS(176), + [sym_keyword_for] = ACTIONS(176), + [sym_keyword_comment] = ACTIONS(176), + [anon_sym_COMMA] = ACTIONS(176), + [anon_sym_DASH_GT] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(176), + [anon_sym_LT_DASH] = ACTIONS(178), + [anon_sym_LT_DASH_GT] = ACTIONS(176), + [anon_sym_STAR] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(176), + [anon_sym_LT] = ACTIONS(178), + [anon_sym_GT] = ACTIONS(178), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_AT] = ACTIONS(178), + [anon_sym_LT_PIPE] = ACTIONS(176), + [anon_sym_AMP_AMP] = ACTIONS(176), + [anon_sym_PIPE_PIPE] = ACTIONS(176), + [anon_sym_QMARK_QMARK] = ACTIONS(176), + [anon_sym_QMARK_COLON] = ACTIONS(176), + [anon_sym_BANG_EQ] = ACTIONS(176), + [anon_sym_EQ_EQ] = ACTIONS(176), + [anon_sym_QMARK_EQ] = ACTIONS(176), + [anon_sym_STAR_EQ] = ACTIONS(176), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_BANG_TILDE] = ACTIONS(176), + [anon_sym_STAR_TILDE] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(176), + [anon_sym_GT_EQ] = ACTIONS(176), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_PLUS_EQ] = ACTIONS(176), + [anon_sym_DASH_EQ] = ACTIONS(176), + [anon_sym_u00d7] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(178), + [anon_sym_u00f7] = ACTIONS(176), + [anon_sym_STAR_STAR] = ACTIONS(176), + [anon_sym_u220b] = ACTIONS(176), + [anon_sym_u220c] = ACTIONS(176), + [anon_sym_u2287] = ACTIONS(176), + [anon_sym_u2283] = ACTIONS(176), + [anon_sym_u2285] = ACTIONS(176), + [anon_sym_u2208] = ACTIONS(176), + [anon_sym_u2209] = ACTIONS(176), + [anon_sym_u2286] = ACTIONS(176), + [anon_sym_u2282] = ACTIONS(176), + [anon_sym_u2284] = ACTIONS(176), + [anon_sym_AT_AT] = ACTIONS(176), + }, + [274] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(208), [sym_keyword_explain] = ACTIONS(208), @@ -39412,392 +39849,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(208), [anon_sym_AT_AT] = ACTIONS(208), }, - [270] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(144), - [sym_keyword_explain] = ACTIONS(144), - [sym_keyword_parallel] = ACTIONS(144), - [sym_keyword_timeout] = ACTIONS(144), - [sym_keyword_fetch] = ACTIONS(144), - [sym_keyword_limit] = ACTIONS(144), - [sym_keyword_order] = ACTIONS(144), - [sym_keyword_with] = ACTIONS(144), - [sym_keyword_where] = ACTIONS(144), - [sym_keyword_split] = ACTIONS(144), - [sym_keyword_group] = ACTIONS(144), - [sym_keyword_and] = ACTIONS(144), - [sym_keyword_or] = ACTIONS(146), - [sym_keyword_is] = ACTIONS(144), - [sym_keyword_not] = ACTIONS(146), - [sym_keyword_contains] = ACTIONS(144), - [sym_keyword_contains_not] = ACTIONS(144), - [sym_keyword_contains_all] = ACTIONS(144), - [sym_keyword_contains_any] = ACTIONS(144), - [sym_keyword_contains_none] = ACTIONS(144), - [sym_keyword_inside] = ACTIONS(144), - [sym_keyword_in] = ACTIONS(146), - [sym_keyword_not_inside] = ACTIONS(144), - [sym_keyword_all_inside] = ACTIONS(144), - [sym_keyword_any_inside] = ACTIONS(144), - [sym_keyword_none_inside] = ACTIONS(144), - [sym_keyword_outside] = ACTIONS(144), - [sym_keyword_intersects] = ACTIONS(144), - [anon_sym_COMMA] = ACTIONS(144), - [anon_sym_DASH_GT] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_RPAREN] = ACTIONS(144), - [anon_sym_RBRACE] = ACTIONS(144), - [anon_sym_LT_DASH] = ACTIONS(146), - [anon_sym_LT_DASH_GT] = ACTIONS(144), - [anon_sym_STAR] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(144), - [anon_sym_LT] = ACTIONS(146), - [anon_sym_GT] = ACTIONS(146), - [anon_sym_EQ] = ACTIONS(146), - [anon_sym_DASH] = ACTIONS(146), - [anon_sym_AT] = ACTIONS(146), - [anon_sym_LT_PIPE] = ACTIONS(144), - [anon_sym_AMP_AMP] = ACTIONS(144), - [anon_sym_PIPE_PIPE] = ACTIONS(144), - [anon_sym_QMARK_QMARK] = ACTIONS(144), - [anon_sym_QMARK_COLON] = ACTIONS(144), - [anon_sym_BANG_EQ] = ACTIONS(144), - [anon_sym_EQ_EQ] = ACTIONS(144), - [anon_sym_QMARK_EQ] = ACTIONS(144), - [anon_sym_STAR_EQ] = ACTIONS(144), - [anon_sym_TILDE] = ACTIONS(144), - [anon_sym_BANG_TILDE] = ACTIONS(144), - [anon_sym_STAR_TILDE] = ACTIONS(144), - [anon_sym_LT_EQ] = ACTIONS(144), - [anon_sym_GT_EQ] = ACTIONS(144), - [anon_sym_PLUS] = ACTIONS(146), - [anon_sym_PLUS_EQ] = ACTIONS(144), - [anon_sym_DASH_EQ] = ACTIONS(144), - [anon_sym_u00d7] = ACTIONS(144), - [anon_sym_SLASH] = ACTIONS(146), - [anon_sym_u00f7] = ACTIONS(144), - [anon_sym_STAR_STAR] = ACTIONS(144), - [anon_sym_u220b] = ACTIONS(144), - [anon_sym_u220c] = ACTIONS(144), - [anon_sym_u2287] = ACTIONS(144), - [anon_sym_u2283] = ACTIONS(144), - [anon_sym_u2285] = ACTIONS(144), - [anon_sym_u2208] = ACTIONS(144), - [anon_sym_u2209] = ACTIONS(144), - [anon_sym_u2286] = ACTIONS(144), - [anon_sym_u2282] = ACTIONS(144), - [anon_sym_u2284] = ACTIONS(144), - [anon_sym_AT_AT] = ACTIONS(144), - }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(192), + [275] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_order] = ACTIONS(192), - [sym_keyword_with] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_split] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(194), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_order] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_split] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(162), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), [anon_sym_DOT_DOT] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [272] = { + [276] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(184), - [sym_keyword_explain] = ACTIONS(184), - [sym_keyword_parallel] = ACTIONS(184), - [sym_keyword_timeout] = ACTIONS(184), - [sym_keyword_fetch] = ACTIONS(184), - [sym_keyword_limit] = ACTIONS(184), - [sym_keyword_order] = ACTIONS(184), - [sym_keyword_with] = ACTIONS(184), - [sym_keyword_where] = ACTIONS(184), - [sym_keyword_split] = ACTIONS(184), - [sym_keyword_group] = ACTIONS(184), - [sym_keyword_and] = ACTIONS(184), - [sym_keyword_or] = ACTIONS(186), - [sym_keyword_is] = ACTIONS(184), - [sym_keyword_not] = ACTIONS(186), - [sym_keyword_contains] = ACTIONS(184), - [sym_keyword_contains_not] = ACTIONS(184), - [sym_keyword_contains_all] = ACTIONS(184), - [sym_keyword_contains_any] = ACTIONS(184), - [sym_keyword_contains_none] = ACTIONS(184), - [sym_keyword_inside] = ACTIONS(184), - [sym_keyword_in] = ACTIONS(186), - [sym_keyword_not_inside] = ACTIONS(184), - [sym_keyword_all_inside] = ACTIONS(184), - [sym_keyword_any_inside] = ACTIONS(184), - [sym_keyword_none_inside] = ACTIONS(184), - [sym_keyword_outside] = ACTIONS(184), - [sym_keyword_intersects] = ACTIONS(184), - [anon_sym_COMMA] = ACTIONS(184), - [anon_sym_DASH_GT] = ACTIONS(184), - [anon_sym_LBRACK] = ACTIONS(184), - [anon_sym_RPAREN] = ACTIONS(184), - [anon_sym_RBRACE] = ACTIONS(184), - [anon_sym_LT_DASH] = ACTIONS(186), - [anon_sym_LT_DASH_GT] = ACTIONS(184), - [anon_sym_STAR] = ACTIONS(186), - [anon_sym_DOT] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(186), - [anon_sym_GT] = ACTIONS(186), - [anon_sym_EQ] = ACTIONS(186), - [anon_sym_DASH] = ACTIONS(186), - [anon_sym_AT] = ACTIONS(186), - [anon_sym_LT_PIPE] = ACTIONS(184), - [anon_sym_AMP_AMP] = ACTIONS(184), - [anon_sym_PIPE_PIPE] = ACTIONS(184), - [anon_sym_QMARK_QMARK] = ACTIONS(184), - [anon_sym_QMARK_COLON] = ACTIONS(184), - [anon_sym_BANG_EQ] = ACTIONS(184), - [anon_sym_EQ_EQ] = ACTIONS(184), - [anon_sym_QMARK_EQ] = ACTIONS(184), - [anon_sym_STAR_EQ] = ACTIONS(184), - [anon_sym_TILDE] = ACTIONS(184), - [anon_sym_BANG_TILDE] = ACTIONS(184), - [anon_sym_STAR_TILDE] = ACTIONS(184), - [anon_sym_LT_EQ] = ACTIONS(184), - [anon_sym_GT_EQ] = ACTIONS(184), - [anon_sym_PLUS] = ACTIONS(186), - [anon_sym_PLUS_EQ] = ACTIONS(184), - [anon_sym_DASH_EQ] = ACTIONS(184), - [anon_sym_u00d7] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(186), - [anon_sym_u00f7] = ACTIONS(184), - [anon_sym_STAR_STAR] = ACTIONS(184), - [anon_sym_u220b] = ACTIONS(184), - [anon_sym_u220c] = ACTIONS(184), - [anon_sym_u2287] = ACTIONS(184), - [anon_sym_u2283] = ACTIONS(184), - [anon_sym_u2285] = ACTIONS(184), - [anon_sym_u2208] = ACTIONS(184), - [anon_sym_u2209] = ACTIONS(184), - [anon_sym_u2286] = ACTIONS(184), - [anon_sym_u2282] = ACTIONS(184), - [anon_sym_u2284] = ACTIONS(184), - [anon_sym_AT_AT] = ACTIONS(184), + [sym_semi_colon] = ACTIONS(164), + [sym_keyword_explain] = ACTIONS(164), + [sym_keyword_parallel] = ACTIONS(164), + [sym_keyword_timeout] = ACTIONS(164), + [sym_keyword_fetch] = ACTIONS(164), + [sym_keyword_limit] = ACTIONS(164), + [sym_keyword_order] = ACTIONS(164), + [sym_keyword_with] = ACTIONS(164), + [sym_keyword_where] = ACTIONS(164), + [sym_keyword_split] = ACTIONS(164), + [sym_keyword_group] = ACTIONS(164), + [sym_keyword_and] = ACTIONS(164), + [sym_keyword_or] = ACTIONS(166), + [sym_keyword_is] = ACTIONS(164), + [sym_keyword_not] = ACTIONS(166), + [sym_keyword_contains] = ACTIONS(164), + [sym_keyword_contains_not] = ACTIONS(164), + [sym_keyword_contains_all] = ACTIONS(164), + [sym_keyword_contains_any] = ACTIONS(164), + [sym_keyword_contains_none] = ACTIONS(164), + [sym_keyword_inside] = ACTIONS(164), + [sym_keyword_in] = ACTIONS(166), + [sym_keyword_not_inside] = ACTIONS(164), + [sym_keyword_all_inside] = ACTIONS(164), + [sym_keyword_any_inside] = ACTIONS(164), + [sym_keyword_none_inside] = ACTIONS(164), + [sym_keyword_outside] = ACTIONS(164), + [sym_keyword_intersects] = ACTIONS(164), + [anon_sym_COMMA] = ACTIONS(164), + [anon_sym_DASH_GT] = ACTIONS(164), + [anon_sym_LBRACK] = ACTIONS(164), + [anon_sym_RPAREN] = ACTIONS(164), + [anon_sym_RBRACE] = ACTIONS(164), + [anon_sym_LT_DASH] = ACTIONS(166), + [anon_sym_LT_DASH_GT] = ACTIONS(164), + [anon_sym_STAR] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(164), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(166), + [anon_sym_DASH] = ACTIONS(166), + [anon_sym_AT] = ACTIONS(166), + [anon_sym_LT_PIPE] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(164), + [anon_sym_PIPE_PIPE] = ACTIONS(164), + [anon_sym_QMARK_QMARK] = ACTIONS(164), + [anon_sym_QMARK_COLON] = ACTIONS(164), + [anon_sym_BANG_EQ] = ACTIONS(164), + [anon_sym_EQ_EQ] = ACTIONS(164), + [anon_sym_QMARK_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_TILDE] = ACTIONS(164), + [anon_sym_BANG_TILDE] = ACTIONS(164), + [anon_sym_STAR_TILDE] = ACTIONS(164), + [anon_sym_LT_EQ] = ACTIONS(164), + [anon_sym_GT_EQ] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_u00d7] = ACTIONS(164), + [anon_sym_SLASH] = ACTIONS(166), + [anon_sym_u00f7] = ACTIONS(164), + [anon_sym_STAR_STAR] = ACTIONS(164), + [anon_sym_u220b] = ACTIONS(164), + [anon_sym_u220c] = ACTIONS(164), + [anon_sym_u2287] = ACTIONS(164), + [anon_sym_u2283] = ACTIONS(164), + [anon_sym_u2285] = ACTIONS(164), + [anon_sym_u2208] = ACTIONS(164), + [anon_sym_u2209] = ACTIONS(164), + [anon_sym_u2286] = ACTIONS(164), + [anon_sym_u2282] = ACTIONS(164), + [anon_sym_u2284] = ACTIONS(164), + [anon_sym_AT_AT] = ACTIONS(164), }, - [273] = { - [sym_statement] = STATE(1357), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(137), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1764), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), + [277] = { [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), + [sym_semi_colon] = ACTIONS(57), + [sym_keyword_explain] = ACTIONS(57), + [sym_keyword_parallel] = ACTIONS(57), + [sym_keyword_timeout] = ACTIONS(57), + [sym_keyword_fetch] = ACTIONS(57), + [sym_keyword_limit] = ACTIONS(57), + [sym_keyword_order] = ACTIONS(57), + [sym_keyword_with] = ACTIONS(57), + [sym_keyword_where] = ACTIONS(57), + [sym_keyword_split] = ACTIONS(57), + [sym_keyword_group] = ACTIONS(57), + [sym_keyword_and] = ACTIONS(57), + [sym_keyword_or] = ACTIONS(59), + [sym_keyword_is] = ACTIONS(57), + [sym_keyword_not] = ACTIONS(59), + [sym_keyword_contains] = ACTIONS(57), + [sym_keyword_contains_not] = ACTIONS(57), + [sym_keyword_contains_all] = ACTIONS(57), + [sym_keyword_contains_any] = ACTIONS(57), + [sym_keyword_contains_none] = ACTIONS(57), + [sym_keyword_inside] = ACTIONS(57), + [sym_keyword_in] = ACTIONS(59), + [sym_keyword_not_inside] = ACTIONS(57), + [sym_keyword_all_inside] = ACTIONS(57), + [sym_keyword_any_inside] = ACTIONS(57), + [sym_keyword_none_inside] = ACTIONS(57), + [sym_keyword_outside] = ACTIONS(57), + [sym_keyword_intersects] = ACTIONS(57), + [anon_sym_COMMA] = ACTIONS(57), + [anon_sym_DASH_GT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_RPAREN] = ACTIONS(57), + [anon_sym_RBRACE] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [anon_sym_LT_DASH_GT] = ACTIONS(57), + [anon_sym_STAR] = ACTIONS(59), + [anon_sym_DOT] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(59), + [anon_sym_LT_PIPE] = ACTIONS(57), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_QMARK_COLON] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_QMARK_EQ] = ACTIONS(57), + [anon_sym_STAR_EQ] = ACTIONS(57), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG_TILDE] = ACTIONS(57), + [anon_sym_STAR_TILDE] = ACTIONS(57), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_PLUS_EQ] = ACTIONS(57), + [anon_sym_DASH_EQ] = ACTIONS(57), + [anon_sym_u00d7] = ACTIONS(57), + [anon_sym_SLASH] = ACTIONS(59), + [anon_sym_u00f7] = ACTIONS(57), + [anon_sym_STAR_STAR] = ACTIONS(57), + [anon_sym_u220b] = ACTIONS(57), + [anon_sym_u220c] = ACTIONS(57), + [anon_sym_u2287] = ACTIONS(57), + [anon_sym_u2283] = ACTIONS(57), + [anon_sym_u2285] = ACTIONS(57), + [anon_sym_u2208] = ACTIONS(57), + [anon_sym_u2209] = ACTIONS(57), + [anon_sym_u2286] = ACTIONS(57), + [anon_sym_u2282] = ACTIONS(57), + [anon_sym_u2284] = ACTIONS(57), + [anon_sym_AT_AT] = ACTIONS(57), }, - [274] = { - [sym_statement] = STATE(1397), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(126), - [sym_function_call] = STATE(424), - [sym_base_value] = STATE(162), - [sym_binary_expression] = STATE(424), - [sym_path] = STATE(424), - [sym_graph_path] = STATE(149), - [sym_number] = STATE(272), - [sym_identifier] = STATE(272), - [sym_array] = STATE(272), - [sym_object] = STATE(272), - [sym_object_key] = STATE(1753), - [sym_record_id] = STATE(272), - [sym_sub_query] = STATE(272), - [sym_duration] = STATE(272), - [sym_point] = STATE(272), - [aux_sym_duration_repeat1] = STATE(219), + [278] = { + [sym_where_clause] = STATE(883), + [sym_group_clause] = STATE(986), + [sym_operator] = STATE(737), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(828), [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(555), - [sym_keyword_true] = ACTIONS(557), - [sym_keyword_false] = ACTIONS(557), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(557), - [sym_keyword_null] = ACTIONS(557), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(559), - [anon_sym_DASH_GT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(561), - [anon_sym_LPAREN] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_LT_DASH] = ACTIONS(389), - [anon_sym_LT_DASH_GT] = ACTIONS(385), - [aux_sym_type_name_token1] = ACTIONS(565), - [sym_string] = ACTIONS(567), - [sym_prefixed_string] = ACTIONS(567), - [sym_int] = ACTIONS(569), - [sym_float] = ACTIONS(569), - [sym_decimal] = ACTIONS(571), - [sym_variable_name] = ACTIONS(567), - [sym_custom_function_name] = ACTIONS(555), - [sym_function_name] = ACTIONS(555), - [sym_duration_part] = ACTIONS(573), + [sym_semi_colon] = ACTIONS(602), + [sym_keyword_as] = ACTIONS(602), + [sym_keyword_where] = ACTIONS(604), + [sym_keyword_group] = ACTIONS(606), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(313), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [sym_keyword_drop] = ACTIONS(602), + [sym_keyword_schemafull] = ACTIONS(602), + [sym_keyword_schemaless] = ACTIONS(602), + [sym_keyword_changefeed] = ACTIONS(602), + [sym_keyword_type] = ACTIONS(602), + [sym_keyword_permissions] = ACTIONS(602), + [sym_keyword_comment] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), }, - [275] = { + [279] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(192), [sym_keyword_explain] = ACTIONS(192), @@ -39874,7 +40234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(192), [anon_sym_AT_AT] = ACTIONS(192), }, - [276] = { + [280] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(140), [sym_keyword_explain] = ACTIONS(140), @@ -39951,21 +40311,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(140), [anon_sym_AT_AT] = ACTIONS(140), }, - [277] = { + [281] = { + [ts_builtin_sym_end] = ACTIONS(168), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(168), - [sym_keyword_explain] = ACTIONS(168), - [sym_keyword_parallel] = ACTIONS(168), - [sym_keyword_timeout] = ACTIONS(168), - [sym_keyword_fetch] = ACTIONS(168), - [sym_keyword_limit] = ACTIONS(168), - [sym_keyword_order] = ACTIONS(168), - [sym_keyword_with] = ACTIONS(168), + [sym_keyword_as] = ACTIONS(168), [sym_keyword_where] = ACTIONS(168), - [sym_keyword_split] = ACTIONS(168), [sym_keyword_group] = ACTIONS(168), [sym_keyword_and] = ACTIONS(168), - [sym_keyword_or] = ACTIONS(170), + [sym_keyword_or] = ACTIONS(168), [sym_keyword_is] = ACTIONS(168), [sym_keyword_not] = ACTIONS(170), [sym_keyword_contains] = ACTIONS(168), @@ -39981,11 +40335,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(168), [sym_keyword_outside] = ACTIONS(168), [sym_keyword_intersects] = ACTIONS(168), + [sym_keyword_drop] = ACTIONS(168), + [sym_keyword_schemafull] = ACTIONS(168), + [sym_keyword_schemaless] = ACTIONS(168), + [sym_keyword_changefeed] = ACTIONS(168), + [sym_keyword_type] = ACTIONS(168), + [sym_keyword_permissions] = ACTIONS(168), + [sym_keyword_for] = ACTIONS(168), + [sym_keyword_comment] = ACTIONS(168), [anon_sym_COMMA] = ACTIONS(168), [anon_sym_DASH_GT] = ACTIONS(168), [anon_sym_LBRACK] = ACTIONS(168), - [anon_sym_RPAREN] = ACTIONS(168), - [anon_sym_RBRACE] = ACTIONS(168), [anon_sym_LT_DASH] = ACTIONS(170), [anon_sym_LT_DASH_GT] = ACTIONS(168), [anon_sym_STAR] = ACTIONS(170), @@ -40028,175 +40388,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(168), [anon_sym_AT_AT] = ACTIONS(168), }, - [278] = { + [282] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(164), - [sym_keyword_explain] = ACTIONS(164), - [sym_keyword_parallel] = ACTIONS(164), - [sym_keyword_timeout] = ACTIONS(164), - [sym_keyword_fetch] = ACTIONS(164), - [sym_keyword_limit] = ACTIONS(164), - [sym_keyword_order] = ACTIONS(164), - [sym_keyword_with] = ACTIONS(164), - [sym_keyword_where] = ACTIONS(164), - [sym_keyword_split] = ACTIONS(164), - [sym_keyword_group] = ACTIONS(164), - [sym_keyword_and] = ACTIONS(164), - [sym_keyword_or] = ACTIONS(166), - [sym_keyword_is] = ACTIONS(164), - [sym_keyword_not] = ACTIONS(166), - [sym_keyword_contains] = ACTIONS(164), - [sym_keyword_contains_not] = ACTIONS(164), - [sym_keyword_contains_all] = ACTIONS(164), - [sym_keyword_contains_any] = ACTIONS(164), - [sym_keyword_contains_none] = ACTIONS(164), - [sym_keyword_inside] = ACTIONS(164), - [sym_keyword_in] = ACTIONS(166), - [sym_keyword_not_inside] = ACTIONS(164), - [sym_keyword_all_inside] = ACTIONS(164), - [sym_keyword_any_inside] = ACTIONS(164), - [sym_keyword_none_inside] = ACTIONS(164), - [sym_keyword_outside] = ACTIONS(164), - [sym_keyword_intersects] = ACTIONS(164), - [anon_sym_COMMA] = ACTIONS(164), - [anon_sym_DASH_GT] = ACTIONS(164), - [anon_sym_LBRACK] = ACTIONS(164), - [anon_sym_RPAREN] = ACTIONS(164), - [anon_sym_RBRACE] = ACTIONS(164), - [anon_sym_LT_DASH] = ACTIONS(166), - [anon_sym_LT_DASH_GT] = ACTIONS(164), - [anon_sym_STAR] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(164), - [anon_sym_LT] = ACTIONS(166), - [anon_sym_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_AT] = ACTIONS(166), - [anon_sym_LT_PIPE] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(164), - [anon_sym_PIPE_PIPE] = ACTIONS(164), - [anon_sym_QMARK_QMARK] = ACTIONS(164), - [anon_sym_QMARK_COLON] = ACTIONS(164), - [anon_sym_BANG_EQ] = ACTIONS(164), - [anon_sym_EQ_EQ] = ACTIONS(164), - [anon_sym_QMARK_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_BANG_TILDE] = ACTIONS(164), - [anon_sym_STAR_TILDE] = ACTIONS(164), - [anon_sym_LT_EQ] = ACTIONS(164), - [anon_sym_GT_EQ] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_u00d7] = ACTIONS(164), - [anon_sym_SLASH] = ACTIONS(166), - [anon_sym_u00f7] = ACTIONS(164), - [anon_sym_STAR_STAR] = ACTIONS(164), - [anon_sym_u220b] = ACTIONS(164), - [anon_sym_u220c] = ACTIONS(164), - [anon_sym_u2287] = ACTIONS(164), - [anon_sym_u2283] = ACTIONS(164), - [anon_sym_u2285] = ACTIONS(164), - [anon_sym_u2208] = ACTIONS(164), - [anon_sym_u2209] = ACTIONS(164), - [anon_sym_u2286] = ACTIONS(164), - [anon_sym_u2282] = ACTIONS(164), - [anon_sym_u2284] = ACTIONS(164), - [anon_sym_AT_AT] = ACTIONS(164), + [sym_semi_colon] = ACTIONS(204), + [sym_keyword_explain] = ACTIONS(204), + [sym_keyword_parallel] = ACTIONS(204), + [sym_keyword_timeout] = ACTIONS(204), + [sym_keyword_fetch] = ACTIONS(204), + [sym_keyword_limit] = ACTIONS(204), + [sym_keyword_order] = ACTIONS(204), + [sym_keyword_with] = ACTIONS(204), + [sym_keyword_where] = ACTIONS(204), + [sym_keyword_split] = ACTIONS(204), + [sym_keyword_group] = ACTIONS(204), + [sym_keyword_and] = ACTIONS(204), + [sym_keyword_or] = ACTIONS(206), + [sym_keyword_is] = ACTIONS(204), + [sym_keyword_not] = ACTIONS(206), + [sym_keyword_contains] = ACTIONS(204), + [sym_keyword_contains_not] = ACTIONS(204), + [sym_keyword_contains_all] = ACTIONS(204), + [sym_keyword_contains_any] = ACTIONS(204), + [sym_keyword_contains_none] = ACTIONS(204), + [sym_keyword_inside] = ACTIONS(204), + [sym_keyword_in] = ACTIONS(206), + [sym_keyword_not_inside] = ACTIONS(204), + [sym_keyword_all_inside] = ACTIONS(204), + [sym_keyword_any_inside] = ACTIONS(204), + [sym_keyword_none_inside] = ACTIONS(204), + [sym_keyword_outside] = ACTIONS(204), + [sym_keyword_intersects] = ACTIONS(204), + [anon_sym_COMMA] = ACTIONS(204), + [anon_sym_DASH_GT] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(204), + [anon_sym_RPAREN] = ACTIONS(204), + [anon_sym_RBRACE] = ACTIONS(204), + [anon_sym_LT_DASH] = ACTIONS(206), + [anon_sym_LT_DASH_GT] = ACTIONS(204), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(204), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_DASH] = ACTIONS(206), + [anon_sym_AT] = ACTIONS(206), + [anon_sym_LT_PIPE] = ACTIONS(204), + [anon_sym_AMP_AMP] = ACTIONS(204), + [anon_sym_PIPE_PIPE] = ACTIONS(204), + [anon_sym_QMARK_QMARK] = ACTIONS(204), + [anon_sym_QMARK_COLON] = ACTIONS(204), + [anon_sym_BANG_EQ] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(204), + [anon_sym_QMARK_EQ] = ACTIONS(204), + [anon_sym_STAR_EQ] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(204), + [anon_sym_BANG_TILDE] = ACTIONS(204), + [anon_sym_STAR_TILDE] = ACTIONS(204), + [anon_sym_LT_EQ] = ACTIONS(204), + [anon_sym_GT_EQ] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(206), + [anon_sym_PLUS_EQ] = ACTIONS(204), + [anon_sym_DASH_EQ] = ACTIONS(204), + [anon_sym_u00d7] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(206), + [anon_sym_u00f7] = ACTIONS(204), + [anon_sym_STAR_STAR] = ACTIONS(204), + [anon_sym_u220b] = ACTIONS(204), + [anon_sym_u220c] = ACTIONS(204), + [anon_sym_u2287] = ACTIONS(204), + [anon_sym_u2283] = ACTIONS(204), + [anon_sym_u2285] = ACTIONS(204), + [anon_sym_u2208] = ACTIONS(204), + [anon_sym_u2209] = ACTIONS(204), + [anon_sym_u2286] = ACTIONS(204), + [anon_sym_u2282] = ACTIONS(204), + [anon_sym_u2284] = ACTIONS(204), + [anon_sym_AT_AT] = ACTIONS(204), }, - [279] = { + [283] = { + [ts_builtin_sym_end] = ACTIONS(110), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(160), - [sym_keyword_parallel] = ACTIONS(160), - [sym_keyword_timeout] = ACTIONS(160), - [sym_keyword_fetch] = ACTIONS(160), - [sym_keyword_limit] = ACTIONS(160), - [sym_keyword_order] = ACTIONS(160), - [sym_keyword_with] = ACTIONS(160), - [sym_keyword_where] = ACTIONS(160), - [sym_keyword_split] = ACTIONS(160), - [sym_keyword_group] = ACTIONS(160), - [sym_keyword_and] = ACTIONS(160), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(160), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(160), - [sym_keyword_contains_not] = ACTIONS(160), - [sym_keyword_contains_all] = ACTIONS(160), - [sym_keyword_contains_any] = ACTIONS(160), - [sym_keyword_contains_none] = ACTIONS(160), - [sym_keyword_inside] = ACTIONS(160), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(160), - [sym_keyword_all_inside] = ACTIONS(160), - [sym_keyword_any_inside] = ACTIONS(160), - [sym_keyword_none_inside] = ACTIONS(160), - [sym_keyword_outside] = ACTIONS(160), - [sym_keyword_intersects] = ACTIONS(160), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(110), + [sym_keyword_explain] = ACTIONS(110), + [sym_keyword_parallel] = ACTIONS(110), + [sym_keyword_timeout] = ACTIONS(110), + [sym_keyword_fetch] = ACTIONS(110), + [sym_keyword_limit] = ACTIONS(110), + [sym_keyword_order] = ACTIONS(110), + [sym_keyword_with] = ACTIONS(110), + [sym_keyword_where] = ACTIONS(110), + [sym_keyword_split] = ACTIONS(110), + [sym_keyword_group] = ACTIONS(110), + [sym_keyword_and] = ACTIONS(110), + [sym_keyword_or] = ACTIONS(112), + [sym_keyword_is] = ACTIONS(110), + [sym_keyword_not] = ACTIONS(112), + [sym_keyword_contains] = ACTIONS(110), + [sym_keyword_contains_not] = ACTIONS(110), + [sym_keyword_contains_all] = ACTIONS(110), + [sym_keyword_contains_any] = ACTIONS(110), + [sym_keyword_contains_none] = ACTIONS(110), + [sym_keyword_inside] = ACTIONS(110), + [sym_keyword_in] = ACTIONS(112), + [sym_keyword_not_inside] = ACTIONS(110), + [sym_keyword_all_inside] = ACTIONS(110), + [sym_keyword_any_inside] = ACTIONS(110), + [sym_keyword_none_inside] = ACTIONS(110), + [sym_keyword_outside] = ACTIONS(110), + [sym_keyword_intersects] = ACTIONS(110), + [anon_sym_COMMA] = ACTIONS(110), + [anon_sym_DASH_GT] = ACTIONS(110), + [anon_sym_LBRACK] = ACTIONS(110), + [anon_sym_LT_DASH] = ACTIONS(112), + [anon_sym_LT_DASH_GT] = ACTIONS(110), + [anon_sym_STAR] = ACTIONS(112), + [anon_sym_DOT] = ACTIONS(112), + [anon_sym_LT] = ACTIONS(112), + [anon_sym_GT] = ACTIONS(112), + [anon_sym_DOT_DOT] = ACTIONS(110), + [anon_sym_EQ] = ACTIONS(112), + [anon_sym_DASH] = ACTIONS(112), + [anon_sym_AT] = ACTIONS(112), + [anon_sym_LT_PIPE] = ACTIONS(110), + [anon_sym_AMP_AMP] = ACTIONS(110), + [anon_sym_PIPE_PIPE] = ACTIONS(110), + [anon_sym_QMARK_QMARK] = ACTIONS(110), + [anon_sym_QMARK_COLON] = ACTIONS(110), + [anon_sym_BANG_EQ] = ACTIONS(110), + [anon_sym_EQ_EQ] = ACTIONS(110), + [anon_sym_QMARK_EQ] = ACTIONS(110), + [anon_sym_STAR_EQ] = ACTIONS(110), + [anon_sym_TILDE] = ACTIONS(110), + [anon_sym_BANG_TILDE] = ACTIONS(110), + [anon_sym_STAR_TILDE] = ACTIONS(110), + [anon_sym_LT_EQ] = ACTIONS(110), + [anon_sym_GT_EQ] = ACTIONS(110), + [anon_sym_PLUS] = ACTIONS(112), + [anon_sym_PLUS_EQ] = ACTIONS(110), + [anon_sym_DASH_EQ] = ACTIONS(110), + [anon_sym_u00d7] = ACTIONS(110), + [anon_sym_SLASH] = ACTIONS(112), + [anon_sym_u00f7] = ACTIONS(110), + [anon_sym_STAR_STAR] = ACTIONS(110), + [anon_sym_u220b] = ACTIONS(110), + [anon_sym_u220c] = ACTIONS(110), + [anon_sym_u2287] = ACTIONS(110), + [anon_sym_u2283] = ACTIONS(110), + [anon_sym_u2285] = ACTIONS(110), + [anon_sym_u2208] = ACTIONS(110), + [anon_sym_u2209] = ACTIONS(110), + [anon_sym_u2286] = ACTIONS(110), + [anon_sym_u2282] = ACTIONS(110), + [anon_sym_u2284] = ACTIONS(110), + [anon_sym_AT_AT] = ACTIONS(110), }, - [280] = { + [284] = { + [ts_builtin_sym_end] = ACTIONS(188), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(188), - [sym_keyword_explain] = ACTIONS(188), - [sym_keyword_parallel] = ACTIONS(188), - [sym_keyword_timeout] = ACTIONS(188), - [sym_keyword_fetch] = ACTIONS(188), - [sym_keyword_limit] = ACTIONS(188), - [sym_keyword_order] = ACTIONS(188), - [sym_keyword_with] = ACTIONS(188), + [sym_keyword_as] = ACTIONS(188), [sym_keyword_where] = ACTIONS(188), - [sym_keyword_split] = ACTIONS(188), [sym_keyword_group] = ACTIONS(188), [sym_keyword_and] = ACTIONS(188), - [sym_keyword_or] = ACTIONS(190), + [sym_keyword_or] = ACTIONS(188), [sym_keyword_is] = ACTIONS(188), [sym_keyword_not] = ACTIONS(190), [sym_keyword_contains] = ACTIONS(188), @@ -40212,11 +40566,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(188), [sym_keyword_outside] = ACTIONS(188), [sym_keyword_intersects] = ACTIONS(188), + [sym_keyword_drop] = ACTIONS(188), + [sym_keyword_schemafull] = ACTIONS(188), + [sym_keyword_schemaless] = ACTIONS(188), + [sym_keyword_changefeed] = ACTIONS(188), + [sym_keyword_type] = ACTIONS(188), + [sym_keyword_permissions] = ACTIONS(188), + [sym_keyword_for] = ACTIONS(188), + [sym_keyword_comment] = ACTIONS(188), [anon_sym_COMMA] = ACTIONS(188), [anon_sym_DASH_GT] = ACTIONS(188), [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_RPAREN] = ACTIONS(188), - [anon_sym_RBRACE] = ACTIONS(188), [anon_sym_LT_DASH] = ACTIONS(190), [anon_sym_LT_DASH_GT] = ACTIONS(188), [anon_sym_STAR] = ACTIONS(190), @@ -40254,89 +40614,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2285] = ACTIONS(188), [anon_sym_u2208] = ACTIONS(188), [anon_sym_u2209] = ACTIONS(188), - [anon_sym_u2286] = ACTIONS(188), - [anon_sym_u2282] = ACTIONS(188), - [anon_sym_u2284] = ACTIONS(188), - [anon_sym_AT_AT] = ACTIONS(188), - }, - [281] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(196), - [sym_keyword_explain] = ACTIONS(196), - [sym_keyword_parallel] = ACTIONS(196), - [sym_keyword_timeout] = ACTIONS(196), - [sym_keyword_fetch] = ACTIONS(196), - [sym_keyword_limit] = ACTIONS(196), - [sym_keyword_order] = ACTIONS(196), - [sym_keyword_with] = ACTIONS(196), - [sym_keyword_where] = ACTIONS(196), - [sym_keyword_split] = ACTIONS(196), - [sym_keyword_group] = ACTIONS(196), - [sym_keyword_and] = ACTIONS(196), - [sym_keyword_or] = ACTIONS(198), - [sym_keyword_is] = ACTIONS(196), - [sym_keyword_not] = ACTIONS(198), - [sym_keyword_contains] = ACTIONS(196), - [sym_keyword_contains_not] = ACTIONS(196), - [sym_keyword_contains_all] = ACTIONS(196), - [sym_keyword_contains_any] = ACTIONS(196), - [sym_keyword_contains_none] = ACTIONS(196), - [sym_keyword_inside] = ACTIONS(196), - [sym_keyword_in] = ACTIONS(198), - [sym_keyword_not_inside] = ACTIONS(196), - [sym_keyword_all_inside] = ACTIONS(196), - [sym_keyword_any_inside] = ACTIONS(196), - [sym_keyword_none_inside] = ACTIONS(196), - [sym_keyword_outside] = ACTIONS(196), - [sym_keyword_intersects] = ACTIONS(196), - [anon_sym_COMMA] = ACTIONS(196), - [anon_sym_DASH_GT] = ACTIONS(196), - [anon_sym_LBRACK] = ACTIONS(196), - [anon_sym_RPAREN] = ACTIONS(196), - [anon_sym_RBRACE] = ACTIONS(196), - [anon_sym_LT_DASH] = ACTIONS(198), - [anon_sym_LT_DASH_GT] = ACTIONS(196), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_DOT] = ACTIONS(196), - [anon_sym_LT] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(198), - [anon_sym_AT] = ACTIONS(198), - [anon_sym_LT_PIPE] = ACTIONS(196), - [anon_sym_AMP_AMP] = ACTIONS(196), - [anon_sym_PIPE_PIPE] = ACTIONS(196), - [anon_sym_QMARK_QMARK] = ACTIONS(196), - [anon_sym_QMARK_COLON] = ACTIONS(196), - [anon_sym_BANG_EQ] = ACTIONS(196), - [anon_sym_EQ_EQ] = ACTIONS(196), - [anon_sym_QMARK_EQ] = ACTIONS(196), - [anon_sym_STAR_EQ] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_BANG_TILDE] = ACTIONS(196), - [anon_sym_STAR_TILDE] = ACTIONS(196), - [anon_sym_LT_EQ] = ACTIONS(196), - [anon_sym_GT_EQ] = ACTIONS(196), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_PLUS_EQ] = ACTIONS(196), - [anon_sym_DASH_EQ] = ACTIONS(196), - [anon_sym_u00d7] = ACTIONS(196), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_u00f7] = ACTIONS(196), - [anon_sym_STAR_STAR] = ACTIONS(196), - [anon_sym_u220b] = ACTIONS(196), - [anon_sym_u220c] = ACTIONS(196), - [anon_sym_u2287] = ACTIONS(196), - [anon_sym_u2283] = ACTIONS(196), - [anon_sym_u2285] = ACTIONS(196), - [anon_sym_u2208] = ACTIONS(196), - [anon_sym_u2209] = ACTIONS(196), - [anon_sym_u2286] = ACTIONS(196), - [anon_sym_u2282] = ACTIONS(196), - [anon_sym_u2284] = ACTIONS(196), - [anon_sym_AT_AT] = ACTIONS(196), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), }, - [282] = { + [285] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(212), [sym_keyword_explain] = ACTIONS(212), @@ -40413,237 +40696,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(212), [anon_sym_AT_AT] = ACTIONS(212), }, - [283] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(176), - [sym_keyword_explain] = ACTIONS(176), - [sym_keyword_parallel] = ACTIONS(176), - [sym_keyword_timeout] = ACTIONS(176), - [sym_keyword_fetch] = ACTIONS(176), - [sym_keyword_limit] = ACTIONS(176), - [sym_keyword_order] = ACTIONS(176), - [sym_keyword_with] = ACTIONS(176), - [sym_keyword_where] = ACTIONS(176), - [sym_keyword_split] = ACTIONS(176), - [sym_keyword_group] = ACTIONS(176), - [sym_keyword_and] = ACTIONS(176), - [sym_keyword_or] = ACTIONS(178), - [sym_keyword_is] = ACTIONS(176), - [sym_keyword_not] = ACTIONS(178), - [sym_keyword_contains] = ACTIONS(176), - [sym_keyword_contains_not] = ACTIONS(176), - [sym_keyword_contains_all] = ACTIONS(176), - [sym_keyword_contains_any] = ACTIONS(176), - [sym_keyword_contains_none] = ACTIONS(176), - [sym_keyword_inside] = ACTIONS(176), - [sym_keyword_in] = ACTIONS(178), - [sym_keyword_not_inside] = ACTIONS(176), - [sym_keyword_all_inside] = ACTIONS(176), - [sym_keyword_any_inside] = ACTIONS(176), - [sym_keyword_none_inside] = ACTIONS(176), - [sym_keyword_outside] = ACTIONS(176), - [sym_keyword_intersects] = ACTIONS(176), - [anon_sym_COMMA] = ACTIONS(176), - [anon_sym_DASH_GT] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(176), - [anon_sym_RPAREN] = ACTIONS(176), - [anon_sym_RBRACE] = ACTIONS(176), - [anon_sym_LT_DASH] = ACTIONS(178), - [anon_sym_LT_DASH_GT] = ACTIONS(176), - [anon_sym_STAR] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(176), - [anon_sym_LT] = ACTIONS(178), - [anon_sym_GT] = ACTIONS(178), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(178), - [anon_sym_AT] = ACTIONS(178), - [anon_sym_LT_PIPE] = ACTIONS(176), - [anon_sym_AMP_AMP] = ACTIONS(176), - [anon_sym_PIPE_PIPE] = ACTIONS(176), - [anon_sym_QMARK_QMARK] = ACTIONS(176), - [anon_sym_QMARK_COLON] = ACTIONS(176), - [anon_sym_BANG_EQ] = ACTIONS(176), - [anon_sym_EQ_EQ] = ACTIONS(176), - [anon_sym_QMARK_EQ] = ACTIONS(176), - [anon_sym_STAR_EQ] = ACTIONS(176), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_BANG_TILDE] = ACTIONS(176), - [anon_sym_STAR_TILDE] = ACTIONS(176), - [anon_sym_LT_EQ] = ACTIONS(176), - [anon_sym_GT_EQ] = ACTIONS(176), - [anon_sym_PLUS] = ACTIONS(178), - [anon_sym_PLUS_EQ] = ACTIONS(176), - [anon_sym_DASH_EQ] = ACTIONS(176), - [anon_sym_u00d7] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(178), - [anon_sym_u00f7] = ACTIONS(176), - [anon_sym_STAR_STAR] = ACTIONS(176), - [anon_sym_u220b] = ACTIONS(176), - [anon_sym_u220c] = ACTIONS(176), - [anon_sym_u2287] = ACTIONS(176), - [anon_sym_u2283] = ACTIONS(176), - [anon_sym_u2285] = ACTIONS(176), - [anon_sym_u2208] = ACTIONS(176), - [anon_sym_u2209] = ACTIONS(176), - [anon_sym_u2286] = ACTIONS(176), - [anon_sym_u2282] = ACTIONS(176), - [anon_sym_u2284] = ACTIONS(176), - [anon_sym_AT_AT] = ACTIONS(176), - }, - [284] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(204), - [sym_keyword_explain] = ACTIONS(204), - [sym_keyword_parallel] = ACTIONS(204), - [sym_keyword_timeout] = ACTIONS(204), - [sym_keyword_fetch] = ACTIONS(204), - [sym_keyword_limit] = ACTIONS(204), - [sym_keyword_order] = ACTIONS(204), - [sym_keyword_with] = ACTIONS(204), - [sym_keyword_where] = ACTIONS(204), - [sym_keyword_split] = ACTIONS(204), - [sym_keyword_group] = ACTIONS(204), - [sym_keyword_and] = ACTIONS(204), - [sym_keyword_or] = ACTIONS(206), - [sym_keyword_is] = ACTIONS(204), - [sym_keyword_not] = ACTIONS(206), - [sym_keyword_contains] = ACTIONS(204), - [sym_keyword_contains_not] = ACTIONS(204), - [sym_keyword_contains_all] = ACTIONS(204), - [sym_keyword_contains_any] = ACTIONS(204), - [sym_keyword_contains_none] = ACTIONS(204), - [sym_keyword_inside] = ACTIONS(204), - [sym_keyword_in] = ACTIONS(206), - [sym_keyword_not_inside] = ACTIONS(204), - [sym_keyword_all_inside] = ACTIONS(204), - [sym_keyword_any_inside] = ACTIONS(204), - [sym_keyword_none_inside] = ACTIONS(204), - [sym_keyword_outside] = ACTIONS(204), - [sym_keyword_intersects] = ACTIONS(204), - [anon_sym_COMMA] = ACTIONS(204), - [anon_sym_DASH_GT] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_RPAREN] = ACTIONS(204), - [anon_sym_RBRACE] = ACTIONS(204), - [anon_sym_LT_DASH] = ACTIONS(206), - [anon_sym_LT_DASH_GT] = ACTIONS(204), - [anon_sym_STAR] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(206), - [anon_sym_GT] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_AT] = ACTIONS(206), - [anon_sym_LT_PIPE] = ACTIONS(204), - [anon_sym_AMP_AMP] = ACTIONS(204), - [anon_sym_PIPE_PIPE] = ACTIONS(204), - [anon_sym_QMARK_QMARK] = ACTIONS(204), - [anon_sym_QMARK_COLON] = ACTIONS(204), - [anon_sym_BANG_EQ] = ACTIONS(204), - [anon_sym_EQ_EQ] = ACTIONS(204), - [anon_sym_QMARK_EQ] = ACTIONS(204), - [anon_sym_STAR_EQ] = ACTIONS(204), - [anon_sym_TILDE] = ACTIONS(204), - [anon_sym_BANG_TILDE] = ACTIONS(204), - [anon_sym_STAR_TILDE] = ACTIONS(204), - [anon_sym_LT_EQ] = ACTIONS(204), - [anon_sym_GT_EQ] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(206), - [anon_sym_PLUS_EQ] = ACTIONS(204), - [anon_sym_DASH_EQ] = ACTIONS(204), - [anon_sym_u00d7] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(206), - [anon_sym_u00f7] = ACTIONS(204), - [anon_sym_STAR_STAR] = ACTIONS(204), - [anon_sym_u220b] = ACTIONS(204), - [anon_sym_u220c] = ACTIONS(204), - [anon_sym_u2287] = ACTIONS(204), - [anon_sym_u2283] = ACTIONS(204), - [anon_sym_u2285] = ACTIONS(204), - [anon_sym_u2208] = ACTIONS(204), - [anon_sym_u2209] = ACTIONS(204), - [anon_sym_u2286] = ACTIONS(204), - [anon_sym_u2282] = ACTIONS(204), - [anon_sym_u2284] = ACTIONS(204), - [anon_sym_AT_AT] = ACTIONS(204), - }, - [285] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(152), - [sym_keyword_explain] = ACTIONS(152), - [sym_keyword_parallel] = ACTIONS(152), - [sym_keyword_timeout] = ACTIONS(152), - [sym_keyword_fetch] = ACTIONS(152), - [sym_keyword_limit] = ACTIONS(152), - [sym_keyword_order] = ACTIONS(152), - [sym_keyword_with] = ACTIONS(152), - [sym_keyword_where] = ACTIONS(152), - [sym_keyword_split] = ACTIONS(152), - [sym_keyword_group] = ACTIONS(152), - [sym_keyword_and] = ACTIONS(152), - [sym_keyword_or] = ACTIONS(154), - [sym_keyword_is] = ACTIONS(152), - [sym_keyword_not] = ACTIONS(154), - [sym_keyword_contains] = ACTIONS(152), - [sym_keyword_contains_not] = ACTIONS(152), - [sym_keyword_contains_all] = ACTIONS(152), - [sym_keyword_contains_any] = ACTIONS(152), - [sym_keyword_contains_none] = ACTIONS(152), - [sym_keyword_inside] = ACTIONS(152), - [sym_keyword_in] = ACTIONS(154), - [sym_keyword_not_inside] = ACTIONS(152), - [sym_keyword_all_inside] = ACTIONS(152), - [sym_keyword_any_inside] = ACTIONS(152), - [sym_keyword_none_inside] = ACTIONS(152), - [sym_keyword_outside] = ACTIONS(152), - [sym_keyword_intersects] = ACTIONS(152), - [anon_sym_COMMA] = ACTIONS(152), - [anon_sym_DASH_GT] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(152), - [anon_sym_RPAREN] = ACTIONS(152), - [anon_sym_RBRACE] = ACTIONS(152), - [anon_sym_LT_DASH] = ACTIONS(154), - [anon_sym_LT_DASH_GT] = ACTIONS(152), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LT] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_AT] = ACTIONS(154), - [anon_sym_LT_PIPE] = ACTIONS(152), - [anon_sym_AMP_AMP] = ACTIONS(152), - [anon_sym_PIPE_PIPE] = ACTIONS(152), - [anon_sym_QMARK_QMARK] = ACTIONS(152), - [anon_sym_QMARK_COLON] = ACTIONS(152), - [anon_sym_BANG_EQ] = ACTIONS(152), - [anon_sym_EQ_EQ] = ACTIONS(152), - [anon_sym_QMARK_EQ] = ACTIONS(152), - [anon_sym_STAR_EQ] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_BANG_TILDE] = ACTIONS(152), - [anon_sym_STAR_TILDE] = ACTIONS(152), - [anon_sym_LT_EQ] = ACTIONS(152), - [anon_sym_GT_EQ] = ACTIONS(152), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(152), - [anon_sym_DASH_EQ] = ACTIONS(152), - [anon_sym_u00d7] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(154), - [anon_sym_u00f7] = ACTIONS(152), - [anon_sym_STAR_STAR] = ACTIONS(152), - [anon_sym_u220b] = ACTIONS(152), - [anon_sym_u220c] = ACTIONS(152), - [anon_sym_u2287] = ACTIONS(152), - [anon_sym_u2283] = ACTIONS(152), - [anon_sym_u2285] = ACTIONS(152), - [anon_sym_u2208] = ACTIONS(152), - [anon_sym_u2209] = ACTIONS(152), - [anon_sym_u2286] = ACTIONS(152), - [anon_sym_u2282] = ACTIONS(152), - [anon_sym_u2284] = ACTIONS(152), - [anon_sym_AT_AT] = ACTIONS(152), - }, [286] = { [ts_builtin_sym_end] = ACTIONS(148), [sym_comment] = ACTIONS(3), @@ -40722,468 +40774,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(148), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(156), + [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(156), - [sym_keyword_as] = ACTIONS(156), - [sym_keyword_where] = ACTIONS(156), - [sym_keyword_group] = ACTIONS(156), - [sym_keyword_and] = ACTIONS(156), - [sym_keyword_or] = ACTIONS(156), - [sym_keyword_is] = ACTIONS(156), - [sym_keyword_not] = ACTIONS(158), - [sym_keyword_contains] = ACTIONS(156), - [sym_keyword_contains_not] = ACTIONS(156), - [sym_keyword_contains_all] = ACTIONS(156), - [sym_keyword_contains_any] = ACTIONS(156), - [sym_keyword_contains_none] = ACTIONS(156), - [sym_keyword_inside] = ACTIONS(156), - [sym_keyword_in] = ACTIONS(158), - [sym_keyword_not_inside] = ACTIONS(156), - [sym_keyword_all_inside] = ACTIONS(156), - [sym_keyword_any_inside] = ACTIONS(156), - [sym_keyword_none_inside] = ACTIONS(156), - [sym_keyword_outside] = ACTIONS(156), - [sym_keyword_intersects] = ACTIONS(156), - [sym_keyword_drop] = ACTIONS(156), - [sym_keyword_schemafull] = ACTIONS(156), - [sym_keyword_schemaless] = ACTIONS(156), - [sym_keyword_changefeed] = ACTIONS(156), - [sym_keyword_type] = ACTIONS(156), - [sym_keyword_permissions] = ACTIONS(156), - [sym_keyword_for] = ACTIONS(156), - [sym_keyword_comment] = ACTIONS(156), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_DASH_GT] = ACTIONS(156), - [anon_sym_LBRACK] = ACTIONS(156), - [anon_sym_LT_DASH] = ACTIONS(158), - [anon_sym_LT_DASH_GT] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(156), - [anon_sym_LT] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(158), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(158), - [anon_sym_LT_PIPE] = ACTIONS(156), - [anon_sym_AMP_AMP] = ACTIONS(156), - [anon_sym_PIPE_PIPE] = ACTIONS(156), - [anon_sym_QMARK_QMARK] = ACTIONS(156), - [anon_sym_QMARK_COLON] = ACTIONS(156), - [anon_sym_BANG_EQ] = ACTIONS(156), - [anon_sym_EQ_EQ] = ACTIONS(156), - [anon_sym_QMARK_EQ] = ACTIONS(156), - [anon_sym_STAR_EQ] = ACTIONS(156), - [anon_sym_TILDE] = ACTIONS(156), - [anon_sym_BANG_TILDE] = ACTIONS(156), - [anon_sym_STAR_TILDE] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(156), - [anon_sym_DASH_EQ] = ACTIONS(156), - [anon_sym_u00d7] = ACTIONS(156), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_u00f7] = ACTIONS(156), - [anon_sym_STAR_STAR] = ACTIONS(156), - [anon_sym_u220b] = ACTIONS(156), - [anon_sym_u220c] = ACTIONS(156), - [anon_sym_u2287] = ACTIONS(156), - [anon_sym_u2283] = ACTIONS(156), - [anon_sym_u2285] = ACTIONS(156), - [anon_sym_u2208] = ACTIONS(156), - [anon_sym_u2209] = ACTIONS(156), - [anon_sym_u2286] = ACTIONS(156), - [anon_sym_u2282] = ACTIONS(156), - [anon_sym_u2284] = ACTIONS(156), - [anon_sym_AT_AT] = ACTIONS(156), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_rand] = ACTIONS(160), + [sym_keyword_collate] = ACTIONS(160), + [sym_keyword_numeric] = ACTIONS(160), + [sym_keyword_asc] = ACTIONS(160), + [sym_keyword_desc] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(180), + [sym_where_clause] = STATE(882), + [sym_group_clause] = STATE(967), + [sym_operator] = STATE(737), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(829), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_as] = ACTIONS(180), - [sym_keyword_where] = ACTIONS(180), - [sym_keyword_group] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(180), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [sym_keyword_drop] = ACTIONS(180), - [sym_keyword_schemafull] = ACTIONS(180), - [sym_keyword_schemaless] = ACTIONS(180), - [sym_keyword_changefeed] = ACTIONS(180), - [sym_keyword_type] = ACTIONS(180), - [sym_keyword_permissions] = ACTIONS(180), - [sym_keyword_for] = ACTIONS(180), - [sym_keyword_comment] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_DASH_GT] = ACTIONS(180), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_LT_DASH] = ACTIONS(182), - [anon_sym_LT_DASH_GT] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), + [sym_semi_colon] = ACTIONS(612), + [sym_keyword_as] = ACTIONS(612), + [sym_keyword_where] = ACTIONS(604), + [sym_keyword_group] = ACTIONS(606), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(313), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [sym_keyword_drop] = ACTIONS(612), + [sym_keyword_schemafull] = ACTIONS(612), + [sym_keyword_schemaless] = ACTIONS(612), + [sym_keyword_changefeed] = ACTIONS(612), + [sym_keyword_type] = ACTIONS(612), + [sym_keyword_permissions] = ACTIONS(612), + [sym_keyword_comment] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(608), + [anon_sym_RPAREN] = ACTIONS(612), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), }, [289] = { - [sym_statement] = STATE(1336), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1341), - [sym_value] = STATE(453), - [sym_function_call] = STATE(93), - [sym_base_value] = STATE(159), - [sym_binary_expression] = STATE(93), - [sym_path] = STATE(93), - [sym_graph_path] = STATE(158), - [sym_number] = STATE(61), - [sym_identifier] = STATE(61), - [sym_array] = STATE(61), - [sym_object] = STATE(61), - [sym_object_key] = STATE(1788), - [sym_record_id] = STATE(61), - [sym_sub_query] = STATE(61), - [sym_duration] = STATE(61), - [sym_point] = STATE(61), - [aux_sym_duration_repeat1] = STATE(52), [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(7), - [sym_keyword_true] = ACTIONS(11), - [sym_keyword_false] = ACTIONS(11), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(11), - [sym_keyword_null] = ACTIONS(11), - [sym_keyword_define] = ACTIONS(19), - [sym_keyword_live] = ACTIONS(21), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(25), - [sym_keyword_delete] = ACTIONS(27), - [sym_keyword_update] = ACTIONS(29), - [sym_keyword_insert] = ACTIONS(31), - [sym_keyword_relate] = ACTIONS(33), - [sym_keyword_count] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(45), - [anon_sym_LT_DASH_GT] = ACTIONS(37), - [aux_sym_type_name_token1] = ACTIONS(47), - [sym_string] = ACTIONS(49), - [sym_prefixed_string] = ACTIONS(49), - [sym_int] = ACTIONS(51), - [sym_float] = ACTIONS(51), - [sym_decimal] = ACTIONS(53), - [sym_variable_name] = ACTIONS(49), - [sym_custom_function_name] = ACTIONS(7), - [sym_function_name] = ACTIONS(7), - [sym_duration_part] = ACTIONS(55), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(200), + [sym_keyword_parallel] = ACTIONS(200), + [sym_keyword_timeout] = ACTIONS(200), + [sym_keyword_fetch] = ACTIONS(200), + [sym_keyword_limit] = ACTIONS(200), + [sym_keyword_order] = ACTIONS(200), + [sym_keyword_with] = ACTIONS(200), + [sym_keyword_where] = ACTIONS(200), + [sym_keyword_split] = ACTIONS(200), + [sym_keyword_group] = ACTIONS(200), + [sym_keyword_and] = ACTIONS(200), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(200), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(200), + [sym_keyword_contains_not] = ACTIONS(200), + [sym_keyword_contains_all] = ACTIONS(200), + [sym_keyword_contains_any] = ACTIONS(200), + [sym_keyword_contains_none] = ACTIONS(200), + [sym_keyword_inside] = ACTIONS(200), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(200), + [sym_keyword_all_inside] = ACTIONS(200), + [sym_keyword_any_inside] = ACTIONS(200), + [sym_keyword_none_inside] = ACTIONS(200), + [sym_keyword_outside] = ACTIONS(200), + [sym_keyword_intersects] = ACTIONS(200), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(192), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_rand] = ACTIONS(192), - [sym_keyword_collate] = ACTIONS(192), - [sym_keyword_numeric] = ACTIONS(192), - [sym_keyword_asc] = ACTIONS(192), - [sym_keyword_desc] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(176), + [sym_keyword_explain] = ACTIONS(176), + [sym_keyword_parallel] = ACTIONS(176), + [sym_keyword_timeout] = ACTIONS(176), + [sym_keyword_fetch] = ACTIONS(176), + [sym_keyword_limit] = ACTIONS(176), + [sym_keyword_order] = ACTIONS(176), + [sym_keyword_with] = ACTIONS(176), + [sym_keyword_where] = ACTIONS(176), + [sym_keyword_split] = ACTIONS(176), + [sym_keyword_group] = ACTIONS(176), + [sym_keyword_and] = ACTIONS(176), + [sym_keyword_or] = ACTIONS(178), + [sym_keyword_is] = ACTIONS(176), + [sym_keyword_not] = ACTIONS(178), + [sym_keyword_contains] = ACTIONS(176), + [sym_keyword_contains_not] = ACTIONS(176), + [sym_keyword_contains_all] = ACTIONS(176), + [sym_keyword_contains_any] = ACTIONS(176), + [sym_keyword_contains_none] = ACTIONS(176), + [sym_keyword_inside] = ACTIONS(176), + [sym_keyword_in] = ACTIONS(178), + [sym_keyword_not_inside] = ACTIONS(176), + [sym_keyword_all_inside] = ACTIONS(176), + [sym_keyword_any_inside] = ACTIONS(176), + [sym_keyword_none_inside] = ACTIONS(176), + [sym_keyword_outside] = ACTIONS(176), + [sym_keyword_intersects] = ACTIONS(176), + [anon_sym_COMMA] = ACTIONS(176), + [anon_sym_DASH_GT] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(176), + [anon_sym_RPAREN] = ACTIONS(176), + [anon_sym_RBRACE] = ACTIONS(176), + [anon_sym_LT_DASH] = ACTIONS(178), + [anon_sym_LT_DASH_GT] = ACTIONS(176), + [anon_sym_STAR] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(176), + [anon_sym_LT] = ACTIONS(178), + [anon_sym_GT] = ACTIONS(178), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_AT] = ACTIONS(178), + [anon_sym_LT_PIPE] = ACTIONS(176), + [anon_sym_AMP_AMP] = ACTIONS(176), + [anon_sym_PIPE_PIPE] = ACTIONS(176), + [anon_sym_QMARK_QMARK] = ACTIONS(176), + [anon_sym_QMARK_COLON] = ACTIONS(176), + [anon_sym_BANG_EQ] = ACTIONS(176), + [anon_sym_EQ_EQ] = ACTIONS(176), + [anon_sym_QMARK_EQ] = ACTIONS(176), + [anon_sym_STAR_EQ] = ACTIONS(176), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_BANG_TILDE] = ACTIONS(176), + [anon_sym_STAR_TILDE] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(176), + [anon_sym_GT_EQ] = ACTIONS(176), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_PLUS_EQ] = ACTIONS(176), + [anon_sym_DASH_EQ] = ACTIONS(176), + [anon_sym_u00d7] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(178), + [anon_sym_u00f7] = ACTIONS(176), + [anon_sym_STAR_STAR] = ACTIONS(176), + [anon_sym_u220b] = ACTIONS(176), + [anon_sym_u220c] = ACTIONS(176), + [anon_sym_u2287] = ACTIONS(176), + [anon_sym_u2283] = ACTIONS(176), + [anon_sym_u2285] = ACTIONS(176), + [anon_sym_u2208] = ACTIONS(176), + [anon_sym_u2209] = ACTIONS(176), + [anon_sym_u2286] = ACTIONS(176), + [anon_sym_u2282] = ACTIONS(176), + [anon_sym_u2284] = ACTIONS(176), + [anon_sym_AT_AT] = ACTIONS(176), }, [291] = { - [sym_statement] = STATE(1357), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1341), - [sym_value] = STATE(163), - [sym_function_call] = STATE(93), - [sym_base_value] = STATE(159), - [sym_binary_expression] = STATE(93), - [sym_path] = STATE(93), - [sym_graph_path] = STATE(158), - [sym_number] = STATE(61), - [sym_identifier] = STATE(61), - [sym_array] = STATE(61), - [sym_object] = STATE(61), - [sym_object_key] = STATE(1780), - [sym_record_id] = STATE(61), - [sym_sub_query] = STATE(61), - [sym_duration] = STATE(61), - [sym_point] = STATE(61), - [aux_sym_duration_repeat1] = STATE(52), - [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(7), - [sym_keyword_true] = ACTIONS(11), - [sym_keyword_false] = ACTIONS(11), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(11), - [sym_keyword_null] = ACTIONS(11), - [sym_keyword_define] = ACTIONS(19), - [sym_keyword_live] = ACTIONS(21), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(25), - [sym_keyword_delete] = ACTIONS(27), - [sym_keyword_update] = ACTIONS(29), - [sym_keyword_insert] = ACTIONS(31), - [sym_keyword_relate] = ACTIONS(33), - [sym_keyword_count] = ACTIONS(35), - [anon_sym_DASH_GT] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(45), - [anon_sym_LT_DASH_GT] = ACTIONS(37), - [aux_sym_type_name_token1] = ACTIONS(47), - [sym_string] = ACTIONS(49), - [sym_prefixed_string] = ACTIONS(49), - [sym_int] = ACTIONS(51), - [sym_float] = ACTIONS(51), - [sym_decimal] = ACTIONS(53), - [sym_variable_name] = ACTIONS(49), - [sym_custom_function_name] = ACTIONS(7), - [sym_function_name] = ACTIONS(7), - [sym_duration_part] = ACTIONS(55), - }, - [292] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_return] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [293] = { + [ts_builtin_sym_end] = ACTIONS(57), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(57), [sym_keyword_explain] = ACTIONS(57), @@ -41216,8 +41115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(57), [anon_sym_DASH_GT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_RPAREN] = ACTIONS(57), - [anon_sym_RBRACE] = ACTIONS(57), + [anon_sym_COLON] = ACTIONS(130), [anon_sym_LT_DASH] = ACTIONS(59), [anon_sym_LT_DASH_GT] = ACTIONS(57), [anon_sym_STAR] = ACTIONS(59), @@ -41260,269 +41158,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(57), [anon_sym_AT_AT] = ACTIONS(57), }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(128), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(128), - [sym_keyword_explain] = ACTIONS(128), - [sym_keyword_parallel] = ACTIONS(128), - [sym_keyword_timeout] = ACTIONS(128), - [sym_keyword_fetch] = ACTIONS(128), - [sym_keyword_limit] = ACTIONS(128), - [sym_keyword_order] = ACTIONS(128), - [sym_keyword_with] = ACTIONS(128), - [sym_keyword_where] = ACTIONS(128), - [sym_keyword_split] = ACTIONS(128), - [sym_keyword_group] = ACTIONS(128), - [sym_keyword_and] = ACTIONS(128), - [sym_keyword_or] = ACTIONS(130), - [sym_keyword_is] = ACTIONS(128), - [sym_keyword_not] = ACTIONS(130), - [sym_keyword_contains] = ACTIONS(128), - [sym_keyword_contains_not] = ACTIONS(128), - [sym_keyword_contains_all] = ACTIONS(128), - [sym_keyword_contains_any] = ACTIONS(128), - [sym_keyword_contains_none] = ACTIONS(128), - [sym_keyword_inside] = ACTIONS(128), - [sym_keyword_in] = ACTIONS(130), - [sym_keyword_not_inside] = ACTIONS(128), - [sym_keyword_all_inside] = ACTIONS(128), - [sym_keyword_any_inside] = ACTIONS(128), - [sym_keyword_none_inside] = ACTIONS(128), - [sym_keyword_outside] = ACTIONS(128), - [sym_keyword_intersects] = ACTIONS(128), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_DASH_GT] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(128), - [anon_sym_LT_DASH] = ACTIONS(130), - [anon_sym_LT_DASH_GT] = ACTIONS(128), - [anon_sym_STAR] = ACTIONS(130), - [anon_sym_DOT] = ACTIONS(130), - [anon_sym_LT] = ACTIONS(130), - [anon_sym_GT] = ACTIONS(130), - [anon_sym_DOT_DOT] = ACTIONS(128), - [anon_sym_EQ] = ACTIONS(130), - [anon_sym_DASH] = ACTIONS(130), - [anon_sym_AT] = ACTIONS(130), - [anon_sym_LT_PIPE] = ACTIONS(128), - [anon_sym_AMP_AMP] = ACTIONS(128), - [anon_sym_PIPE_PIPE] = ACTIONS(128), - [anon_sym_QMARK_QMARK] = ACTIONS(128), - [anon_sym_QMARK_COLON] = ACTIONS(128), - [anon_sym_BANG_EQ] = ACTIONS(128), - [anon_sym_EQ_EQ] = ACTIONS(128), - [anon_sym_QMARK_EQ] = ACTIONS(128), - [anon_sym_STAR_EQ] = ACTIONS(128), - [anon_sym_TILDE] = ACTIONS(128), - [anon_sym_BANG_TILDE] = ACTIONS(128), - [anon_sym_STAR_TILDE] = ACTIONS(128), - [anon_sym_LT_EQ] = ACTIONS(128), - [anon_sym_GT_EQ] = ACTIONS(128), - [anon_sym_PLUS] = ACTIONS(130), - [anon_sym_PLUS_EQ] = ACTIONS(128), - [anon_sym_DASH_EQ] = ACTIONS(128), - [anon_sym_u00d7] = ACTIONS(128), - [anon_sym_SLASH] = ACTIONS(130), - [anon_sym_u00f7] = ACTIONS(128), - [anon_sym_STAR_STAR] = ACTIONS(128), - [anon_sym_u220b] = ACTIONS(128), - [anon_sym_u220c] = ACTIONS(128), - [anon_sym_u2287] = ACTIONS(128), - [anon_sym_u2283] = ACTIONS(128), - [anon_sym_u2285] = ACTIONS(128), - [anon_sym_u2208] = ACTIONS(128), - [anon_sym_u2209] = ACTIONS(128), - [anon_sym_u2286] = ACTIONS(128), - [anon_sym_u2282] = ACTIONS(128), - [anon_sym_u2284] = ACTIONS(128), - [anon_sym_AT_AT] = ACTIONS(128), - }, - [295] = { - [sym_statement] = STATE(1336), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1309), - [sym_value] = STATE(403), - [sym_function_call] = STATE(78), - [sym_base_value] = STATE(4), - [sym_binary_expression] = STATE(78), - [sym_path] = STATE(78), - [sym_graph_path] = STATE(5), - [sym_number] = STATE(30), - [sym_identifier] = STATE(30), - [sym_array] = STATE(30), - [sym_object] = STATE(30), - [sym_object_key] = STATE(1766), - [sym_record_id] = STATE(30), - [sym_sub_query] = STATE(30), - [sym_duration] = STATE(30), - [sym_point] = STATE(30), - [aux_sym_duration_repeat1] = STATE(7), - [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(468), - [sym_keyword_true] = ACTIONS(470), - [sym_keyword_false] = ACTIONS(470), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(470), - [sym_keyword_null] = ACTIONS(470), - [sym_keyword_define] = ACTIONS(472), - [sym_keyword_live] = ACTIONS(474), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(476), - [sym_keyword_delete] = ACTIONS(478), - [sym_keyword_update] = ACTIONS(480), - [sym_keyword_insert] = ACTIONS(482), - [sym_keyword_relate] = ACTIONS(484), - [sym_keyword_count] = ACTIONS(486), - [anon_sym_DASH_GT] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_LPAREN] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(85), - [anon_sym_LT_DASH_GT] = ACTIONS(81), - [aux_sym_type_name_token1] = ACTIONS(494), - [sym_string] = ACTIONS(496), - [sym_prefixed_string] = ACTIONS(496), - [sym_int] = ACTIONS(498), - [sym_float] = ACTIONS(498), - [sym_decimal] = ACTIONS(500), - [sym_variable_name] = ACTIONS(496), - [sym_custom_function_name] = ACTIONS(468), - [sym_function_name] = ACTIONS(468), - [sym_duration_part] = ACTIONS(502), - }, - [296] = { + [292] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(148), - [sym_keyword_explain] = ACTIONS(148), - [sym_keyword_parallel] = ACTIONS(148), - [sym_keyword_timeout] = ACTIONS(148), - [sym_keyword_fetch] = ACTIONS(148), - [sym_keyword_limit] = ACTIONS(148), - [sym_keyword_order] = ACTIONS(148), - [sym_keyword_with] = ACTIONS(148), - [sym_keyword_where] = ACTIONS(148), - [sym_keyword_split] = ACTIONS(148), - [sym_keyword_group] = ACTIONS(148), - [sym_keyword_and] = ACTIONS(148), - [sym_keyword_or] = ACTIONS(150), - [sym_keyword_is] = ACTIONS(148), - [sym_keyword_not] = ACTIONS(150), - [sym_keyword_contains] = ACTIONS(148), - [sym_keyword_contains_not] = ACTIONS(148), - [sym_keyword_contains_all] = ACTIONS(148), - [sym_keyword_contains_any] = ACTIONS(148), - [sym_keyword_contains_none] = ACTIONS(148), - [sym_keyword_inside] = ACTIONS(148), - [sym_keyword_in] = ACTIONS(150), - [sym_keyword_not_inside] = ACTIONS(148), - [sym_keyword_all_inside] = ACTIONS(148), - [sym_keyword_any_inside] = ACTIONS(148), - [sym_keyword_none_inside] = ACTIONS(148), - [sym_keyword_outside] = ACTIONS(148), - [sym_keyword_intersects] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_DASH_GT] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_LT_DASH] = ACTIONS(150), - [anon_sym_LT_DASH_GT] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_EQ] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(150), - [anon_sym_LT_PIPE] = ACTIONS(148), - [anon_sym_AMP_AMP] = ACTIONS(148), - [anon_sym_PIPE_PIPE] = ACTIONS(148), - [anon_sym_QMARK_QMARK] = ACTIONS(148), - [anon_sym_QMARK_COLON] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_QMARK_EQ] = ACTIONS(148), - [anon_sym_STAR_EQ] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_STAR_TILDE] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(148), - [anon_sym_DASH_EQ] = ACTIONS(148), - [anon_sym_u00d7] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(150), - [anon_sym_u00f7] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_u220b] = ACTIONS(148), - [anon_sym_u220c] = ACTIONS(148), - [anon_sym_u2287] = ACTIONS(148), - [anon_sym_u2283] = ACTIONS(148), - [anon_sym_u2285] = ACTIONS(148), - [anon_sym_u2208] = ACTIONS(148), - [anon_sym_u2209] = ACTIONS(148), - [anon_sym_u2286] = ACTIONS(148), - [anon_sym_u2282] = ACTIONS(148), - [anon_sym_u2284] = ACTIONS(148), - [anon_sym_AT_AT] = ACTIONS(148), + [sym_semi_colon] = ACTIONS(180), + [sym_keyword_explain] = ACTIONS(180), + [sym_keyword_parallel] = ACTIONS(180), + [sym_keyword_timeout] = ACTIONS(180), + [sym_keyword_fetch] = ACTIONS(180), + [sym_keyword_limit] = ACTIONS(180), + [sym_keyword_order] = ACTIONS(180), + [sym_keyword_with] = ACTIONS(180), + [sym_keyword_where] = ACTIONS(180), + [sym_keyword_split] = ACTIONS(180), + [sym_keyword_group] = ACTIONS(180), + [sym_keyword_and] = ACTIONS(180), + [sym_keyword_or] = ACTIONS(182), + [sym_keyword_is] = ACTIONS(180), + [sym_keyword_not] = ACTIONS(182), + [sym_keyword_contains] = ACTIONS(180), + [sym_keyword_contains_not] = ACTIONS(180), + [sym_keyword_contains_all] = ACTIONS(180), + [sym_keyword_contains_any] = ACTIONS(180), + [sym_keyword_contains_none] = ACTIONS(180), + [sym_keyword_inside] = ACTIONS(180), + [sym_keyword_in] = ACTIONS(182), + [sym_keyword_not_inside] = ACTIONS(180), + [sym_keyword_all_inside] = ACTIONS(180), + [sym_keyword_any_inside] = ACTIONS(180), + [sym_keyword_none_inside] = ACTIONS(180), + [sym_keyword_outside] = ACTIONS(180), + [sym_keyword_intersects] = ACTIONS(180), + [anon_sym_COMMA] = ACTIONS(180), + [anon_sym_DASH_GT] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_RPAREN] = ACTIONS(180), + [anon_sym_RBRACE] = ACTIONS(180), + [anon_sym_LT_DASH] = ACTIONS(182), + [anon_sym_LT_DASH_GT] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(182), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(182), + [anon_sym_GT] = ACTIONS(182), + [anon_sym_EQ] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_AT] = ACTIONS(182), + [anon_sym_LT_PIPE] = ACTIONS(180), + [anon_sym_AMP_AMP] = ACTIONS(180), + [anon_sym_PIPE_PIPE] = ACTIONS(180), + [anon_sym_QMARK_QMARK] = ACTIONS(180), + [anon_sym_QMARK_COLON] = ACTIONS(180), + [anon_sym_BANG_EQ] = ACTIONS(180), + [anon_sym_EQ_EQ] = ACTIONS(180), + [anon_sym_QMARK_EQ] = ACTIONS(180), + [anon_sym_STAR_EQ] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_BANG_TILDE] = ACTIONS(180), + [anon_sym_STAR_TILDE] = ACTIONS(180), + [anon_sym_LT_EQ] = ACTIONS(180), + [anon_sym_GT_EQ] = ACTIONS(180), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_PLUS_EQ] = ACTIONS(180), + [anon_sym_DASH_EQ] = ACTIONS(180), + [anon_sym_u00d7] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(182), + [anon_sym_u00f7] = ACTIONS(180), + [anon_sym_STAR_STAR] = ACTIONS(180), + [anon_sym_u220b] = ACTIONS(180), + [anon_sym_u220c] = ACTIONS(180), + [anon_sym_u2287] = ACTIONS(180), + [anon_sym_u2283] = ACTIONS(180), + [anon_sym_u2285] = ACTIONS(180), + [anon_sym_u2208] = ACTIONS(180), + [anon_sym_u2209] = ACTIONS(180), + [anon_sym_u2286] = ACTIONS(180), + [anon_sym_u2282] = ACTIONS(180), + [anon_sym_u2284] = ACTIONS(180), + [anon_sym_AT_AT] = ACTIONS(180), }, - [297] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), + [293] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(196), + [sym_keyword_explain] = ACTIONS(196), + [sym_keyword_parallel] = ACTIONS(196), + [sym_keyword_timeout] = ACTIONS(196), + [sym_keyword_fetch] = ACTIONS(196), + [sym_keyword_limit] = ACTIONS(196), + [sym_keyword_order] = ACTIONS(196), + [sym_keyword_with] = ACTIONS(196), + [sym_keyword_where] = ACTIONS(196), + [sym_keyword_split] = ACTIONS(196), + [sym_keyword_group] = ACTIONS(196), + [sym_keyword_and] = ACTIONS(196), + [sym_keyword_or] = ACTIONS(198), + [sym_keyword_is] = ACTIONS(196), + [sym_keyword_not] = ACTIONS(198), + [sym_keyword_contains] = ACTIONS(196), + [sym_keyword_contains_not] = ACTIONS(196), + [sym_keyword_contains_all] = ACTIONS(196), + [sym_keyword_contains_any] = ACTIONS(196), + [sym_keyword_contains_none] = ACTIONS(196), + [sym_keyword_inside] = ACTIONS(196), + [sym_keyword_in] = ACTIONS(198), + [sym_keyword_not_inside] = ACTIONS(196), + [sym_keyword_all_inside] = ACTIONS(196), + [sym_keyword_any_inside] = ACTIONS(196), + [sym_keyword_none_inside] = ACTIONS(196), + [sym_keyword_outside] = ACTIONS(196), + [sym_keyword_intersects] = ACTIONS(196), + [anon_sym_COMMA] = ACTIONS(196), + [anon_sym_DASH_GT] = ACTIONS(196), + [anon_sym_LBRACK] = ACTIONS(196), + [anon_sym_RPAREN] = ACTIONS(196), + [anon_sym_RBRACE] = ACTIONS(196), + [anon_sym_LT_DASH] = ACTIONS(198), + [anon_sym_LT_DASH_GT] = ACTIONS(196), + [anon_sym_STAR] = ACTIONS(198), + [anon_sym_DOT] = ACTIONS(196), + [anon_sym_LT] = ACTIONS(198), + [anon_sym_GT] = ACTIONS(198), + [anon_sym_EQ] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(198), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_LT_PIPE] = ACTIONS(196), + [anon_sym_AMP_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(196), + [anon_sym_QMARK_QMARK] = ACTIONS(196), + [anon_sym_QMARK_COLON] = ACTIONS(196), + [anon_sym_BANG_EQ] = ACTIONS(196), + [anon_sym_EQ_EQ] = ACTIONS(196), + [anon_sym_QMARK_EQ] = ACTIONS(196), + [anon_sym_STAR_EQ] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_BANG_TILDE] = ACTIONS(196), + [anon_sym_STAR_TILDE] = ACTIONS(196), + [anon_sym_LT_EQ] = ACTIONS(196), + [anon_sym_GT_EQ] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(198), + [anon_sym_PLUS_EQ] = ACTIONS(196), + [anon_sym_DASH_EQ] = ACTIONS(196), + [anon_sym_u00d7] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(198), + [anon_sym_u00f7] = ACTIONS(196), + [anon_sym_STAR_STAR] = ACTIONS(196), + [anon_sym_u220b] = ACTIONS(196), + [anon_sym_u220c] = ACTIONS(196), + [anon_sym_u2287] = ACTIONS(196), + [anon_sym_u2283] = ACTIONS(196), + [anon_sym_u2285] = ACTIONS(196), + [anon_sym_u2208] = ACTIONS(196), + [anon_sym_u2209] = ACTIONS(196), + [anon_sym_u2286] = ACTIONS(196), + [anon_sym_u2282] = ACTIONS(196), + [anon_sym_u2284] = ACTIONS(196), + [anon_sym_AT_AT] = ACTIONS(196), + }, + [294] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(160), - [sym_keyword_return] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_order] = ACTIONS(160), + [sym_keyword_with] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_split] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), + [sym_keyword_is] = ACTIONS(160), [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), [anon_sym_COMMA] = ACTIONS(160), [anon_sym_DASH_GT] = ACTIONS(160), [anon_sym_LBRACK] = ACTIONS(160), [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), [anon_sym_RBRACE] = ACTIONS(160), [anon_sym_LT_DASH] = ACTIONS(162), [anon_sym_LT_DASH_GT] = ACTIONS(160), @@ -41530,8 +41353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(160), [anon_sym_LT] = ACTIONS(162), [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), [anon_sym_EQ] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), @@ -41568,238 +41389,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, - [298] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(156), - [sym_keyword_explain] = ACTIONS(156), - [sym_keyword_parallel] = ACTIONS(156), - [sym_keyword_timeout] = ACTIONS(156), - [sym_keyword_fetch] = ACTIONS(156), - [sym_keyword_limit] = ACTIONS(156), - [sym_keyword_order] = ACTIONS(156), - [sym_keyword_with] = ACTIONS(156), - [sym_keyword_where] = ACTIONS(156), - [sym_keyword_split] = ACTIONS(156), - [sym_keyword_group] = ACTIONS(156), - [sym_keyword_and] = ACTIONS(156), - [sym_keyword_or] = ACTIONS(158), - [sym_keyword_is] = ACTIONS(156), - [sym_keyword_not] = ACTIONS(158), - [sym_keyword_contains] = ACTIONS(156), - [sym_keyword_contains_not] = ACTIONS(156), - [sym_keyword_contains_all] = ACTIONS(156), - [sym_keyword_contains_any] = ACTIONS(156), - [sym_keyword_contains_none] = ACTIONS(156), - [sym_keyword_inside] = ACTIONS(156), - [sym_keyword_in] = ACTIONS(158), - [sym_keyword_not_inside] = ACTIONS(156), - [sym_keyword_all_inside] = ACTIONS(156), - [sym_keyword_any_inside] = ACTIONS(156), - [sym_keyword_none_inside] = ACTIONS(156), - [sym_keyword_outside] = ACTIONS(156), - [sym_keyword_intersects] = ACTIONS(156), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_DASH_GT] = ACTIONS(156), - [anon_sym_LBRACK] = ACTIONS(156), - [anon_sym_RPAREN] = ACTIONS(156), - [anon_sym_RBRACE] = ACTIONS(156), - [anon_sym_LT_DASH] = ACTIONS(158), - [anon_sym_LT_DASH_GT] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_DOT] = ACTIONS(156), - [anon_sym_LT] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(158), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(158), - [anon_sym_LT_PIPE] = ACTIONS(156), - [anon_sym_AMP_AMP] = ACTIONS(156), - [anon_sym_PIPE_PIPE] = ACTIONS(156), - [anon_sym_QMARK_QMARK] = ACTIONS(156), - [anon_sym_QMARK_COLON] = ACTIONS(156), - [anon_sym_BANG_EQ] = ACTIONS(156), - [anon_sym_EQ_EQ] = ACTIONS(156), - [anon_sym_QMARK_EQ] = ACTIONS(156), - [anon_sym_STAR_EQ] = ACTIONS(156), - [anon_sym_TILDE] = ACTIONS(156), - [anon_sym_BANG_TILDE] = ACTIONS(156), - [anon_sym_STAR_TILDE] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(156), - [anon_sym_DASH_EQ] = ACTIONS(156), - [anon_sym_u00d7] = ACTIONS(156), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_u00f7] = ACTIONS(156), - [anon_sym_STAR_STAR] = ACTIONS(156), - [anon_sym_u220b] = ACTIONS(156), - [anon_sym_u220c] = ACTIONS(156), - [anon_sym_u2287] = ACTIONS(156), - [anon_sym_u2283] = ACTIONS(156), - [anon_sym_u2285] = ACTIONS(156), - [anon_sym_u2208] = ACTIONS(156), - [anon_sym_u2209] = ACTIONS(156), - [anon_sym_u2286] = ACTIONS(156), - [anon_sym_u2282] = ACTIONS(156), - [anon_sym_u2284] = ACTIONS(156), - [anon_sym_AT_AT] = ACTIONS(156), - }, - [299] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_order] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_split] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(194), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(604), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(136), + [295] = { + [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(136), - [sym_keyword_explain] = ACTIONS(136), - [sym_keyword_parallel] = ACTIONS(136), - [sym_keyword_timeout] = ACTIONS(136), - [sym_keyword_fetch] = ACTIONS(136), - [sym_keyword_limit] = ACTIONS(136), - [sym_keyword_order] = ACTIONS(136), - [sym_keyword_with] = ACTIONS(136), - [sym_keyword_where] = ACTIONS(136), - [sym_keyword_split] = ACTIONS(136), - [sym_keyword_group] = ACTIONS(136), - [sym_keyword_and] = ACTIONS(136), - [sym_keyword_or] = ACTIONS(138), - [sym_keyword_is] = ACTIONS(136), - [sym_keyword_not] = ACTIONS(138), - [sym_keyword_contains] = ACTIONS(136), - [sym_keyword_contains_not] = ACTIONS(136), - [sym_keyword_contains_all] = ACTIONS(136), - [sym_keyword_contains_any] = ACTIONS(136), - [sym_keyword_contains_none] = ACTIONS(136), - [sym_keyword_inside] = ACTIONS(136), - [sym_keyword_in] = ACTIONS(138), - [sym_keyword_not_inside] = ACTIONS(136), - [sym_keyword_all_inside] = ACTIONS(136), - [sym_keyword_any_inside] = ACTIONS(136), - [sym_keyword_none_inside] = ACTIONS(136), - [sym_keyword_outside] = ACTIONS(136), - [sym_keyword_intersects] = ACTIONS(136), - [anon_sym_COMMA] = ACTIONS(136), - [anon_sym_DASH_GT] = ACTIONS(136), - [anon_sym_LBRACK] = ACTIONS(136), - [anon_sym_LT_DASH] = ACTIONS(138), - [anon_sym_LT_DASH_GT] = ACTIONS(136), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_DOT] = ACTIONS(138), - [anon_sym_LT] = ACTIONS(138), - [anon_sym_GT] = ACTIONS(138), - [anon_sym_DOT_DOT] = ACTIONS(136), - [anon_sym_EQ] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_LT_PIPE] = ACTIONS(136), - [anon_sym_AMP_AMP] = ACTIONS(136), - [anon_sym_PIPE_PIPE] = ACTIONS(136), - [anon_sym_QMARK_QMARK] = ACTIONS(136), - [anon_sym_QMARK_COLON] = ACTIONS(136), - [anon_sym_BANG_EQ] = ACTIONS(136), - [anon_sym_EQ_EQ] = ACTIONS(136), - [anon_sym_QMARK_EQ] = ACTIONS(136), - [anon_sym_STAR_EQ] = ACTIONS(136), - [anon_sym_TILDE] = ACTIONS(136), - [anon_sym_BANG_TILDE] = ACTIONS(136), - [anon_sym_STAR_TILDE] = ACTIONS(136), - [anon_sym_LT_EQ] = ACTIONS(136), - [anon_sym_GT_EQ] = ACTIONS(136), - [anon_sym_PLUS] = ACTIONS(138), - [anon_sym_PLUS_EQ] = ACTIONS(136), - [anon_sym_DASH_EQ] = ACTIONS(136), - [anon_sym_u00d7] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(138), - [anon_sym_u00f7] = ACTIONS(136), - [anon_sym_STAR_STAR] = ACTIONS(136), - [anon_sym_u220b] = ACTIONS(136), - [anon_sym_u220c] = ACTIONS(136), - [anon_sym_u2287] = ACTIONS(136), - [anon_sym_u2283] = ACTIONS(136), - [anon_sym_u2285] = ACTIONS(136), - [anon_sym_u2208] = ACTIONS(136), - [anon_sym_u2209] = ACTIONS(136), - [anon_sym_u2286] = ACTIONS(136), - [anon_sym_u2282] = ACTIONS(136), - [anon_sym_u2284] = ACTIONS(136), - [anon_sym_AT_AT] = ACTIONS(136), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_order] = ACTIONS(160), + [sym_keyword_with] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_split] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(162), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [301] = { + [296] = { [ts_builtin_sym_end] = ACTIONS(144), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(144), @@ -41876,169 +41543,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(144), [anon_sym_AT_AT] = ACTIONS(144), }, - [302] = { + [297] = { + [ts_builtin_sym_end] = ACTIONS(152), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_return] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_content] = ACTIONS(192), - [sym_keyword_merge] = ACTIONS(192), - [sym_keyword_patch] = ACTIONS(192), - [sym_keyword_set] = ACTIONS(192), - [sym_keyword_unset] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(152), + [sym_keyword_as] = ACTIONS(152), + [sym_keyword_where] = ACTIONS(152), + [sym_keyword_group] = ACTIONS(152), + [sym_keyword_and] = ACTIONS(152), + [sym_keyword_or] = ACTIONS(152), + [sym_keyword_is] = ACTIONS(152), + [sym_keyword_not] = ACTIONS(154), + [sym_keyword_contains] = ACTIONS(152), + [sym_keyword_contains_not] = ACTIONS(152), + [sym_keyword_contains_all] = ACTIONS(152), + [sym_keyword_contains_any] = ACTIONS(152), + [sym_keyword_contains_none] = ACTIONS(152), + [sym_keyword_inside] = ACTIONS(152), + [sym_keyword_in] = ACTIONS(154), + [sym_keyword_not_inside] = ACTIONS(152), + [sym_keyword_all_inside] = ACTIONS(152), + [sym_keyword_any_inside] = ACTIONS(152), + [sym_keyword_none_inside] = ACTIONS(152), + [sym_keyword_outside] = ACTIONS(152), + [sym_keyword_intersects] = ACTIONS(152), + [sym_keyword_drop] = ACTIONS(152), + [sym_keyword_schemafull] = ACTIONS(152), + [sym_keyword_schemaless] = ACTIONS(152), + [sym_keyword_changefeed] = ACTIONS(152), + [sym_keyword_type] = ACTIONS(152), + [sym_keyword_permissions] = ACTIONS(152), + [sym_keyword_for] = ACTIONS(152), + [sym_keyword_comment] = ACTIONS(152), + [anon_sym_COMMA] = ACTIONS(152), + [anon_sym_DASH_GT] = ACTIONS(152), + [anon_sym_LBRACK] = ACTIONS(152), + [anon_sym_LT_DASH] = ACTIONS(154), + [anon_sym_LT_DASH_GT] = ACTIONS(152), + [anon_sym_STAR] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LT] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_EQ] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(154), + [anon_sym_LT_PIPE] = ACTIONS(152), + [anon_sym_AMP_AMP] = ACTIONS(152), + [anon_sym_PIPE_PIPE] = ACTIONS(152), + [anon_sym_QMARK_QMARK] = ACTIONS(152), + [anon_sym_QMARK_COLON] = ACTIONS(152), + [anon_sym_BANG_EQ] = ACTIONS(152), + [anon_sym_EQ_EQ] = ACTIONS(152), + [anon_sym_QMARK_EQ] = ACTIONS(152), + [anon_sym_STAR_EQ] = ACTIONS(152), + [anon_sym_TILDE] = ACTIONS(152), + [anon_sym_BANG_TILDE] = ACTIONS(152), + [anon_sym_STAR_TILDE] = ACTIONS(152), + [anon_sym_LT_EQ] = ACTIONS(152), + [anon_sym_GT_EQ] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(152), + [anon_sym_DASH_EQ] = ACTIONS(152), + [anon_sym_u00d7] = ACTIONS(152), + [anon_sym_SLASH] = ACTIONS(154), + [anon_sym_u00f7] = ACTIONS(152), + [anon_sym_STAR_STAR] = ACTIONS(152), + [anon_sym_u220b] = ACTIONS(152), + [anon_sym_u220c] = ACTIONS(152), + [anon_sym_u2287] = ACTIONS(152), + [anon_sym_u2283] = ACTIONS(152), + [anon_sym_u2285] = ACTIONS(152), + [anon_sym_u2208] = ACTIONS(152), + [anon_sym_u2209] = ACTIONS(152), + [anon_sym_u2286] = ACTIONS(152), + [anon_sym_u2282] = ACTIONS(152), + [anon_sym_u2284] = ACTIONS(152), + [anon_sym_AT_AT] = ACTIONS(152), }, - [303] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_return] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [298] = { + [ts_builtin_sym_end] = ACTIONS(184), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(184), + [sym_keyword_as] = ACTIONS(184), + [sym_keyword_where] = ACTIONS(184), + [sym_keyword_group] = ACTIONS(184), + [sym_keyword_and] = ACTIONS(184), + [sym_keyword_or] = ACTIONS(184), + [sym_keyword_is] = ACTIONS(184), + [sym_keyword_not] = ACTIONS(186), + [sym_keyword_contains] = ACTIONS(184), + [sym_keyword_contains_not] = ACTIONS(184), + [sym_keyword_contains_all] = ACTIONS(184), + [sym_keyword_contains_any] = ACTIONS(184), + [sym_keyword_contains_none] = ACTIONS(184), + [sym_keyword_inside] = ACTIONS(184), + [sym_keyword_in] = ACTIONS(186), + [sym_keyword_not_inside] = ACTIONS(184), + [sym_keyword_all_inside] = ACTIONS(184), + [sym_keyword_any_inside] = ACTIONS(184), + [sym_keyword_none_inside] = ACTIONS(184), + [sym_keyword_outside] = ACTIONS(184), + [sym_keyword_intersects] = ACTIONS(184), + [sym_keyword_drop] = ACTIONS(184), + [sym_keyword_schemafull] = ACTIONS(184), + [sym_keyword_schemaless] = ACTIONS(184), + [sym_keyword_changefeed] = ACTIONS(184), + [sym_keyword_type] = ACTIONS(184), + [sym_keyword_permissions] = ACTIONS(184), + [sym_keyword_for] = ACTIONS(184), + [sym_keyword_comment] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(184), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(184), + [anon_sym_LT_DASH] = ACTIONS(186), + [anon_sym_LT_DASH_GT] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(186), + [anon_sym_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_DASH] = ACTIONS(186), + [anon_sym_AT] = ACTIONS(186), + [anon_sym_LT_PIPE] = ACTIONS(184), + [anon_sym_AMP_AMP] = ACTIONS(184), + [anon_sym_PIPE_PIPE] = ACTIONS(184), + [anon_sym_QMARK_QMARK] = ACTIONS(184), + [anon_sym_QMARK_COLON] = ACTIONS(184), + [anon_sym_BANG_EQ] = ACTIONS(184), + [anon_sym_EQ_EQ] = ACTIONS(184), + [anon_sym_QMARK_EQ] = ACTIONS(184), + [anon_sym_STAR_EQ] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(184), + [anon_sym_BANG_TILDE] = ACTIONS(184), + [anon_sym_STAR_TILDE] = ACTIONS(184), + [anon_sym_LT_EQ] = ACTIONS(184), + [anon_sym_GT_EQ] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(186), + [anon_sym_PLUS_EQ] = ACTIONS(184), + [anon_sym_DASH_EQ] = ACTIONS(184), + [anon_sym_u00d7] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_u00f7] = ACTIONS(184), + [anon_sym_STAR_STAR] = ACTIONS(184), + [anon_sym_u220b] = ACTIONS(184), + [anon_sym_u220c] = ACTIONS(184), + [anon_sym_u2287] = ACTIONS(184), + [anon_sym_u2283] = ACTIONS(184), + [anon_sym_u2285] = ACTIONS(184), + [anon_sym_u2208] = ACTIONS(184), + [anon_sym_u2209] = ACTIONS(184), + [anon_sym_u2286] = ACTIONS(184), + [anon_sym_u2282] = ACTIONS(184), + [anon_sym_u2284] = ACTIONS(184), + [anon_sym_AT_AT] = ACTIONS(184), }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(172), + [299] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(172), - [sym_keyword_as] = ACTIONS(172), + [sym_keyword_explain] = ACTIONS(172), + [sym_keyword_parallel] = ACTIONS(172), + [sym_keyword_timeout] = ACTIONS(172), + [sym_keyword_fetch] = ACTIONS(172), + [sym_keyword_limit] = ACTIONS(172), + [sym_keyword_order] = ACTIONS(172), + [sym_keyword_with] = ACTIONS(172), [sym_keyword_where] = ACTIONS(172), + [sym_keyword_split] = ACTIONS(172), [sym_keyword_group] = ACTIONS(172), [sym_keyword_and] = ACTIONS(172), - [sym_keyword_or] = ACTIONS(172), + [sym_keyword_or] = ACTIONS(174), [sym_keyword_is] = ACTIONS(172), [sym_keyword_not] = ACTIONS(174), [sym_keyword_contains] = ACTIONS(172), @@ -42054,17 +41727,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(172), [sym_keyword_outside] = ACTIONS(172), [sym_keyword_intersects] = ACTIONS(172), - [sym_keyword_drop] = ACTIONS(172), - [sym_keyword_schemafull] = ACTIONS(172), - [sym_keyword_schemaless] = ACTIONS(172), - [sym_keyword_changefeed] = ACTIONS(172), - [sym_keyword_type] = ACTIONS(172), - [sym_keyword_permissions] = ACTIONS(172), - [sym_keyword_for] = ACTIONS(172), - [sym_keyword_comment] = ACTIONS(172), [anon_sym_COMMA] = ACTIONS(172), [anon_sym_DASH_GT] = ACTIONS(172), [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_RPAREN] = ACTIONS(172), + [anon_sym_RBRACE] = ACTIONS(172), [anon_sym_LT_DASH] = ACTIONS(174), [anon_sym_LT_DASH_GT] = ACTIONS(172), [anon_sym_STAR] = ACTIONS(174), @@ -42107,355 +41774,740 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(172), [anon_sym_AT_AT] = ACTIONS(172), }, + [300] = { + [ts_builtin_sym_end] = ACTIONS(118), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(118), + [sym_keyword_explain] = ACTIONS(118), + [sym_keyword_parallel] = ACTIONS(118), + [sym_keyword_timeout] = ACTIONS(118), + [sym_keyword_fetch] = ACTIONS(118), + [sym_keyword_limit] = ACTIONS(118), + [sym_keyword_order] = ACTIONS(118), + [sym_keyword_with] = ACTIONS(118), + [sym_keyword_where] = ACTIONS(118), + [sym_keyword_split] = ACTIONS(118), + [sym_keyword_group] = ACTIONS(118), + [sym_keyword_and] = ACTIONS(118), + [sym_keyword_or] = ACTIONS(120), + [sym_keyword_is] = ACTIONS(118), + [sym_keyword_not] = ACTIONS(120), + [sym_keyword_contains] = ACTIONS(118), + [sym_keyword_contains_not] = ACTIONS(118), + [sym_keyword_contains_all] = ACTIONS(118), + [sym_keyword_contains_any] = ACTIONS(118), + [sym_keyword_contains_none] = ACTIONS(118), + [sym_keyword_inside] = ACTIONS(118), + [sym_keyword_in] = ACTIONS(120), + [sym_keyword_not_inside] = ACTIONS(118), + [sym_keyword_all_inside] = ACTIONS(118), + [sym_keyword_any_inside] = ACTIONS(118), + [sym_keyword_none_inside] = ACTIONS(118), + [sym_keyword_outside] = ACTIONS(118), + [sym_keyword_intersects] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_DASH_GT] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_LT_DASH] = ACTIONS(120), + [anon_sym_LT_DASH_GT] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(120), + [anon_sym_DOT] = ACTIONS(120), + [anon_sym_LT] = ACTIONS(120), + [anon_sym_GT] = ACTIONS(120), + [anon_sym_DOT_DOT] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(120), + [anon_sym_DASH] = ACTIONS(120), + [anon_sym_AT] = ACTIONS(120), + [anon_sym_LT_PIPE] = ACTIONS(118), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_QMARK_COLON] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_QMARK_EQ] = ACTIONS(118), + [anon_sym_STAR_EQ] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(118), + [anon_sym_BANG_TILDE] = ACTIONS(118), + [anon_sym_STAR_TILDE] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(120), + [anon_sym_PLUS_EQ] = ACTIONS(118), + [anon_sym_DASH_EQ] = ACTIONS(118), + [anon_sym_u00d7] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(120), + [anon_sym_u00f7] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_u220b] = ACTIONS(118), + [anon_sym_u220c] = ACTIONS(118), + [anon_sym_u2287] = ACTIONS(118), + [anon_sym_u2283] = ACTIONS(118), + [anon_sym_u2285] = ACTIONS(118), + [anon_sym_u2208] = ACTIONS(118), + [anon_sym_u2209] = ACTIONS(118), + [anon_sym_u2286] = ACTIONS(118), + [anon_sym_u2282] = ACTIONS(118), + [anon_sym_u2284] = ACTIONS(118), + [anon_sym_AT_AT] = ACTIONS(118), + }, + [301] = { + [ts_builtin_sym_end] = ACTIONS(114), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(114), + [sym_keyword_explain] = ACTIONS(114), + [sym_keyword_parallel] = ACTIONS(114), + [sym_keyword_timeout] = ACTIONS(114), + [sym_keyword_fetch] = ACTIONS(114), + [sym_keyword_limit] = ACTIONS(114), + [sym_keyword_order] = ACTIONS(114), + [sym_keyword_with] = ACTIONS(114), + [sym_keyword_where] = ACTIONS(114), + [sym_keyword_split] = ACTIONS(114), + [sym_keyword_group] = ACTIONS(114), + [sym_keyword_and] = ACTIONS(114), + [sym_keyword_or] = ACTIONS(116), + [sym_keyword_is] = ACTIONS(114), + [sym_keyword_not] = ACTIONS(116), + [sym_keyword_contains] = ACTIONS(114), + [sym_keyword_contains_not] = ACTIONS(114), + [sym_keyword_contains_all] = ACTIONS(114), + [sym_keyword_contains_any] = ACTIONS(114), + [sym_keyword_contains_none] = ACTIONS(114), + [sym_keyword_inside] = ACTIONS(114), + [sym_keyword_in] = ACTIONS(116), + [sym_keyword_not_inside] = ACTIONS(114), + [sym_keyword_all_inside] = ACTIONS(114), + [sym_keyword_any_inside] = ACTIONS(114), + [sym_keyword_none_inside] = ACTIONS(114), + [sym_keyword_outside] = ACTIONS(114), + [sym_keyword_intersects] = ACTIONS(114), + [anon_sym_COMMA] = ACTIONS(114), + [anon_sym_DASH_GT] = ACTIONS(114), + [anon_sym_LBRACK] = ACTIONS(114), + [anon_sym_LT_DASH] = ACTIONS(116), + [anon_sym_LT_DASH_GT] = ACTIONS(114), + [anon_sym_STAR] = ACTIONS(116), + [anon_sym_DOT] = ACTIONS(116), + [anon_sym_LT] = ACTIONS(116), + [anon_sym_GT] = ACTIONS(116), + [anon_sym_DOT_DOT] = ACTIONS(114), + [anon_sym_EQ] = ACTIONS(116), + [anon_sym_DASH] = ACTIONS(116), + [anon_sym_AT] = ACTIONS(116), + [anon_sym_LT_PIPE] = ACTIONS(114), + [anon_sym_AMP_AMP] = ACTIONS(114), + [anon_sym_PIPE_PIPE] = ACTIONS(114), + [anon_sym_QMARK_QMARK] = ACTIONS(114), + [anon_sym_QMARK_COLON] = ACTIONS(114), + [anon_sym_BANG_EQ] = ACTIONS(114), + [anon_sym_EQ_EQ] = ACTIONS(114), + [anon_sym_QMARK_EQ] = ACTIONS(114), + [anon_sym_STAR_EQ] = ACTIONS(114), + [anon_sym_TILDE] = ACTIONS(114), + [anon_sym_BANG_TILDE] = ACTIONS(114), + [anon_sym_STAR_TILDE] = ACTIONS(114), + [anon_sym_LT_EQ] = ACTIONS(114), + [anon_sym_GT_EQ] = ACTIONS(114), + [anon_sym_PLUS] = ACTIONS(116), + [anon_sym_PLUS_EQ] = ACTIONS(114), + [anon_sym_DASH_EQ] = ACTIONS(114), + [anon_sym_u00d7] = ACTIONS(114), + [anon_sym_SLASH] = ACTIONS(116), + [anon_sym_u00f7] = ACTIONS(114), + [anon_sym_STAR_STAR] = ACTIONS(114), + [anon_sym_u220b] = ACTIONS(114), + [anon_sym_u220c] = ACTIONS(114), + [anon_sym_u2287] = ACTIONS(114), + [anon_sym_u2283] = ACTIONS(114), + [anon_sym_u2285] = ACTIONS(114), + [anon_sym_u2208] = ACTIONS(114), + [anon_sym_u2209] = ACTIONS(114), + [anon_sym_u2286] = ACTIONS(114), + [anon_sym_u2282] = ACTIONS(114), + [anon_sym_u2284] = ACTIONS(114), + [anon_sym_AT_AT] = ACTIONS(114), + }, + [302] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(122), + [sym_keyword_explain] = ACTIONS(122), + [sym_keyword_parallel] = ACTIONS(122), + [sym_keyword_timeout] = ACTIONS(122), + [sym_keyword_fetch] = ACTIONS(122), + [sym_keyword_limit] = ACTIONS(122), + [sym_keyword_order] = ACTIONS(122), + [sym_keyword_with] = ACTIONS(122), + [sym_keyword_where] = ACTIONS(122), + [sym_keyword_split] = ACTIONS(122), + [sym_keyword_group] = ACTIONS(122), + [sym_keyword_and] = ACTIONS(122), + [sym_keyword_or] = ACTIONS(124), + [sym_keyword_is] = ACTIONS(122), + [sym_keyword_not] = ACTIONS(124), + [sym_keyword_contains] = ACTIONS(122), + [sym_keyword_contains_not] = ACTIONS(122), + [sym_keyword_contains_all] = ACTIONS(122), + [sym_keyword_contains_any] = ACTIONS(122), + [sym_keyword_contains_none] = ACTIONS(122), + [sym_keyword_inside] = ACTIONS(122), + [sym_keyword_in] = ACTIONS(124), + [sym_keyword_not_inside] = ACTIONS(122), + [sym_keyword_all_inside] = ACTIONS(122), + [sym_keyword_any_inside] = ACTIONS(122), + [sym_keyword_none_inside] = ACTIONS(122), + [sym_keyword_outside] = ACTIONS(122), + [sym_keyword_intersects] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(122), + [anon_sym_DASH_GT] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(122), + [anon_sym_RPAREN] = ACTIONS(122), + [anon_sym_RBRACE] = ACTIONS(122), + [anon_sym_LT_DASH] = ACTIONS(124), + [anon_sym_LT_DASH_GT] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(124), + [anon_sym_GT] = ACTIONS(124), + [anon_sym_EQ] = ACTIONS(124), + [anon_sym_DASH] = ACTIONS(124), + [anon_sym_AT] = ACTIONS(124), + [anon_sym_LT_PIPE] = ACTIONS(122), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_QMARK_COLON] = ACTIONS(122), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_QMARK_EQ] = ACTIONS(122), + [anon_sym_STAR_EQ] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(122), + [anon_sym_BANG_TILDE] = ACTIONS(122), + [anon_sym_STAR_TILDE] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(122), + [anon_sym_GT_EQ] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(124), + [anon_sym_PLUS_EQ] = ACTIONS(122), + [anon_sym_DASH_EQ] = ACTIONS(122), + [anon_sym_u00d7] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(124), + [anon_sym_u00f7] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_u220b] = ACTIONS(122), + [anon_sym_u220c] = ACTIONS(122), + [anon_sym_u2287] = ACTIONS(122), + [anon_sym_u2283] = ACTIONS(122), + [anon_sym_u2285] = ACTIONS(122), + [anon_sym_u2208] = ACTIONS(122), + [anon_sym_u2209] = ACTIONS(122), + [anon_sym_u2286] = ACTIONS(122), + [anon_sym_u2282] = ACTIONS(122), + [anon_sym_u2284] = ACTIONS(122), + [anon_sym_AT_AT] = ACTIONS(122), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(156), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(156), + [sym_keyword_as] = ACTIONS(156), + [sym_keyword_where] = ACTIONS(156), + [sym_keyword_group] = ACTIONS(156), + [sym_keyword_and] = ACTIONS(156), + [sym_keyword_or] = ACTIONS(156), + [sym_keyword_is] = ACTIONS(156), + [sym_keyword_not] = ACTIONS(158), + [sym_keyword_contains] = ACTIONS(156), + [sym_keyword_contains_not] = ACTIONS(156), + [sym_keyword_contains_all] = ACTIONS(156), + [sym_keyword_contains_any] = ACTIONS(156), + [sym_keyword_contains_none] = ACTIONS(156), + [sym_keyword_inside] = ACTIONS(156), + [sym_keyword_in] = ACTIONS(158), + [sym_keyword_not_inside] = ACTIONS(156), + [sym_keyword_all_inside] = ACTIONS(156), + [sym_keyword_any_inside] = ACTIONS(156), + [sym_keyword_none_inside] = ACTIONS(156), + [sym_keyword_outside] = ACTIONS(156), + [sym_keyword_intersects] = ACTIONS(156), + [sym_keyword_drop] = ACTIONS(156), + [sym_keyword_schemafull] = ACTIONS(156), + [sym_keyword_schemaless] = ACTIONS(156), + [sym_keyword_changefeed] = ACTIONS(156), + [sym_keyword_type] = ACTIONS(156), + [sym_keyword_permissions] = ACTIONS(156), + [sym_keyword_for] = ACTIONS(156), + [sym_keyword_comment] = ACTIONS(156), + [anon_sym_COMMA] = ACTIONS(156), + [anon_sym_DASH_GT] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(156), + [anon_sym_LT_DASH] = ACTIONS(158), + [anon_sym_LT_DASH_GT] = ACTIONS(156), + [anon_sym_STAR] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(156), + [anon_sym_LT] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(158), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_DASH] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(158), + [anon_sym_LT_PIPE] = ACTIONS(156), + [anon_sym_AMP_AMP] = ACTIONS(156), + [anon_sym_PIPE_PIPE] = ACTIONS(156), + [anon_sym_QMARK_QMARK] = ACTIONS(156), + [anon_sym_QMARK_COLON] = ACTIONS(156), + [anon_sym_BANG_EQ] = ACTIONS(156), + [anon_sym_EQ_EQ] = ACTIONS(156), + [anon_sym_QMARK_EQ] = ACTIONS(156), + [anon_sym_STAR_EQ] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_BANG_TILDE] = ACTIONS(156), + [anon_sym_STAR_TILDE] = ACTIONS(156), + [anon_sym_LT_EQ] = ACTIONS(156), + [anon_sym_GT_EQ] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(156), + [anon_sym_DASH_EQ] = ACTIONS(156), + [anon_sym_u00d7] = ACTIONS(156), + [anon_sym_SLASH] = ACTIONS(158), + [anon_sym_u00f7] = ACTIONS(156), + [anon_sym_STAR_STAR] = ACTIONS(156), + [anon_sym_u220b] = ACTIONS(156), + [anon_sym_u220c] = ACTIONS(156), + [anon_sym_u2287] = ACTIONS(156), + [anon_sym_u2283] = ACTIONS(156), + [anon_sym_u2285] = ACTIONS(156), + [anon_sym_u2208] = ACTIONS(156), + [anon_sym_u2209] = ACTIONS(156), + [anon_sym_u2286] = ACTIONS(156), + [anon_sym_u2282] = ACTIONS(156), + [anon_sym_u2284] = ACTIONS(156), + [anon_sym_AT_AT] = ACTIONS(156), + }, + [304] = { + [ts_builtin_sym_end] = ACTIONS(122), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(122), + [sym_keyword_as] = ACTIONS(122), + [sym_keyword_where] = ACTIONS(122), + [sym_keyword_group] = ACTIONS(122), + [sym_keyword_and] = ACTIONS(122), + [sym_keyword_or] = ACTIONS(122), + [sym_keyword_is] = ACTIONS(122), + [sym_keyword_not] = ACTIONS(124), + [sym_keyword_contains] = ACTIONS(122), + [sym_keyword_contains_not] = ACTIONS(122), + [sym_keyword_contains_all] = ACTIONS(122), + [sym_keyword_contains_any] = ACTIONS(122), + [sym_keyword_contains_none] = ACTIONS(122), + [sym_keyword_inside] = ACTIONS(122), + [sym_keyword_in] = ACTIONS(124), + [sym_keyword_not_inside] = ACTIONS(122), + [sym_keyword_all_inside] = ACTIONS(122), + [sym_keyword_any_inside] = ACTIONS(122), + [sym_keyword_none_inside] = ACTIONS(122), + [sym_keyword_outside] = ACTIONS(122), + [sym_keyword_intersects] = ACTIONS(122), + [sym_keyword_drop] = ACTIONS(122), + [sym_keyword_schemafull] = ACTIONS(122), + [sym_keyword_schemaless] = ACTIONS(122), + [sym_keyword_changefeed] = ACTIONS(122), + [sym_keyword_type] = ACTIONS(122), + [sym_keyword_permissions] = ACTIONS(122), + [sym_keyword_for] = ACTIONS(122), + [sym_keyword_comment] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(122), + [anon_sym_DASH_GT] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(122), + [anon_sym_LT_DASH] = ACTIONS(124), + [anon_sym_LT_DASH_GT] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(124), + [anon_sym_GT] = ACTIONS(124), + [anon_sym_EQ] = ACTIONS(124), + [anon_sym_DASH] = ACTIONS(124), + [anon_sym_AT] = ACTIONS(124), + [anon_sym_LT_PIPE] = ACTIONS(122), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_QMARK_COLON] = ACTIONS(122), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_QMARK_EQ] = ACTIONS(122), + [anon_sym_STAR_EQ] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(122), + [anon_sym_BANG_TILDE] = ACTIONS(122), + [anon_sym_STAR_TILDE] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(122), + [anon_sym_GT_EQ] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(124), + [anon_sym_PLUS_EQ] = ACTIONS(122), + [anon_sym_DASH_EQ] = ACTIONS(122), + [anon_sym_u00d7] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(124), + [anon_sym_u00f7] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_u220b] = ACTIONS(122), + [anon_sym_u220c] = ACTIONS(122), + [anon_sym_u2287] = ACTIONS(122), + [anon_sym_u2283] = ACTIONS(122), + [anon_sym_u2285] = ACTIONS(122), + [anon_sym_u2208] = ACTIONS(122), + [anon_sym_u2209] = ACTIONS(122), + [anon_sym_u2286] = ACTIONS(122), + [anon_sym_u2282] = ACTIONS(122), + [anon_sym_u2284] = ACTIONS(122), + [anon_sym_AT_AT] = ACTIONS(122), + }, [305] = { - [ts_builtin_sym_end] = ACTIONS(132), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(132), - [sym_keyword_explain] = ACTIONS(132), - [sym_keyword_parallel] = ACTIONS(132), - [sym_keyword_timeout] = ACTIONS(132), - [sym_keyword_fetch] = ACTIONS(132), - [sym_keyword_limit] = ACTIONS(132), - [sym_keyword_order] = ACTIONS(132), - [sym_keyword_with] = ACTIONS(132), - [sym_keyword_where] = ACTIONS(132), - [sym_keyword_split] = ACTIONS(132), - [sym_keyword_group] = ACTIONS(132), - [sym_keyword_and] = ACTIONS(132), - [sym_keyword_or] = ACTIONS(134), - [sym_keyword_is] = ACTIONS(132), - [sym_keyword_not] = ACTIONS(134), - [sym_keyword_contains] = ACTIONS(132), - [sym_keyword_contains_not] = ACTIONS(132), - [sym_keyword_contains_all] = ACTIONS(132), - [sym_keyword_contains_any] = ACTIONS(132), - [sym_keyword_contains_none] = ACTIONS(132), - [sym_keyword_inside] = ACTIONS(132), - [sym_keyword_in] = ACTIONS(134), - [sym_keyword_not_inside] = ACTIONS(132), - [sym_keyword_all_inside] = ACTIONS(132), - [sym_keyword_any_inside] = ACTIONS(132), - [sym_keyword_none_inside] = ACTIONS(132), - [sym_keyword_outside] = ACTIONS(132), - [sym_keyword_intersects] = ACTIONS(132), - [anon_sym_COMMA] = ACTIONS(132), - [anon_sym_DASH_GT] = ACTIONS(132), - [anon_sym_LBRACK] = ACTIONS(132), - [anon_sym_LT_DASH] = ACTIONS(134), - [anon_sym_LT_DASH_GT] = ACTIONS(132), - [anon_sym_STAR] = ACTIONS(134), - [anon_sym_DOT] = ACTIONS(134), - [anon_sym_LT] = ACTIONS(134), - [anon_sym_GT] = ACTIONS(134), - [anon_sym_DOT_DOT] = ACTIONS(132), - [anon_sym_EQ] = ACTIONS(134), - [anon_sym_DASH] = ACTIONS(134), - [anon_sym_AT] = ACTIONS(134), - [anon_sym_LT_PIPE] = ACTIONS(132), - [anon_sym_AMP_AMP] = ACTIONS(132), - [anon_sym_PIPE_PIPE] = ACTIONS(132), - [anon_sym_QMARK_QMARK] = ACTIONS(132), - [anon_sym_QMARK_COLON] = ACTIONS(132), - [anon_sym_BANG_EQ] = ACTIONS(132), - [anon_sym_EQ_EQ] = ACTIONS(132), - [anon_sym_QMARK_EQ] = ACTIONS(132), - [anon_sym_STAR_EQ] = ACTIONS(132), - [anon_sym_TILDE] = ACTIONS(132), - [anon_sym_BANG_TILDE] = ACTIONS(132), - [anon_sym_STAR_TILDE] = ACTIONS(132), - [anon_sym_LT_EQ] = ACTIONS(132), - [anon_sym_GT_EQ] = ACTIONS(132), - [anon_sym_PLUS] = ACTIONS(134), - [anon_sym_PLUS_EQ] = ACTIONS(132), - [anon_sym_DASH_EQ] = ACTIONS(132), - [anon_sym_u00d7] = ACTIONS(132), - [anon_sym_SLASH] = ACTIONS(134), - [anon_sym_u00f7] = ACTIONS(132), - [anon_sym_STAR_STAR] = ACTIONS(132), - [anon_sym_u220b] = ACTIONS(132), - [anon_sym_u220c] = ACTIONS(132), - [anon_sym_u2287] = ACTIONS(132), - [anon_sym_u2283] = ACTIONS(132), - [anon_sym_u2285] = ACTIONS(132), - [anon_sym_u2208] = ACTIONS(132), - [anon_sym_u2209] = ACTIONS(132), - [anon_sym_u2286] = ACTIONS(132), - [anon_sym_u2282] = ACTIONS(132), - [anon_sym_u2284] = ACTIONS(132), - [anon_sym_AT_AT] = ACTIONS(132), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_return] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_content] = ACTIONS(160), + [sym_keyword_merge] = ACTIONS(160), + [sym_keyword_patch] = ACTIONS(160), + [sym_keyword_set] = ACTIONS(160), + [sym_keyword_unset] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, [306] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(200), - [sym_keyword_explain] = ACTIONS(200), - [sym_keyword_parallel] = ACTIONS(200), - [sym_keyword_timeout] = ACTIONS(200), - [sym_keyword_fetch] = ACTIONS(200), - [sym_keyword_limit] = ACTIONS(200), - [sym_keyword_order] = ACTIONS(200), - [sym_keyword_with] = ACTIONS(200), - [sym_keyword_where] = ACTIONS(200), - [sym_keyword_split] = ACTIONS(200), - [sym_keyword_group] = ACTIONS(200), - [sym_keyword_and] = ACTIONS(200), - [sym_keyword_or] = ACTIONS(202), - [sym_keyword_is] = ACTIONS(200), - [sym_keyword_not] = ACTIONS(202), - [sym_keyword_contains] = ACTIONS(200), - [sym_keyword_contains_not] = ACTIONS(200), - [sym_keyword_contains_all] = ACTIONS(200), - [sym_keyword_contains_any] = ACTIONS(200), - [sym_keyword_contains_none] = ACTIONS(200), - [sym_keyword_inside] = ACTIONS(200), - [sym_keyword_in] = ACTIONS(202), - [sym_keyword_not_inside] = ACTIONS(200), - [sym_keyword_all_inside] = ACTIONS(200), - [sym_keyword_any_inside] = ACTIONS(200), - [sym_keyword_none_inside] = ACTIONS(200), - [sym_keyword_outside] = ACTIONS(200), - [sym_keyword_intersects] = ACTIONS(200), - [anon_sym_COMMA] = ACTIONS(200), - [anon_sym_DASH_GT] = ACTIONS(200), - [anon_sym_LBRACK] = ACTIONS(200), - [anon_sym_RPAREN] = ACTIONS(200), - [anon_sym_RBRACE] = ACTIONS(200), - [anon_sym_LT_DASH] = ACTIONS(202), - [anon_sym_LT_DASH_GT] = ACTIONS(200), - [anon_sym_STAR] = ACTIONS(202), - [anon_sym_DOT] = ACTIONS(200), - [anon_sym_LT] = ACTIONS(202), - [anon_sym_GT] = ACTIONS(202), - [anon_sym_EQ] = ACTIONS(202), - [anon_sym_DASH] = ACTIONS(202), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_LT_PIPE] = ACTIONS(200), - [anon_sym_AMP_AMP] = ACTIONS(200), - [anon_sym_PIPE_PIPE] = ACTIONS(200), - [anon_sym_QMARK_QMARK] = ACTIONS(200), - [anon_sym_QMARK_COLON] = ACTIONS(200), - [anon_sym_BANG_EQ] = ACTIONS(200), - [anon_sym_EQ_EQ] = ACTIONS(200), - [anon_sym_QMARK_EQ] = ACTIONS(200), - [anon_sym_STAR_EQ] = ACTIONS(200), - [anon_sym_TILDE] = ACTIONS(200), - [anon_sym_BANG_TILDE] = ACTIONS(200), - [anon_sym_STAR_TILDE] = ACTIONS(200), - [anon_sym_LT_EQ] = ACTIONS(200), - [anon_sym_GT_EQ] = ACTIONS(200), - [anon_sym_PLUS] = ACTIONS(202), - [anon_sym_PLUS_EQ] = ACTIONS(200), - [anon_sym_DASH_EQ] = ACTIONS(200), - [anon_sym_u00d7] = ACTIONS(200), - [anon_sym_SLASH] = ACTIONS(202), - [anon_sym_u00f7] = ACTIONS(200), - [anon_sym_STAR_STAR] = ACTIONS(200), - [anon_sym_u220b] = ACTIONS(200), - [anon_sym_u220c] = ACTIONS(200), - [anon_sym_u2287] = ACTIONS(200), - [anon_sym_u2283] = ACTIONS(200), - [anon_sym_u2285] = ACTIONS(200), - [anon_sym_u2208] = ACTIONS(200), - [anon_sym_u2209] = ACTIONS(200), - [anon_sym_u2286] = ACTIONS(200), - [anon_sym_u2282] = ACTIONS(200), - [anon_sym_u2284] = ACTIONS(200), - [anon_sym_AT_AT] = ACTIONS(200), + [ts_builtin_sym_end] = ACTIONS(126), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(126), + [sym_keyword_explain] = ACTIONS(126), + [sym_keyword_parallel] = ACTIONS(126), + [sym_keyword_timeout] = ACTIONS(126), + [sym_keyword_fetch] = ACTIONS(126), + [sym_keyword_limit] = ACTIONS(126), + [sym_keyword_order] = ACTIONS(126), + [sym_keyword_with] = ACTIONS(126), + [sym_keyword_where] = ACTIONS(126), + [sym_keyword_split] = ACTIONS(126), + [sym_keyword_group] = ACTIONS(126), + [sym_keyword_and] = ACTIONS(126), + [sym_keyword_or] = ACTIONS(128), + [sym_keyword_is] = ACTIONS(126), + [sym_keyword_not] = ACTIONS(128), + [sym_keyword_contains] = ACTIONS(126), + [sym_keyword_contains_not] = ACTIONS(126), + [sym_keyword_contains_all] = ACTIONS(126), + [sym_keyword_contains_any] = ACTIONS(126), + [sym_keyword_contains_none] = ACTIONS(126), + [sym_keyword_inside] = ACTIONS(126), + [sym_keyword_in] = ACTIONS(128), + [sym_keyword_not_inside] = ACTIONS(126), + [sym_keyword_all_inside] = ACTIONS(126), + [sym_keyword_any_inside] = ACTIONS(126), + [sym_keyword_none_inside] = ACTIONS(126), + [sym_keyword_outside] = ACTIONS(126), + [sym_keyword_intersects] = ACTIONS(126), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_DASH_GT] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_LT_DASH] = ACTIONS(128), + [anon_sym_LT_DASH_GT] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(128), + [anon_sym_DOT] = ACTIONS(128), + [anon_sym_LT] = ACTIONS(128), + [anon_sym_GT] = ACTIONS(128), + [anon_sym_DOT_DOT] = ACTIONS(126), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_DASH] = ACTIONS(128), + [anon_sym_AT] = ACTIONS(128), + [anon_sym_LT_PIPE] = ACTIONS(126), + [anon_sym_AMP_AMP] = ACTIONS(126), + [anon_sym_PIPE_PIPE] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(126), + [anon_sym_QMARK_COLON] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(126), + [anon_sym_QMARK_EQ] = ACTIONS(126), + [anon_sym_STAR_EQ] = ACTIONS(126), + [anon_sym_TILDE] = ACTIONS(126), + [anon_sym_BANG_TILDE] = ACTIONS(126), + [anon_sym_STAR_TILDE] = ACTIONS(126), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_PLUS] = ACTIONS(128), + [anon_sym_PLUS_EQ] = ACTIONS(126), + [anon_sym_DASH_EQ] = ACTIONS(126), + [anon_sym_u00d7] = ACTIONS(126), + [anon_sym_SLASH] = ACTIONS(128), + [anon_sym_u00f7] = ACTIONS(126), + [anon_sym_STAR_STAR] = ACTIONS(126), + [anon_sym_u220b] = ACTIONS(126), + [anon_sym_u220c] = ACTIONS(126), + [anon_sym_u2287] = ACTIONS(126), + [anon_sym_u2283] = ACTIONS(126), + [anon_sym_u2285] = ACTIONS(126), + [anon_sym_u2208] = ACTIONS(126), + [anon_sym_u2209] = ACTIONS(126), + [anon_sym_u2286] = ACTIONS(126), + [anon_sym_u2282] = ACTIONS(126), + [anon_sym_u2284] = ACTIONS(126), + [anon_sym_AT_AT] = ACTIONS(126), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(124), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(124), - [sym_keyword_explain] = ACTIONS(124), - [sym_keyword_parallel] = ACTIONS(124), - [sym_keyword_timeout] = ACTIONS(124), - [sym_keyword_fetch] = ACTIONS(124), - [sym_keyword_limit] = ACTIONS(124), - [sym_keyword_order] = ACTIONS(124), - [sym_keyword_with] = ACTIONS(124), - [sym_keyword_where] = ACTIONS(124), - [sym_keyword_split] = ACTIONS(124), - [sym_keyword_group] = ACTIONS(124), - [sym_keyword_and] = ACTIONS(124), - [sym_keyword_or] = ACTIONS(126), - [sym_keyword_is] = ACTIONS(124), - [sym_keyword_not] = ACTIONS(126), - [sym_keyword_contains] = ACTIONS(124), - [sym_keyword_contains_not] = ACTIONS(124), - [sym_keyword_contains_all] = ACTIONS(124), - [sym_keyword_contains_any] = ACTIONS(124), - [sym_keyword_contains_none] = ACTIONS(124), - [sym_keyword_inside] = ACTIONS(124), - [sym_keyword_in] = ACTIONS(126), - [sym_keyword_not_inside] = ACTIONS(124), - [sym_keyword_all_inside] = ACTIONS(124), - [sym_keyword_any_inside] = ACTIONS(124), - [sym_keyword_none_inside] = ACTIONS(124), - [sym_keyword_outside] = ACTIONS(124), - [sym_keyword_intersects] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_DASH_GT] = ACTIONS(124), - [anon_sym_LBRACK] = ACTIONS(124), - [anon_sym_LT_DASH] = ACTIONS(126), - [anon_sym_LT_DASH_GT] = ACTIONS(124), - [anon_sym_STAR] = ACTIONS(126), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_LT] = ACTIONS(126), - [anon_sym_GT] = ACTIONS(126), - [anon_sym_DOT_DOT] = ACTIONS(124), - [anon_sym_EQ] = ACTIONS(126), - [anon_sym_DASH] = ACTIONS(126), - [anon_sym_AT] = ACTIONS(126), - [anon_sym_LT_PIPE] = ACTIONS(124), - [anon_sym_AMP_AMP] = ACTIONS(124), - [anon_sym_PIPE_PIPE] = ACTIONS(124), - [anon_sym_QMARK_QMARK] = ACTIONS(124), - [anon_sym_QMARK_COLON] = ACTIONS(124), - [anon_sym_BANG_EQ] = ACTIONS(124), - [anon_sym_EQ_EQ] = ACTIONS(124), - [anon_sym_QMARK_EQ] = ACTIONS(124), - [anon_sym_STAR_EQ] = ACTIONS(124), - [anon_sym_TILDE] = ACTIONS(124), - [anon_sym_BANG_TILDE] = ACTIONS(124), - [anon_sym_STAR_TILDE] = ACTIONS(124), - [anon_sym_LT_EQ] = ACTIONS(124), - [anon_sym_GT_EQ] = ACTIONS(124), - [anon_sym_PLUS] = ACTIONS(126), - [anon_sym_PLUS_EQ] = ACTIONS(124), - [anon_sym_DASH_EQ] = ACTIONS(124), - [anon_sym_u00d7] = ACTIONS(124), - [anon_sym_SLASH] = ACTIONS(126), - [anon_sym_u00f7] = ACTIONS(124), - [anon_sym_STAR_STAR] = ACTIONS(124), - [anon_sym_u220b] = ACTIONS(124), - [anon_sym_u220c] = ACTIONS(124), - [anon_sym_u2287] = ACTIONS(124), - [anon_sym_u2283] = ACTIONS(124), - [anon_sym_u2285] = ACTIONS(124), - [anon_sym_u2208] = ACTIONS(124), - [anon_sym_u2209] = ACTIONS(124), - [anon_sym_u2286] = ACTIONS(124), - [anon_sym_u2282] = ACTIONS(124), - [anon_sym_u2284] = ACTIONS(124), - [anon_sym_AT_AT] = ACTIONS(124), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_return] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [308] = { - [sym_statement] = STATE(1397), - [sym_begin_statement] = STATE(1344), - [sym_cancel_statement] = STATE(1344), - [sym_commit_statement] = STATE(1344), - [sym_define_analyzer_statement] = STATE(1344), - [sym_define_event_statement] = STATE(1344), - [sym_define_field_statement] = STATE(1344), - [sym_define_function_statement] = STATE(1344), - [sym_define_index_statement] = STATE(1344), - [sym_define_namespace_statement] = STATE(1344), - [sym_define_param_statement] = STATE(1344), - [sym_define_scope_statement] = STATE(1344), - [sym_define_table_statement] = STATE(1344), - [sym_define_token_statement] = STATE(1344), - [sym_define_user_statement] = STATE(1344), - [sym_remove_statement] = STATE(1344), - [sym_create_statement] = STATE(1344), - [sym_update_statement] = STATE(1344), - [sym_relate_statement] = STATE(1344), - [sym_delete_statement] = STATE(1344), - [sym_insert_statement] = STATE(1344), - [sym_select_statement] = STATE(1344), - [sym_live_select_statement] = STATE(1344), - [sym_select_clause] = STATE(1341), - [sym_value] = STATE(129), - [sym_function_call] = STATE(479), - [sym_base_value] = STATE(194), - [sym_binary_expression] = STATE(479), - [sym_path] = STATE(479), - [sym_graph_path] = STATE(195), - [sym_number] = STATE(352), - [sym_identifier] = STATE(352), - [sym_array] = STATE(352), - [sym_object] = STATE(352), - [sym_object_key] = STATE(1763), - [sym_record_id] = STATE(352), - [sym_sub_query] = STATE(352), - [sym_duration] = STATE(352), - [sym_point] = STATE(352), - [aux_sym_duration_repeat1] = STATE(257), [sym_comment] = ACTIONS(3), - [sym_keyword_select] = ACTIONS(5), - [sym_keyword_rand] = ACTIONS(527), - [sym_keyword_true] = ACTIONS(529), - [sym_keyword_false] = ACTIONS(529), - [sym_keyword_begin] = ACTIONS(13), - [sym_keyword_cancel] = ACTIONS(15), - [sym_keyword_commit] = ACTIONS(17), - [sym_keyword_none] = ACTIONS(529), - [sym_keyword_null] = ACTIONS(529), - [sym_keyword_define] = ACTIONS(19), - [sym_keyword_live] = ACTIONS(21), - [sym_keyword_remove] = ACTIONS(23), - [sym_keyword_create] = ACTIONS(25), - [sym_keyword_delete] = ACTIONS(27), - [sym_keyword_update] = ACTIONS(29), - [sym_keyword_insert] = ACTIONS(31), - [sym_keyword_relate] = ACTIONS(33), - [sym_keyword_count] = ACTIONS(531), - [anon_sym_DASH_GT] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LT_DASH] = ACTIONS(452), - [anon_sym_LT_DASH_GT] = ACTIONS(448), - [aux_sym_type_name_token1] = ACTIONS(537), - [sym_string] = ACTIONS(539), - [sym_prefixed_string] = ACTIONS(539), - [sym_int] = ACTIONS(541), - [sym_float] = ACTIONS(541), - [sym_decimal] = ACTIONS(543), - [sym_variable_name] = ACTIONS(539), - [sym_custom_function_name] = ACTIONS(527), - [sym_function_name] = ACTIONS(527), - [sym_duration_part] = ACTIONS(545), + [sym_semi_colon] = ACTIONS(168), + [sym_keyword_explain] = ACTIONS(168), + [sym_keyword_parallel] = ACTIONS(168), + [sym_keyword_timeout] = ACTIONS(168), + [sym_keyword_fetch] = ACTIONS(168), + [sym_keyword_limit] = ACTIONS(168), + [sym_keyword_order] = ACTIONS(168), + [sym_keyword_with] = ACTIONS(168), + [sym_keyword_where] = ACTIONS(168), + [sym_keyword_split] = ACTIONS(168), + [sym_keyword_group] = ACTIONS(168), + [sym_keyword_and] = ACTIONS(168), + [sym_keyword_or] = ACTIONS(170), + [sym_keyword_is] = ACTIONS(168), + [sym_keyword_not] = ACTIONS(170), + [sym_keyword_contains] = ACTIONS(168), + [sym_keyword_contains_not] = ACTIONS(168), + [sym_keyword_contains_all] = ACTIONS(168), + [sym_keyword_contains_any] = ACTIONS(168), + [sym_keyword_contains_none] = ACTIONS(168), + [sym_keyword_inside] = ACTIONS(168), + [sym_keyword_in] = ACTIONS(170), + [sym_keyword_not_inside] = ACTIONS(168), + [sym_keyword_all_inside] = ACTIONS(168), + [sym_keyword_any_inside] = ACTIONS(168), + [sym_keyword_none_inside] = ACTIONS(168), + [sym_keyword_outside] = ACTIONS(168), + [sym_keyword_intersects] = ACTIONS(168), + [anon_sym_COMMA] = ACTIONS(168), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_LT_DASH] = ACTIONS(170), + [anon_sym_LT_DASH_GT] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_GT] = ACTIONS(170), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(170), + [anon_sym_LT_PIPE] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(168), + [anon_sym_QMARK_QMARK] = ACTIONS(168), + [anon_sym_QMARK_COLON] = ACTIONS(168), + [anon_sym_BANG_EQ] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(168), + [anon_sym_QMARK_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_BANG_TILDE] = ACTIONS(168), + [anon_sym_STAR_TILDE] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(168), + [anon_sym_GT_EQ] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_u00d7] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_u00f7] = ACTIONS(168), + [anon_sym_STAR_STAR] = ACTIONS(168), + [anon_sym_u220b] = ACTIONS(168), + [anon_sym_u220c] = ACTIONS(168), + [anon_sym_u2287] = ACTIONS(168), + [anon_sym_u2283] = ACTIONS(168), + [anon_sym_u2285] = ACTIONS(168), + [anon_sym_u2208] = ACTIONS(168), + [anon_sym_u2209] = ACTIONS(168), + [anon_sym_u2286] = ACTIONS(168), + [anon_sym_u2282] = ACTIONS(168), + [anon_sym_u2284] = ACTIONS(168), + [anon_sym_AT_AT] = ACTIONS(168), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(200), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(200), - [sym_keyword_as] = ACTIONS(200), - [sym_keyword_where] = ACTIONS(200), - [sym_keyword_group] = ACTIONS(200), - [sym_keyword_and] = ACTIONS(200), - [sym_keyword_or] = ACTIONS(200), - [sym_keyword_is] = ACTIONS(200), + [sym_keyword_return] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), [sym_keyword_not] = ACTIONS(202), - [sym_keyword_contains] = ACTIONS(200), - [sym_keyword_contains_not] = ACTIONS(200), - [sym_keyword_contains_all] = ACTIONS(200), - [sym_keyword_contains_any] = ACTIONS(200), - [sym_keyword_contains_none] = ACTIONS(200), - [sym_keyword_inside] = ACTIONS(200), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), [sym_keyword_in] = ACTIONS(202), - [sym_keyword_not_inside] = ACTIONS(200), - [sym_keyword_all_inside] = ACTIONS(200), - [sym_keyword_any_inside] = ACTIONS(200), - [sym_keyword_none_inside] = ACTIONS(200), - [sym_keyword_outside] = ACTIONS(200), - [sym_keyword_intersects] = ACTIONS(200), - [sym_keyword_drop] = ACTIONS(200), - [sym_keyword_schemafull] = ACTIONS(200), - [sym_keyword_schemaless] = ACTIONS(200), - [sym_keyword_changefeed] = ACTIONS(200), - [sym_keyword_type] = ACTIONS(200), - [sym_keyword_permissions] = ACTIONS(200), - [sym_keyword_for] = ACTIONS(200), - [sym_keyword_comment] = ACTIONS(200), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), [anon_sym_COMMA] = ACTIONS(200), [anon_sym_DASH_GT] = ACTIONS(200), [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(200), [anon_sym_LT_DASH] = ACTIONS(202), [anon_sym_LT_DASH_GT] = ACTIONS(200), [anon_sym_STAR] = ACTIONS(202), [anon_sym_DOT] = ACTIONS(200), [anon_sym_LT] = ACTIONS(202), [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), [anon_sym_EQ] = ACTIONS(202), [anon_sym_DASH] = ACTIONS(202), [anon_sym_AT] = ACTIONS(202), @@ -42493,97 +42545,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(200), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(110), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(110), - [sym_keyword_as] = ACTIONS(110), - [sym_keyword_where] = ACTIONS(110), - [sym_keyword_group] = ACTIONS(110), - [sym_keyword_and] = ACTIONS(110), - [sym_keyword_or] = ACTIONS(110), - [sym_keyword_is] = ACTIONS(110), - [sym_keyword_not] = ACTIONS(112), - [sym_keyword_contains] = ACTIONS(110), - [sym_keyword_contains_not] = ACTIONS(110), - [sym_keyword_contains_all] = ACTIONS(110), - [sym_keyword_contains_any] = ACTIONS(110), - [sym_keyword_contains_none] = ACTIONS(110), - [sym_keyword_inside] = ACTIONS(110), - [sym_keyword_in] = ACTIONS(112), - [sym_keyword_not_inside] = ACTIONS(110), - [sym_keyword_all_inside] = ACTIONS(110), - [sym_keyword_any_inside] = ACTIONS(110), - [sym_keyword_none_inside] = ACTIONS(110), - [sym_keyword_outside] = ACTIONS(110), - [sym_keyword_intersects] = ACTIONS(110), - [sym_keyword_drop] = ACTIONS(110), - [sym_keyword_schemafull] = ACTIONS(110), - [sym_keyword_schemaless] = ACTIONS(110), - [sym_keyword_changefeed] = ACTIONS(110), - [sym_keyword_type] = ACTIONS(110), - [sym_keyword_permissions] = ACTIONS(110), - [sym_keyword_for] = ACTIONS(110), - [sym_keyword_comment] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(110), - [anon_sym_DASH_GT] = ACTIONS(110), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_LT_DASH] = ACTIONS(112), - [anon_sym_LT_DASH_GT] = ACTIONS(110), - [anon_sym_STAR] = ACTIONS(112), - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_LT] = ACTIONS(112), - [anon_sym_GT] = ACTIONS(112), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_DASH] = ACTIONS(112), - [anon_sym_AT] = ACTIONS(112), - [anon_sym_LT_PIPE] = ACTIONS(110), - [anon_sym_AMP_AMP] = ACTIONS(110), - [anon_sym_PIPE_PIPE] = ACTIONS(110), - [anon_sym_QMARK_QMARK] = ACTIONS(110), - [anon_sym_QMARK_COLON] = ACTIONS(110), - [anon_sym_BANG_EQ] = ACTIONS(110), - [anon_sym_EQ_EQ] = ACTIONS(110), - [anon_sym_QMARK_EQ] = ACTIONS(110), - [anon_sym_STAR_EQ] = ACTIONS(110), - [anon_sym_TILDE] = ACTIONS(110), - [anon_sym_BANG_TILDE] = ACTIONS(110), - [anon_sym_STAR_TILDE] = ACTIONS(110), - [anon_sym_LT_EQ] = ACTIONS(110), - [anon_sym_GT_EQ] = ACTIONS(110), - [anon_sym_PLUS] = ACTIONS(112), - [anon_sym_PLUS_EQ] = ACTIONS(110), - [anon_sym_DASH_EQ] = ACTIONS(110), - [anon_sym_u00d7] = ACTIONS(110), - [anon_sym_SLASH] = ACTIONS(112), - [anon_sym_u00f7] = ACTIONS(110), - [anon_sym_STAR_STAR] = ACTIONS(110), - [anon_sym_u220b] = ACTIONS(110), - [anon_sym_u220c] = ACTIONS(110), - [anon_sym_u2287] = ACTIONS(110), - [anon_sym_u2283] = ACTIONS(110), - [anon_sym_u2285] = ACTIONS(110), - [anon_sym_u2208] = ACTIONS(110), - [anon_sym_u2209] = ACTIONS(110), - [anon_sym_u2286] = ACTIONS(110), - [anon_sym_u2282] = ACTIONS(110), - [anon_sym_u2284] = ACTIONS(110), - [anon_sym_AT_AT] = ACTIONS(110), - }, - [311] = { + [ts_builtin_sym_end] = ACTIONS(172), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(172), - [sym_keyword_explain] = ACTIONS(172), - [sym_keyword_parallel] = ACTIONS(172), - [sym_keyword_timeout] = ACTIONS(172), - [sym_keyword_fetch] = ACTIONS(172), - [sym_keyword_limit] = ACTIONS(172), - [sym_keyword_order] = ACTIONS(172), - [sym_keyword_with] = ACTIONS(172), + [sym_keyword_as] = ACTIONS(172), [sym_keyword_where] = ACTIONS(172), - [sym_keyword_split] = ACTIONS(172), [sym_keyword_group] = ACTIONS(172), [sym_keyword_and] = ACTIONS(172), - [sym_keyword_or] = ACTIONS(174), + [sym_keyword_or] = ACTIONS(172), [sym_keyword_is] = ACTIONS(172), [sym_keyword_not] = ACTIONS(174), [sym_keyword_contains] = ACTIONS(172), @@ -42599,11 +42568,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(172), [sym_keyword_outside] = ACTIONS(172), [sym_keyword_intersects] = ACTIONS(172), + [sym_keyword_drop] = ACTIONS(172), + [sym_keyword_schemafull] = ACTIONS(172), + [sym_keyword_schemaless] = ACTIONS(172), + [sym_keyword_changefeed] = ACTIONS(172), + [sym_keyword_type] = ACTIONS(172), + [sym_keyword_permissions] = ACTIONS(172), + [sym_keyword_for] = ACTIONS(172), + [sym_keyword_comment] = ACTIONS(172), [anon_sym_COMMA] = ACTIONS(172), [anon_sym_DASH_GT] = ACTIONS(172), [anon_sym_LBRACK] = ACTIONS(172), - [anon_sym_RPAREN] = ACTIONS(172), - [anon_sym_RBRACE] = ACTIONS(172), [anon_sym_LT_DASH] = ACTIONS(174), [anon_sym_LT_DASH_GT] = ACTIONS(172), [anon_sym_STAR] = ACTIONS(174), @@ -42646,477 +42621,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(172), [anon_sym_AT_AT] = ACTIONS(172), }, + [311] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(188), + [sym_keyword_explain] = ACTIONS(188), + [sym_keyword_parallel] = ACTIONS(188), + [sym_keyword_timeout] = ACTIONS(188), + [sym_keyword_fetch] = ACTIONS(188), + [sym_keyword_limit] = ACTIONS(188), + [sym_keyword_order] = ACTIONS(188), + [sym_keyword_with] = ACTIONS(188), + [sym_keyword_where] = ACTIONS(188), + [sym_keyword_split] = ACTIONS(188), + [sym_keyword_group] = ACTIONS(188), + [sym_keyword_and] = ACTIONS(188), + [sym_keyword_or] = ACTIONS(190), + [sym_keyword_is] = ACTIONS(188), + [sym_keyword_not] = ACTIONS(190), + [sym_keyword_contains] = ACTIONS(188), + [sym_keyword_contains_not] = ACTIONS(188), + [sym_keyword_contains_all] = ACTIONS(188), + [sym_keyword_contains_any] = ACTIONS(188), + [sym_keyword_contains_none] = ACTIONS(188), + [sym_keyword_inside] = ACTIONS(188), + [sym_keyword_in] = ACTIONS(190), + [sym_keyword_not_inside] = ACTIONS(188), + [sym_keyword_all_inside] = ACTIONS(188), + [sym_keyword_any_inside] = ACTIONS(188), + [sym_keyword_none_inside] = ACTIONS(188), + [sym_keyword_outside] = ACTIONS(188), + [sym_keyword_intersects] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_DASH_GT] = ACTIONS(188), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_RPAREN] = ACTIONS(188), + [anon_sym_RBRACE] = ACTIONS(188), + [anon_sym_LT_DASH] = ACTIONS(190), + [anon_sym_LT_DASH_GT] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_DOT] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_LT_PIPE] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_QMARK_QMARK] = ACTIONS(188), + [anon_sym_QMARK_COLON] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_QMARK_EQ] = ACTIONS(188), + [anon_sym_STAR_EQ] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_BANG_TILDE] = ACTIONS(188), + [anon_sym_STAR_TILDE] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_u00d7] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_u00f7] = ACTIONS(188), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_u220b] = ACTIONS(188), + [anon_sym_u220c] = ACTIONS(188), + [anon_sym_u2287] = ACTIONS(188), + [anon_sym_u2283] = ACTIONS(188), + [anon_sym_u2285] = ACTIONS(188), + [anon_sym_u2208] = ACTIONS(188), + [anon_sym_u2209] = ACTIONS(188), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), + }, [312] = { - [ts_builtin_sym_end] = ACTIONS(120), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(120), - [sym_keyword_explain] = ACTIONS(120), - [sym_keyword_parallel] = ACTIONS(120), - [sym_keyword_timeout] = ACTIONS(120), - [sym_keyword_fetch] = ACTIONS(120), - [sym_keyword_limit] = ACTIONS(120), - [sym_keyword_order] = ACTIONS(120), - [sym_keyword_with] = ACTIONS(120), - [sym_keyword_where] = ACTIONS(120), - [sym_keyword_split] = ACTIONS(120), - [sym_keyword_group] = ACTIONS(120), - [sym_keyword_and] = ACTIONS(120), - [sym_keyword_or] = ACTIONS(122), - [sym_keyword_is] = ACTIONS(120), - [sym_keyword_not] = ACTIONS(122), - [sym_keyword_contains] = ACTIONS(120), - [sym_keyword_contains_not] = ACTIONS(120), - [sym_keyword_contains_all] = ACTIONS(120), - [sym_keyword_contains_any] = ACTIONS(120), - [sym_keyword_contains_none] = ACTIONS(120), - [sym_keyword_inside] = ACTIONS(120), - [sym_keyword_in] = ACTIONS(122), - [sym_keyword_not_inside] = ACTIONS(120), - [sym_keyword_all_inside] = ACTIONS(120), - [sym_keyword_any_inside] = ACTIONS(120), - [sym_keyword_none_inside] = ACTIONS(120), - [sym_keyword_outside] = ACTIONS(120), - [sym_keyword_intersects] = ACTIONS(120), - [anon_sym_COMMA] = ACTIONS(120), - [anon_sym_DASH_GT] = ACTIONS(120), - [anon_sym_LBRACK] = ACTIONS(120), - [anon_sym_LT_DASH] = ACTIONS(122), - [anon_sym_LT_DASH_GT] = ACTIONS(120), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT_DOT] = ACTIONS(120), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_AT] = ACTIONS(122), - [anon_sym_LT_PIPE] = ACTIONS(120), - [anon_sym_AMP_AMP] = ACTIONS(120), - [anon_sym_PIPE_PIPE] = ACTIONS(120), - [anon_sym_QMARK_QMARK] = ACTIONS(120), - [anon_sym_QMARK_COLON] = ACTIONS(120), - [anon_sym_BANG_EQ] = ACTIONS(120), - [anon_sym_EQ_EQ] = ACTIONS(120), - [anon_sym_QMARK_EQ] = ACTIONS(120), - [anon_sym_STAR_EQ] = ACTIONS(120), - [anon_sym_TILDE] = ACTIONS(120), - [anon_sym_BANG_TILDE] = ACTIONS(120), - [anon_sym_STAR_TILDE] = ACTIONS(120), - [anon_sym_LT_EQ] = ACTIONS(120), - [anon_sym_GT_EQ] = ACTIONS(120), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_PLUS_EQ] = ACTIONS(120), - [anon_sym_DASH_EQ] = ACTIONS(120), - [anon_sym_u00d7] = ACTIONS(120), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_u00f7] = ACTIONS(120), - [anon_sym_STAR_STAR] = ACTIONS(120), - [anon_sym_u220b] = ACTIONS(120), - [anon_sym_u220c] = ACTIONS(120), - [anon_sym_u2287] = ACTIONS(120), - [anon_sym_u2283] = ACTIONS(120), - [anon_sym_u2285] = ACTIONS(120), - [anon_sym_u2208] = ACTIONS(120), - [anon_sym_u2209] = ACTIONS(120), - [anon_sym_u2286] = ACTIONS(120), - [anon_sym_u2282] = ACTIONS(120), - [anon_sym_u2284] = ACTIONS(120), - [anon_sym_AT_AT] = ACTIONS(120), + [ts_builtin_sym_end] = ACTIONS(160), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_as] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_drop] = ACTIONS(160), + [sym_keyword_schemafull] = ACTIONS(160), + [sym_keyword_schemaless] = ACTIONS(160), + [sym_keyword_changefeed] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_for] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(116), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(116), - [sym_keyword_explain] = ACTIONS(116), - [sym_keyword_parallel] = ACTIONS(116), - [sym_keyword_timeout] = ACTIONS(116), - [sym_keyword_fetch] = ACTIONS(116), - [sym_keyword_limit] = ACTIONS(116), - [sym_keyword_order] = ACTIONS(116), - [sym_keyword_with] = ACTIONS(116), - [sym_keyword_where] = ACTIONS(116), - [sym_keyword_split] = ACTIONS(116), - [sym_keyword_group] = ACTIONS(116), - [sym_keyword_and] = ACTIONS(116), - [sym_keyword_or] = ACTIONS(118), - [sym_keyword_is] = ACTIONS(116), - [sym_keyword_not] = ACTIONS(118), - [sym_keyword_contains] = ACTIONS(116), - [sym_keyword_contains_not] = ACTIONS(116), - [sym_keyword_contains_all] = ACTIONS(116), - [sym_keyword_contains_any] = ACTIONS(116), - [sym_keyword_contains_none] = ACTIONS(116), - [sym_keyword_inside] = ACTIONS(116), - [sym_keyword_in] = ACTIONS(118), - [sym_keyword_not_inside] = ACTIONS(116), - [sym_keyword_all_inside] = ACTIONS(116), - [sym_keyword_any_inside] = ACTIONS(116), - [sym_keyword_none_inside] = ACTIONS(116), - [sym_keyword_outside] = ACTIONS(116), - [sym_keyword_intersects] = ACTIONS(116), - [anon_sym_COMMA] = ACTIONS(116), - [anon_sym_DASH_GT] = ACTIONS(116), - [anon_sym_LBRACK] = ACTIONS(116), - [anon_sym_LT_DASH] = ACTIONS(118), - [anon_sym_LT_DASH_GT] = ACTIONS(116), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT_DOT] = ACTIONS(116), - [anon_sym_EQ] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_AT] = ACTIONS(118), - [anon_sym_LT_PIPE] = ACTIONS(116), - [anon_sym_AMP_AMP] = ACTIONS(116), - [anon_sym_PIPE_PIPE] = ACTIONS(116), - [anon_sym_QMARK_QMARK] = ACTIONS(116), - [anon_sym_QMARK_COLON] = ACTIONS(116), - [anon_sym_BANG_EQ] = ACTIONS(116), - [anon_sym_EQ_EQ] = ACTIONS(116), - [anon_sym_QMARK_EQ] = ACTIONS(116), - [anon_sym_STAR_EQ] = ACTIONS(116), - [anon_sym_TILDE] = ACTIONS(116), - [anon_sym_BANG_TILDE] = ACTIONS(116), - [anon_sym_STAR_TILDE] = ACTIONS(116), - [anon_sym_LT_EQ] = ACTIONS(116), - [anon_sym_GT_EQ] = ACTIONS(116), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(116), - [anon_sym_DASH_EQ] = ACTIONS(116), - [anon_sym_u00d7] = ACTIONS(116), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_u00f7] = ACTIONS(116), - [anon_sym_STAR_STAR] = ACTIONS(116), - [anon_sym_u220b] = ACTIONS(116), - [anon_sym_u220c] = ACTIONS(116), - [anon_sym_u2287] = ACTIONS(116), - [anon_sym_u2283] = ACTIONS(116), - [anon_sym_u2285] = ACTIONS(116), - [anon_sym_u2208] = ACTIONS(116), - [anon_sym_u2209] = ACTIONS(116), - [anon_sym_u2286] = ACTIONS(116), - [anon_sym_u2282] = ACTIONS(116), - [anon_sym_u2284] = ACTIONS(116), - [anon_sym_AT_AT] = ACTIONS(116), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_return] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(208), + [ts_builtin_sym_end] = ACTIONS(196), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(208), - [sym_keyword_as] = ACTIONS(208), - [sym_keyword_where] = ACTIONS(208), - [sym_keyword_group] = ACTIONS(208), - [sym_keyword_and] = ACTIONS(208), - [sym_keyword_or] = ACTIONS(208), - [sym_keyword_is] = ACTIONS(208), - [sym_keyword_not] = ACTIONS(210), - [sym_keyword_contains] = ACTIONS(208), - [sym_keyword_contains_not] = ACTIONS(208), - [sym_keyword_contains_all] = ACTIONS(208), - [sym_keyword_contains_any] = ACTIONS(208), - [sym_keyword_contains_none] = ACTIONS(208), - [sym_keyword_inside] = ACTIONS(208), - [sym_keyword_in] = ACTIONS(210), - [sym_keyword_not_inside] = ACTIONS(208), - [sym_keyword_all_inside] = ACTIONS(208), - [sym_keyword_any_inside] = ACTIONS(208), - [sym_keyword_none_inside] = ACTIONS(208), - [sym_keyword_outside] = ACTIONS(208), - [sym_keyword_intersects] = ACTIONS(208), - [sym_keyword_drop] = ACTIONS(208), - [sym_keyword_schemafull] = ACTIONS(208), - [sym_keyword_schemaless] = ACTIONS(208), - [sym_keyword_changefeed] = ACTIONS(208), - [sym_keyword_type] = ACTIONS(208), - [sym_keyword_permissions] = ACTIONS(208), - [sym_keyword_for] = ACTIONS(208), - [sym_keyword_comment] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(208), - [anon_sym_DASH_GT] = ACTIONS(208), - [anon_sym_LBRACK] = ACTIONS(208), - [anon_sym_LT_DASH] = ACTIONS(210), - [anon_sym_LT_DASH_GT] = ACTIONS(208), - [anon_sym_STAR] = ACTIONS(210), - [anon_sym_DOT] = ACTIONS(208), - [anon_sym_LT] = ACTIONS(210), - [anon_sym_GT] = ACTIONS(210), - [anon_sym_EQ] = ACTIONS(210), - [anon_sym_DASH] = ACTIONS(210), - [anon_sym_AT] = ACTIONS(210), - [anon_sym_LT_PIPE] = ACTIONS(208), - [anon_sym_AMP_AMP] = ACTIONS(208), - [anon_sym_PIPE_PIPE] = ACTIONS(208), - [anon_sym_QMARK_QMARK] = ACTIONS(208), - [anon_sym_QMARK_COLON] = ACTIONS(208), - [anon_sym_BANG_EQ] = ACTIONS(208), - [anon_sym_EQ_EQ] = ACTIONS(208), - [anon_sym_QMARK_EQ] = ACTIONS(208), - [anon_sym_STAR_EQ] = ACTIONS(208), - [anon_sym_TILDE] = ACTIONS(208), - [anon_sym_BANG_TILDE] = ACTIONS(208), - [anon_sym_STAR_TILDE] = ACTIONS(208), - [anon_sym_LT_EQ] = ACTIONS(208), - [anon_sym_GT_EQ] = ACTIONS(208), - [anon_sym_PLUS] = ACTIONS(210), - [anon_sym_PLUS_EQ] = ACTIONS(208), - [anon_sym_DASH_EQ] = ACTIONS(208), - [anon_sym_u00d7] = ACTIONS(208), - [anon_sym_SLASH] = ACTIONS(210), - [anon_sym_u00f7] = ACTIONS(208), - [anon_sym_STAR_STAR] = ACTIONS(208), - [anon_sym_u220b] = ACTIONS(208), - [anon_sym_u220c] = ACTIONS(208), - [anon_sym_u2287] = ACTIONS(208), - [anon_sym_u2283] = ACTIONS(208), - [anon_sym_u2285] = ACTIONS(208), - [anon_sym_u2208] = ACTIONS(208), - [anon_sym_u2209] = ACTIONS(208), - [anon_sym_u2286] = ACTIONS(208), - [anon_sym_u2282] = ACTIONS(208), - [anon_sym_u2284] = ACTIONS(208), - [anon_sym_AT_AT] = ACTIONS(208), + [sym_semi_colon] = ACTIONS(196), + [sym_keyword_as] = ACTIONS(196), + [sym_keyword_where] = ACTIONS(196), + [sym_keyword_group] = ACTIONS(196), + [sym_keyword_and] = ACTIONS(196), + [sym_keyword_or] = ACTIONS(196), + [sym_keyword_is] = ACTIONS(196), + [sym_keyword_not] = ACTIONS(198), + [sym_keyword_contains] = ACTIONS(196), + [sym_keyword_contains_not] = ACTIONS(196), + [sym_keyword_contains_all] = ACTIONS(196), + [sym_keyword_contains_any] = ACTIONS(196), + [sym_keyword_contains_none] = ACTIONS(196), + [sym_keyword_inside] = ACTIONS(196), + [sym_keyword_in] = ACTIONS(198), + [sym_keyword_not_inside] = ACTIONS(196), + [sym_keyword_all_inside] = ACTIONS(196), + [sym_keyword_any_inside] = ACTIONS(196), + [sym_keyword_none_inside] = ACTIONS(196), + [sym_keyword_outside] = ACTIONS(196), + [sym_keyword_intersects] = ACTIONS(196), + [sym_keyword_drop] = ACTIONS(196), + [sym_keyword_schemafull] = ACTIONS(196), + [sym_keyword_schemaless] = ACTIONS(196), + [sym_keyword_changefeed] = ACTIONS(196), + [sym_keyword_type] = ACTIONS(196), + [sym_keyword_permissions] = ACTIONS(196), + [sym_keyword_for] = ACTIONS(196), + [sym_keyword_comment] = ACTIONS(196), + [anon_sym_COMMA] = ACTIONS(196), + [anon_sym_DASH_GT] = ACTIONS(196), + [anon_sym_LBRACK] = ACTIONS(196), + [anon_sym_LT_DASH] = ACTIONS(198), + [anon_sym_LT_DASH_GT] = ACTIONS(196), + [anon_sym_STAR] = ACTIONS(198), + [anon_sym_DOT] = ACTIONS(196), + [anon_sym_LT] = ACTIONS(198), + [anon_sym_GT] = ACTIONS(198), + [anon_sym_EQ] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(198), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_LT_PIPE] = ACTIONS(196), + [anon_sym_AMP_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(196), + [anon_sym_QMARK_QMARK] = ACTIONS(196), + [anon_sym_QMARK_COLON] = ACTIONS(196), + [anon_sym_BANG_EQ] = ACTIONS(196), + [anon_sym_EQ_EQ] = ACTIONS(196), + [anon_sym_QMARK_EQ] = ACTIONS(196), + [anon_sym_STAR_EQ] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_BANG_TILDE] = ACTIONS(196), + [anon_sym_STAR_TILDE] = ACTIONS(196), + [anon_sym_LT_EQ] = ACTIONS(196), + [anon_sym_GT_EQ] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(198), + [anon_sym_PLUS_EQ] = ACTIONS(196), + [anon_sym_DASH_EQ] = ACTIONS(196), + [anon_sym_u00d7] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(198), + [anon_sym_u00f7] = ACTIONS(196), + [anon_sym_STAR_STAR] = ACTIONS(196), + [anon_sym_u220b] = ACTIONS(196), + [anon_sym_u220c] = ACTIONS(196), + [anon_sym_u2287] = ACTIONS(196), + [anon_sym_u2283] = ACTIONS(196), + [anon_sym_u2285] = ACTIONS(196), + [anon_sym_u2208] = ACTIONS(196), + [anon_sym_u2209] = ACTIONS(196), + [anon_sym_u2286] = ACTIONS(196), + [anon_sym_u2282] = ACTIONS(196), + [anon_sym_u2284] = ACTIONS(196), + [anon_sym_AT_AT] = ACTIONS(196), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(192), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_drop] = ACTIONS(192), - [sym_keyword_schemafull] = ACTIONS(192), - [sym_keyword_schemaless] = ACTIONS(192), - [sym_keyword_changefeed] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(144), + [sym_keyword_explain] = ACTIONS(144), + [sym_keyword_parallel] = ACTIONS(144), + [sym_keyword_timeout] = ACTIONS(144), + [sym_keyword_fetch] = ACTIONS(144), + [sym_keyword_limit] = ACTIONS(144), + [sym_keyword_order] = ACTIONS(144), + [sym_keyword_with] = ACTIONS(144), + [sym_keyword_where] = ACTIONS(144), + [sym_keyword_split] = ACTIONS(144), + [sym_keyword_group] = ACTIONS(144), + [sym_keyword_and] = ACTIONS(144), + [sym_keyword_or] = ACTIONS(146), + [sym_keyword_is] = ACTIONS(144), + [sym_keyword_not] = ACTIONS(146), + [sym_keyword_contains] = ACTIONS(144), + [sym_keyword_contains_not] = ACTIONS(144), + [sym_keyword_contains_all] = ACTIONS(144), + [sym_keyword_contains_any] = ACTIONS(144), + [sym_keyword_contains_none] = ACTIONS(144), + [sym_keyword_inside] = ACTIONS(144), + [sym_keyword_in] = ACTIONS(146), + [sym_keyword_not_inside] = ACTIONS(144), + [sym_keyword_all_inside] = ACTIONS(144), + [sym_keyword_any_inside] = ACTIONS(144), + [sym_keyword_none_inside] = ACTIONS(144), + [sym_keyword_outside] = ACTIONS(144), + [sym_keyword_intersects] = ACTIONS(144), + [anon_sym_COMMA] = ACTIONS(144), + [anon_sym_DASH_GT] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_RPAREN] = ACTIONS(144), + [anon_sym_RBRACE] = ACTIONS(144), + [anon_sym_LT_DASH] = ACTIONS(146), + [anon_sym_LT_DASH_GT] = ACTIONS(144), + [anon_sym_STAR] = ACTIONS(146), + [anon_sym_DOT] = ACTIONS(144), + [anon_sym_LT] = ACTIONS(146), + [anon_sym_GT] = ACTIONS(146), + [anon_sym_EQ] = ACTIONS(146), + [anon_sym_DASH] = ACTIONS(146), + [anon_sym_AT] = ACTIONS(146), + [anon_sym_LT_PIPE] = ACTIONS(144), + [anon_sym_AMP_AMP] = ACTIONS(144), + [anon_sym_PIPE_PIPE] = ACTIONS(144), + [anon_sym_QMARK_QMARK] = ACTIONS(144), + [anon_sym_QMARK_COLON] = ACTIONS(144), + [anon_sym_BANG_EQ] = ACTIONS(144), + [anon_sym_EQ_EQ] = ACTIONS(144), + [anon_sym_QMARK_EQ] = ACTIONS(144), + [anon_sym_STAR_EQ] = ACTIONS(144), + [anon_sym_TILDE] = ACTIONS(144), + [anon_sym_BANG_TILDE] = ACTIONS(144), + [anon_sym_STAR_TILDE] = ACTIONS(144), + [anon_sym_LT_EQ] = ACTIONS(144), + [anon_sym_GT_EQ] = ACTIONS(144), + [anon_sym_PLUS] = ACTIONS(146), + [anon_sym_PLUS_EQ] = ACTIONS(144), + [anon_sym_DASH_EQ] = ACTIONS(144), + [anon_sym_u00d7] = ACTIONS(144), + [anon_sym_SLASH] = ACTIONS(146), + [anon_sym_u00f7] = ACTIONS(144), + [anon_sym_STAR_STAR] = ACTIONS(144), + [anon_sym_u220b] = ACTIONS(144), + [anon_sym_u220c] = ACTIONS(144), + [anon_sym_u2287] = ACTIONS(144), + [anon_sym_u2283] = ACTIONS(144), + [anon_sym_u2285] = ACTIONS(144), + [anon_sym_u2208] = ACTIONS(144), + [anon_sym_u2209] = ACTIONS(144), + [anon_sym_u2286] = ACTIONS(144), + [anon_sym_u2282] = ACTIONS(144), + [anon_sym_u2284] = ACTIONS(144), + [anon_sym_AT_AT] = ACTIONS(144), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(192), + [ts_builtin_sym_end] = ACTIONS(180), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_drop] = ACTIONS(192), - [sym_keyword_schemafull] = ACTIONS(192), - [sym_keyword_schemaless] = ACTIONS(192), - [sym_keyword_changefeed] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_for] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(180), + [sym_keyword_as] = ACTIONS(180), + [sym_keyword_where] = ACTIONS(180), + [sym_keyword_group] = ACTIONS(180), + [sym_keyword_and] = ACTIONS(180), + [sym_keyword_or] = ACTIONS(180), + [sym_keyword_is] = ACTIONS(180), + [sym_keyword_not] = ACTIONS(182), + [sym_keyword_contains] = ACTIONS(180), + [sym_keyword_contains_not] = ACTIONS(180), + [sym_keyword_contains_all] = ACTIONS(180), + [sym_keyword_contains_any] = ACTIONS(180), + [sym_keyword_contains_none] = ACTIONS(180), + [sym_keyword_inside] = ACTIONS(180), + [sym_keyword_in] = ACTIONS(182), + [sym_keyword_not_inside] = ACTIONS(180), + [sym_keyword_all_inside] = ACTIONS(180), + [sym_keyword_any_inside] = ACTIONS(180), + [sym_keyword_none_inside] = ACTIONS(180), + [sym_keyword_outside] = ACTIONS(180), + [sym_keyword_intersects] = ACTIONS(180), + [sym_keyword_drop] = ACTIONS(180), + [sym_keyword_schemafull] = ACTIONS(180), + [sym_keyword_schemaless] = ACTIONS(180), + [sym_keyword_changefeed] = ACTIONS(180), + [sym_keyword_type] = ACTIONS(180), + [sym_keyword_permissions] = ACTIONS(180), + [sym_keyword_for] = ACTIONS(180), + [sym_keyword_comment] = ACTIONS(180), + [anon_sym_COMMA] = ACTIONS(180), + [anon_sym_DASH_GT] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_LT_DASH] = ACTIONS(182), + [anon_sym_LT_DASH_GT] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(182), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(182), + [anon_sym_GT] = ACTIONS(182), + [anon_sym_EQ] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_AT] = ACTIONS(182), + [anon_sym_LT_PIPE] = ACTIONS(180), + [anon_sym_AMP_AMP] = ACTIONS(180), + [anon_sym_PIPE_PIPE] = ACTIONS(180), + [anon_sym_QMARK_QMARK] = ACTIONS(180), + [anon_sym_QMARK_COLON] = ACTIONS(180), + [anon_sym_BANG_EQ] = ACTIONS(180), + [anon_sym_EQ_EQ] = ACTIONS(180), + [anon_sym_QMARK_EQ] = ACTIONS(180), + [anon_sym_STAR_EQ] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_BANG_TILDE] = ACTIONS(180), + [anon_sym_STAR_TILDE] = ACTIONS(180), + [anon_sym_LT_EQ] = ACTIONS(180), + [anon_sym_GT_EQ] = ACTIONS(180), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_PLUS_EQ] = ACTIONS(180), + [anon_sym_DASH_EQ] = ACTIONS(180), + [anon_sym_u00d7] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(182), + [anon_sym_u00f7] = ACTIONS(180), + [anon_sym_STAR_STAR] = ACTIONS(180), + [anon_sym_u220b] = ACTIONS(180), + [anon_sym_u220c] = ACTIONS(180), + [anon_sym_u2287] = ACTIONS(180), + [anon_sym_u2283] = ACTIONS(180), + [anon_sym_u2285] = ACTIONS(180), + [anon_sym_u2208] = ACTIONS(180), + [anon_sym_u2209] = ACTIONS(180), + [anon_sym_u2286] = ACTIONS(180), + [anon_sym_u2282] = ACTIONS(180), + [anon_sym_u2284] = ACTIONS(180), + [anon_sym_AT_AT] = ACTIONS(180), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(140), - [sym_keyword_as] = ACTIONS(140), - [sym_keyword_where] = ACTIONS(140), - [sym_keyword_group] = ACTIONS(140), - [sym_keyword_and] = ACTIONS(140), - [sym_keyword_or] = ACTIONS(140), - [sym_keyword_is] = ACTIONS(140), - [sym_keyword_not] = ACTIONS(142), - [sym_keyword_contains] = ACTIONS(140), - [sym_keyword_contains_not] = ACTIONS(140), - [sym_keyword_contains_all] = ACTIONS(140), - [sym_keyword_contains_any] = ACTIONS(140), - [sym_keyword_contains_none] = ACTIONS(140), - [sym_keyword_inside] = ACTIONS(140), - [sym_keyword_in] = ACTIONS(142), - [sym_keyword_not_inside] = ACTIONS(140), - [sym_keyword_all_inside] = ACTIONS(140), - [sym_keyword_any_inside] = ACTIONS(140), - [sym_keyword_none_inside] = ACTIONS(140), - [sym_keyword_outside] = ACTIONS(140), - [sym_keyword_intersects] = ACTIONS(140), - [sym_keyword_drop] = ACTIONS(140), - [sym_keyword_schemafull] = ACTIONS(140), - [sym_keyword_schemaless] = ACTIONS(140), - [sym_keyword_changefeed] = ACTIONS(140), - [sym_keyword_type] = ACTIONS(140), - [sym_keyword_permissions] = ACTIONS(140), - [sym_keyword_for] = ACTIONS(140), - [sym_keyword_comment] = ACTIONS(140), - [anon_sym_COMMA] = ACTIONS(140), - [anon_sym_DASH_GT] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(140), - [anon_sym_LT_DASH] = ACTIONS(142), - [anon_sym_LT_DASH_GT] = ACTIONS(140), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_DOT] = ACTIONS(140), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_GT] = ACTIONS(142), - [anon_sym_EQ] = ACTIONS(142), - [anon_sym_DASH] = ACTIONS(142), - [anon_sym_AT] = ACTIONS(142), - [anon_sym_LT_PIPE] = ACTIONS(140), - [anon_sym_AMP_AMP] = ACTIONS(140), - [anon_sym_PIPE_PIPE] = ACTIONS(140), - [anon_sym_QMARK_QMARK] = ACTIONS(140), - [anon_sym_QMARK_COLON] = ACTIONS(140), - [anon_sym_BANG_EQ] = ACTIONS(140), - [anon_sym_EQ_EQ] = ACTIONS(140), - [anon_sym_QMARK_EQ] = ACTIONS(140), - [anon_sym_STAR_EQ] = ACTIONS(140), - [anon_sym_TILDE] = ACTIONS(140), - [anon_sym_BANG_TILDE] = ACTIONS(140), - [anon_sym_STAR_TILDE] = ACTIONS(140), - [anon_sym_LT_EQ] = ACTIONS(140), - [anon_sym_GT_EQ] = ACTIONS(140), - [anon_sym_PLUS] = ACTIONS(142), - [anon_sym_PLUS_EQ] = ACTIONS(140), - [anon_sym_DASH_EQ] = ACTIONS(140), - [anon_sym_u00d7] = ACTIONS(140), - [anon_sym_SLASH] = ACTIONS(142), - [anon_sym_u00f7] = ACTIONS(140), - [anon_sym_STAR_STAR] = ACTIONS(140), - [anon_sym_u220b] = ACTIONS(140), - [anon_sym_u220c] = ACTIONS(140), - [anon_sym_u2287] = ACTIONS(140), - [anon_sym_u2283] = ACTIONS(140), - [anon_sym_u2285] = ACTIONS(140), - [anon_sym_u2208] = ACTIONS(140), - [anon_sym_u2209] = ACTIONS(140), - [anon_sym_u2286] = ACTIONS(140), - [anon_sym_u2282] = ACTIONS(140), - [anon_sym_u2284] = ACTIONS(140), - [anon_sym_AT_AT] = ACTIONS(140), + [sym_semi_colon] = ACTIONS(184), + [sym_keyword_explain] = ACTIONS(184), + [sym_keyword_parallel] = ACTIONS(184), + [sym_keyword_timeout] = ACTIONS(184), + [sym_keyword_fetch] = ACTIONS(184), + [sym_keyword_limit] = ACTIONS(184), + [sym_keyword_order] = ACTIONS(184), + [sym_keyword_with] = ACTIONS(184), + [sym_keyword_where] = ACTIONS(184), + [sym_keyword_split] = ACTIONS(184), + [sym_keyword_group] = ACTIONS(184), + [sym_keyword_and] = ACTIONS(184), + [sym_keyword_or] = ACTIONS(186), + [sym_keyword_is] = ACTIONS(184), + [sym_keyword_not] = ACTIONS(186), + [sym_keyword_contains] = ACTIONS(184), + [sym_keyword_contains_not] = ACTIONS(184), + [sym_keyword_contains_all] = ACTIONS(184), + [sym_keyword_contains_any] = ACTIONS(184), + [sym_keyword_contains_none] = ACTIONS(184), + [sym_keyword_inside] = ACTIONS(184), + [sym_keyword_in] = ACTIONS(186), + [sym_keyword_not_inside] = ACTIONS(184), + [sym_keyword_all_inside] = ACTIONS(184), + [sym_keyword_any_inside] = ACTIONS(184), + [sym_keyword_none_inside] = ACTIONS(184), + [sym_keyword_outside] = ACTIONS(184), + [sym_keyword_intersects] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(184), + [anon_sym_DASH_GT] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(184), + [anon_sym_RPAREN] = ACTIONS(184), + [anon_sym_RBRACE] = ACTIONS(184), + [anon_sym_LT_DASH] = ACTIONS(186), + [anon_sym_LT_DASH_GT] = ACTIONS(184), + [anon_sym_STAR] = ACTIONS(186), + [anon_sym_DOT] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(186), + [anon_sym_GT] = ACTIONS(186), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_DASH] = ACTIONS(186), + [anon_sym_AT] = ACTIONS(186), + [anon_sym_LT_PIPE] = ACTIONS(184), + [anon_sym_AMP_AMP] = ACTIONS(184), + [anon_sym_PIPE_PIPE] = ACTIONS(184), + [anon_sym_QMARK_QMARK] = ACTIONS(184), + [anon_sym_QMARK_COLON] = ACTIONS(184), + [anon_sym_BANG_EQ] = ACTIONS(184), + [anon_sym_EQ_EQ] = ACTIONS(184), + [anon_sym_QMARK_EQ] = ACTIONS(184), + [anon_sym_STAR_EQ] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(184), + [anon_sym_BANG_TILDE] = ACTIONS(184), + [anon_sym_STAR_TILDE] = ACTIONS(184), + [anon_sym_LT_EQ] = ACTIONS(184), + [anon_sym_GT_EQ] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(186), + [anon_sym_PLUS_EQ] = ACTIONS(184), + [anon_sym_DASH_EQ] = ACTIONS(184), + [anon_sym_u00d7] = ACTIONS(184), + [anon_sym_SLASH] = ACTIONS(186), + [anon_sym_u00f7] = ACTIONS(184), + [anon_sym_STAR_STAR] = ACTIONS(184), + [anon_sym_u220b] = ACTIONS(184), + [anon_sym_u220c] = ACTIONS(184), + [anon_sym_u2287] = ACTIONS(184), + [anon_sym_u2283] = ACTIONS(184), + [anon_sym_u2285] = ACTIONS(184), + [anon_sym_u2208] = ACTIONS(184), + [anon_sym_u2209] = ACTIONS(184), + [anon_sym_u2286] = ACTIONS(184), + [anon_sym_u2282] = ACTIONS(184), + [anon_sym_u2284] = ACTIONS(184), + [anon_sym_AT_AT] = ACTIONS(184), + }, + [318] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(148), + [sym_keyword_explain] = ACTIONS(148), + [sym_keyword_parallel] = ACTIONS(148), + [sym_keyword_timeout] = ACTIONS(148), + [sym_keyword_fetch] = ACTIONS(148), + [sym_keyword_limit] = ACTIONS(148), + [sym_keyword_order] = ACTIONS(148), + [sym_keyword_with] = ACTIONS(148), + [sym_keyword_where] = ACTIONS(148), + [sym_keyword_split] = ACTIONS(148), + [sym_keyword_group] = ACTIONS(148), + [sym_keyword_and] = ACTIONS(148), + [sym_keyword_or] = ACTIONS(150), + [sym_keyword_is] = ACTIONS(148), + [sym_keyword_not] = ACTIONS(150), + [sym_keyword_contains] = ACTIONS(148), + [sym_keyword_contains_not] = ACTIONS(148), + [sym_keyword_contains_all] = ACTIONS(148), + [sym_keyword_contains_any] = ACTIONS(148), + [sym_keyword_contains_none] = ACTIONS(148), + [sym_keyword_inside] = ACTIONS(148), + [sym_keyword_in] = ACTIONS(150), + [sym_keyword_not_inside] = ACTIONS(148), + [sym_keyword_all_inside] = ACTIONS(148), + [sym_keyword_any_inside] = ACTIONS(148), + [sym_keyword_none_inside] = ACTIONS(148), + [sym_keyword_outside] = ACTIONS(148), + [sym_keyword_intersects] = ACTIONS(148), + [anon_sym_COMMA] = ACTIONS(148), + [anon_sym_DASH_GT] = ACTIONS(148), + [anon_sym_LBRACK] = ACTIONS(148), + [anon_sym_RPAREN] = ACTIONS(148), + [anon_sym_RBRACE] = ACTIONS(148), + [anon_sym_LT_DASH] = ACTIONS(150), + [anon_sym_LT_DASH_GT] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(150), + [anon_sym_EQ] = ACTIONS(150), + [anon_sym_DASH] = ACTIONS(150), + [anon_sym_AT] = ACTIONS(150), + [anon_sym_LT_PIPE] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [anon_sym_QMARK_QMARK] = ACTIONS(148), + [anon_sym_QMARK_COLON] = ACTIONS(148), + [anon_sym_BANG_EQ] = ACTIONS(148), + [anon_sym_EQ_EQ] = ACTIONS(148), + [anon_sym_QMARK_EQ] = ACTIONS(148), + [anon_sym_STAR_EQ] = ACTIONS(148), + [anon_sym_TILDE] = ACTIONS(148), + [anon_sym_BANG_TILDE] = ACTIONS(148), + [anon_sym_STAR_TILDE] = ACTIONS(148), + [anon_sym_LT_EQ] = ACTIONS(148), + [anon_sym_GT_EQ] = ACTIONS(148), + [anon_sym_PLUS] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(148), + [anon_sym_DASH_EQ] = ACTIONS(148), + [anon_sym_u00d7] = ACTIONS(148), + [anon_sym_SLASH] = ACTIONS(150), + [anon_sym_u00f7] = ACTIONS(148), + [anon_sym_STAR_STAR] = ACTIONS(148), + [anon_sym_u220b] = ACTIONS(148), + [anon_sym_u220c] = ACTIONS(148), + [anon_sym_u2287] = ACTIONS(148), + [anon_sym_u2283] = ACTIONS(148), + [anon_sym_u2285] = ACTIONS(148), + [anon_sym_u2208] = ACTIONS(148), + [anon_sym_u2209] = ACTIONS(148), + [anon_sym_u2286] = ACTIONS(148), + [anon_sym_u2282] = ACTIONS(148), + [anon_sym_u2284] = ACTIONS(148), + [anon_sym_AT_AT] = ACTIONS(148), }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(152), + [319] = { + [ts_builtin_sym_end] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_as] = ACTIONS(200), + [sym_keyword_where] = ACTIONS(200), + [sym_keyword_group] = ACTIONS(200), + [sym_keyword_and] = ACTIONS(200), + [sym_keyword_or] = ACTIONS(200), + [sym_keyword_is] = ACTIONS(200), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(200), + [sym_keyword_contains_not] = ACTIONS(200), + [sym_keyword_contains_all] = ACTIONS(200), + [sym_keyword_contains_any] = ACTIONS(200), + [sym_keyword_contains_none] = ACTIONS(200), + [sym_keyword_inside] = ACTIONS(200), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(200), + [sym_keyword_all_inside] = ACTIONS(200), + [sym_keyword_any_inside] = ACTIONS(200), + [sym_keyword_none_inside] = ACTIONS(200), + [sym_keyword_outside] = ACTIONS(200), + [sym_keyword_intersects] = ACTIONS(200), + [sym_keyword_drop] = ACTIONS(200), + [sym_keyword_schemafull] = ACTIONS(200), + [sym_keyword_schemaless] = ACTIONS(200), + [sym_keyword_changefeed] = ACTIONS(200), + [sym_keyword_type] = ACTIONS(200), + [sym_keyword_permissions] = ACTIONS(200), + [sym_keyword_for] = ACTIONS(200), + [sym_keyword_comment] = ACTIONS(200), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [320] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(152), - [sym_keyword_as] = ACTIONS(152), + [sym_keyword_explain] = ACTIONS(152), + [sym_keyword_parallel] = ACTIONS(152), + [sym_keyword_timeout] = ACTIONS(152), + [sym_keyword_fetch] = ACTIONS(152), + [sym_keyword_limit] = ACTIONS(152), + [sym_keyword_order] = ACTIONS(152), + [sym_keyword_with] = ACTIONS(152), [sym_keyword_where] = ACTIONS(152), + [sym_keyword_split] = ACTIONS(152), [sym_keyword_group] = ACTIONS(152), [sym_keyword_and] = ACTIONS(152), - [sym_keyword_or] = ACTIONS(152), + [sym_keyword_or] = ACTIONS(154), [sym_keyword_is] = ACTIONS(152), [sym_keyword_not] = ACTIONS(154), [sym_keyword_contains] = ACTIONS(152), @@ -43132,17 +43344,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(152), [sym_keyword_outside] = ACTIONS(152), [sym_keyword_intersects] = ACTIONS(152), - [sym_keyword_drop] = ACTIONS(152), - [sym_keyword_schemafull] = ACTIONS(152), - [sym_keyword_schemaless] = ACTIONS(152), - [sym_keyword_changefeed] = ACTIONS(152), - [sym_keyword_type] = ACTIONS(152), - [sym_keyword_permissions] = ACTIONS(152), - [sym_keyword_for] = ACTIONS(152), - [sym_keyword_comment] = ACTIONS(152), [anon_sym_COMMA] = ACTIONS(152), [anon_sym_DASH_GT] = ACTIONS(152), [anon_sym_LBRACK] = ACTIONS(152), + [anon_sym_RPAREN] = ACTIONS(152), + [anon_sym_RBRACE] = ACTIONS(152), [anon_sym_LT_DASH] = ACTIONS(154), [anon_sym_LT_DASH_GT] = ACTIONS(152), [anon_sym_STAR] = ACTIONS(154), @@ -43185,392 +43391,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(152), [anon_sym_AT_AT] = ACTIONS(152), }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(204), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(204), - [sym_keyword_as] = ACTIONS(204), - [sym_keyword_where] = ACTIONS(204), - [sym_keyword_group] = ACTIONS(204), - [sym_keyword_and] = ACTIONS(204), - [sym_keyword_or] = ACTIONS(204), - [sym_keyword_is] = ACTIONS(204), - [sym_keyword_not] = ACTIONS(206), - [sym_keyword_contains] = ACTIONS(204), - [sym_keyword_contains_not] = ACTIONS(204), - [sym_keyword_contains_all] = ACTIONS(204), - [sym_keyword_contains_any] = ACTIONS(204), - [sym_keyword_contains_none] = ACTIONS(204), - [sym_keyword_inside] = ACTIONS(204), - [sym_keyword_in] = ACTIONS(206), - [sym_keyword_not_inside] = ACTIONS(204), - [sym_keyword_all_inside] = ACTIONS(204), - [sym_keyword_any_inside] = ACTIONS(204), - [sym_keyword_none_inside] = ACTIONS(204), - [sym_keyword_outside] = ACTIONS(204), - [sym_keyword_intersects] = ACTIONS(204), - [sym_keyword_drop] = ACTIONS(204), - [sym_keyword_schemafull] = ACTIONS(204), - [sym_keyword_schemaless] = ACTIONS(204), - [sym_keyword_changefeed] = ACTIONS(204), - [sym_keyword_type] = ACTIONS(204), - [sym_keyword_permissions] = ACTIONS(204), - [sym_keyword_for] = ACTIONS(204), - [sym_keyword_comment] = ACTIONS(204), - [anon_sym_COMMA] = ACTIONS(204), - [anon_sym_DASH_GT] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_LT_DASH] = ACTIONS(206), - [anon_sym_LT_DASH_GT] = ACTIONS(204), - [anon_sym_STAR] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(206), - [anon_sym_GT] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_AT] = ACTIONS(206), - [anon_sym_LT_PIPE] = ACTIONS(204), - [anon_sym_AMP_AMP] = ACTIONS(204), - [anon_sym_PIPE_PIPE] = ACTIONS(204), - [anon_sym_QMARK_QMARK] = ACTIONS(204), - [anon_sym_QMARK_COLON] = ACTIONS(204), - [anon_sym_BANG_EQ] = ACTIONS(204), - [anon_sym_EQ_EQ] = ACTIONS(204), - [anon_sym_QMARK_EQ] = ACTIONS(204), - [anon_sym_STAR_EQ] = ACTIONS(204), - [anon_sym_TILDE] = ACTIONS(204), - [anon_sym_BANG_TILDE] = ACTIONS(204), - [anon_sym_STAR_TILDE] = ACTIONS(204), - [anon_sym_LT_EQ] = ACTIONS(204), - [anon_sym_GT_EQ] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(206), - [anon_sym_PLUS_EQ] = ACTIONS(204), - [anon_sym_DASH_EQ] = ACTIONS(204), - [anon_sym_u00d7] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(206), - [anon_sym_u00f7] = ACTIONS(204), - [anon_sym_STAR_STAR] = ACTIONS(204), - [anon_sym_u220b] = ACTIONS(204), - [anon_sym_u220c] = ACTIONS(204), - [anon_sym_u2287] = ACTIONS(204), - [anon_sym_u2283] = ACTIONS(204), - [anon_sym_u2285] = ACTIONS(204), - [anon_sym_u2208] = ACTIONS(204), - [anon_sym_u2209] = ACTIONS(204), - [anon_sym_u2286] = ACTIONS(204), - [anon_sym_u2282] = ACTIONS(204), - [anon_sym_u2284] = ACTIONS(204), - [anon_sym_AT_AT] = ACTIONS(204), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(176), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(176), - [sym_keyword_as] = ACTIONS(176), - [sym_keyword_where] = ACTIONS(176), - [sym_keyword_group] = ACTIONS(176), - [sym_keyword_and] = ACTIONS(176), - [sym_keyword_or] = ACTIONS(176), - [sym_keyword_is] = ACTIONS(176), - [sym_keyword_not] = ACTIONS(178), - [sym_keyword_contains] = ACTIONS(176), - [sym_keyword_contains_not] = ACTIONS(176), - [sym_keyword_contains_all] = ACTIONS(176), - [sym_keyword_contains_any] = ACTIONS(176), - [sym_keyword_contains_none] = ACTIONS(176), - [sym_keyword_inside] = ACTIONS(176), - [sym_keyword_in] = ACTIONS(178), - [sym_keyword_not_inside] = ACTIONS(176), - [sym_keyword_all_inside] = ACTIONS(176), - [sym_keyword_any_inside] = ACTIONS(176), - [sym_keyword_none_inside] = ACTIONS(176), - [sym_keyword_outside] = ACTIONS(176), - [sym_keyword_intersects] = ACTIONS(176), - [sym_keyword_drop] = ACTIONS(176), - [sym_keyword_schemafull] = ACTIONS(176), - [sym_keyword_schemaless] = ACTIONS(176), - [sym_keyword_changefeed] = ACTIONS(176), - [sym_keyword_type] = ACTIONS(176), - [sym_keyword_permissions] = ACTIONS(176), - [sym_keyword_for] = ACTIONS(176), - [sym_keyword_comment] = ACTIONS(176), - [anon_sym_COMMA] = ACTIONS(176), - [anon_sym_DASH_GT] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(176), - [anon_sym_LT_DASH] = ACTIONS(178), - [anon_sym_LT_DASH_GT] = ACTIONS(176), - [anon_sym_STAR] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(176), - [anon_sym_LT] = ACTIONS(178), - [anon_sym_GT] = ACTIONS(178), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(178), - [anon_sym_AT] = ACTIONS(178), - [anon_sym_LT_PIPE] = ACTIONS(176), - [anon_sym_AMP_AMP] = ACTIONS(176), - [anon_sym_PIPE_PIPE] = ACTIONS(176), - [anon_sym_QMARK_QMARK] = ACTIONS(176), - [anon_sym_QMARK_COLON] = ACTIONS(176), - [anon_sym_BANG_EQ] = ACTIONS(176), - [anon_sym_EQ_EQ] = ACTIONS(176), - [anon_sym_QMARK_EQ] = ACTIONS(176), - [anon_sym_STAR_EQ] = ACTIONS(176), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_BANG_TILDE] = ACTIONS(176), - [anon_sym_STAR_TILDE] = ACTIONS(176), - [anon_sym_LT_EQ] = ACTIONS(176), - [anon_sym_GT_EQ] = ACTIONS(176), - [anon_sym_PLUS] = ACTIONS(178), - [anon_sym_PLUS_EQ] = ACTIONS(176), - [anon_sym_DASH_EQ] = ACTIONS(176), - [anon_sym_u00d7] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(178), - [anon_sym_u00f7] = ACTIONS(176), - [anon_sym_STAR_STAR] = ACTIONS(176), - [anon_sym_u220b] = ACTIONS(176), - [anon_sym_u220c] = ACTIONS(176), - [anon_sym_u2287] = ACTIONS(176), - [anon_sym_u2283] = ACTIONS(176), - [anon_sym_u2285] = ACTIONS(176), - [anon_sym_u2208] = ACTIONS(176), - [anon_sym_u2209] = ACTIONS(176), - [anon_sym_u2286] = ACTIONS(176), - [anon_sym_u2282] = ACTIONS(176), - [anon_sym_u2284] = ACTIONS(176), - [anon_sym_AT_AT] = ACTIONS(176), - }, [321] = { - [ts_builtin_sym_end] = ACTIONS(212), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_as] = ACTIONS(212), - [sym_keyword_where] = ACTIONS(212), - [sym_keyword_group] = ACTIONS(212), - [sym_keyword_and] = ACTIONS(212), - [sym_keyword_or] = ACTIONS(212), - [sym_keyword_is] = ACTIONS(212), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(212), - [sym_keyword_contains_not] = ACTIONS(212), - [sym_keyword_contains_all] = ACTIONS(212), - [sym_keyword_contains_any] = ACTIONS(212), - [sym_keyword_contains_none] = ACTIONS(212), - [sym_keyword_inside] = ACTIONS(212), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(212), - [sym_keyword_all_inside] = ACTIONS(212), - [sym_keyword_any_inside] = ACTIONS(212), - [sym_keyword_none_inside] = ACTIONS(212), - [sym_keyword_outside] = ACTIONS(212), - [sym_keyword_intersects] = ACTIONS(212), - [sym_keyword_drop] = ACTIONS(212), - [sym_keyword_schemafull] = ACTIONS(212), - [sym_keyword_schemaless] = ACTIONS(212), - [sym_keyword_changefeed] = ACTIONS(212), - [sym_keyword_type] = ACTIONS(212), - [sym_keyword_permissions] = ACTIONS(212), - [sym_keyword_for] = ACTIONS(212), - [sym_keyword_comment] = ACTIONS(212), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(168), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(168), - [sym_keyword_as] = ACTIONS(168), - [sym_keyword_where] = ACTIONS(168), - [sym_keyword_group] = ACTIONS(168), - [sym_keyword_and] = ACTIONS(168), - [sym_keyword_or] = ACTIONS(168), - [sym_keyword_is] = ACTIONS(168), - [sym_keyword_not] = ACTIONS(170), - [sym_keyword_contains] = ACTIONS(168), - [sym_keyword_contains_not] = ACTIONS(168), - [sym_keyword_contains_all] = ACTIONS(168), - [sym_keyword_contains_any] = ACTIONS(168), - [sym_keyword_contains_none] = ACTIONS(168), - [sym_keyword_inside] = ACTIONS(168), - [sym_keyword_in] = ACTIONS(170), - [sym_keyword_not_inside] = ACTIONS(168), - [sym_keyword_all_inside] = ACTIONS(168), - [sym_keyword_any_inside] = ACTIONS(168), - [sym_keyword_none_inside] = ACTIONS(168), - [sym_keyword_outside] = ACTIONS(168), - [sym_keyword_intersects] = ACTIONS(168), - [sym_keyword_drop] = ACTIONS(168), - [sym_keyword_schemafull] = ACTIONS(168), - [sym_keyword_schemaless] = ACTIONS(168), - [sym_keyword_changefeed] = ACTIONS(168), - [sym_keyword_type] = ACTIONS(168), - [sym_keyword_permissions] = ACTIONS(168), - [sym_keyword_for] = ACTIONS(168), - [sym_keyword_comment] = ACTIONS(168), - [anon_sym_COMMA] = ACTIONS(168), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_LBRACK] = ACTIONS(168), - [anon_sym_LT_DASH] = ACTIONS(170), - [anon_sym_LT_DASH_GT] = ACTIONS(168), - [anon_sym_STAR] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LT] = ACTIONS(170), - [anon_sym_GT] = ACTIONS(170), - [anon_sym_EQ] = ACTIONS(170), - [anon_sym_DASH] = ACTIONS(170), - [anon_sym_AT] = ACTIONS(170), - [anon_sym_LT_PIPE] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(168), - [anon_sym_PIPE_PIPE] = ACTIONS(168), - [anon_sym_QMARK_QMARK] = ACTIONS(168), - [anon_sym_QMARK_COLON] = ACTIONS(168), - [anon_sym_BANG_EQ] = ACTIONS(168), - [anon_sym_EQ_EQ] = ACTIONS(168), - [anon_sym_QMARK_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(168), - [anon_sym_BANG_TILDE] = ACTIONS(168), - [anon_sym_STAR_TILDE] = ACTIONS(168), - [anon_sym_LT_EQ] = ACTIONS(168), - [anon_sym_GT_EQ] = ACTIONS(168), - [anon_sym_PLUS] = ACTIONS(170), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_u00d7] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_u00f7] = ACTIONS(168), - [anon_sym_STAR_STAR] = ACTIONS(168), - [anon_sym_u220b] = ACTIONS(168), - [anon_sym_u220c] = ACTIONS(168), - [anon_sym_u2287] = ACTIONS(168), - [anon_sym_u2283] = ACTIONS(168), - [anon_sym_u2285] = ACTIONS(168), - [anon_sym_u2208] = ACTIONS(168), - [anon_sym_u2209] = ACTIONS(168), - [anon_sym_u2286] = ACTIONS(168), - [anon_sym_u2282] = ACTIONS(168), - [anon_sym_u2284] = ACTIONS(168), - [anon_sym_AT_AT] = ACTIONS(168), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(57), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(57), - [sym_keyword_explain] = ACTIONS(57), - [sym_keyword_parallel] = ACTIONS(57), - [sym_keyword_timeout] = ACTIONS(57), - [sym_keyword_fetch] = ACTIONS(57), - [sym_keyword_limit] = ACTIONS(57), - [sym_keyword_order] = ACTIONS(57), - [sym_keyword_with] = ACTIONS(57), - [sym_keyword_where] = ACTIONS(57), - [sym_keyword_split] = ACTIONS(57), - [sym_keyword_group] = ACTIONS(57), - [sym_keyword_and] = ACTIONS(57), - [sym_keyword_or] = ACTIONS(59), - [sym_keyword_is] = ACTIONS(57), - [sym_keyword_not] = ACTIONS(59), - [sym_keyword_contains] = ACTIONS(57), - [sym_keyword_contains_not] = ACTIONS(57), - [sym_keyword_contains_all] = ACTIONS(57), - [sym_keyword_contains_any] = ACTIONS(57), - [sym_keyword_contains_none] = ACTIONS(57), - [sym_keyword_inside] = ACTIONS(57), - [sym_keyword_in] = ACTIONS(59), - [sym_keyword_not_inside] = ACTIONS(57), - [sym_keyword_all_inside] = ACTIONS(57), - [sym_keyword_any_inside] = ACTIONS(57), - [sym_keyword_none_inside] = ACTIONS(57), - [sym_keyword_outside] = ACTIONS(57), - [sym_keyword_intersects] = ACTIONS(57), - [anon_sym_COMMA] = ACTIONS(57), - [anon_sym_DASH_GT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_COLON] = ACTIONS(114), - [anon_sym_LT_DASH] = ACTIONS(59), - [anon_sym_LT_DASH_GT] = ACTIONS(57), - [anon_sym_STAR] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_EQ] = ACTIONS(59), - [anon_sym_DASH] = ACTIONS(59), - [anon_sym_AT] = ACTIONS(59), - [anon_sym_LT_PIPE] = ACTIONS(57), - [anon_sym_AMP_AMP] = ACTIONS(57), - [anon_sym_PIPE_PIPE] = ACTIONS(57), - [anon_sym_QMARK_QMARK] = ACTIONS(57), - [anon_sym_QMARK_COLON] = ACTIONS(57), - [anon_sym_BANG_EQ] = ACTIONS(57), - [anon_sym_EQ_EQ] = ACTIONS(57), - [anon_sym_QMARK_EQ] = ACTIONS(57), - [anon_sym_STAR_EQ] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_BANG_TILDE] = ACTIONS(57), - [anon_sym_STAR_TILDE] = ACTIONS(57), - [anon_sym_LT_EQ] = ACTIONS(57), - [anon_sym_GT_EQ] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(59), - [anon_sym_PLUS_EQ] = ACTIONS(57), - [anon_sym_DASH_EQ] = ACTIONS(57), - [anon_sym_u00d7] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_u00f7] = ACTIONS(57), - [anon_sym_STAR_STAR] = ACTIONS(57), - [anon_sym_u220b] = ACTIONS(57), - [anon_sym_u220c] = ACTIONS(57), - [anon_sym_u2287] = ACTIONS(57), - [anon_sym_u2283] = ACTIONS(57), - [anon_sym_u2285] = ACTIONS(57), - [anon_sym_u2208] = ACTIONS(57), - [anon_sym_u2209] = ACTIONS(57), - [anon_sym_u2286] = ACTIONS(57), - [anon_sym_u2282] = ACTIONS(57), - [anon_sym_u2284] = ACTIONS(57), - [anon_sym_AT_AT] = ACTIONS(57), + [sym_semi_colon] = ACTIONS(156), + [sym_keyword_explain] = ACTIONS(156), + [sym_keyword_parallel] = ACTIONS(156), + [sym_keyword_timeout] = ACTIONS(156), + [sym_keyword_fetch] = ACTIONS(156), + [sym_keyword_limit] = ACTIONS(156), + [sym_keyword_order] = ACTIONS(156), + [sym_keyword_with] = ACTIONS(156), + [sym_keyword_where] = ACTIONS(156), + [sym_keyword_split] = ACTIONS(156), + [sym_keyword_group] = ACTIONS(156), + [sym_keyword_and] = ACTIONS(156), + [sym_keyword_or] = ACTIONS(158), + [sym_keyword_is] = ACTIONS(156), + [sym_keyword_not] = ACTIONS(158), + [sym_keyword_contains] = ACTIONS(156), + [sym_keyword_contains_not] = ACTIONS(156), + [sym_keyword_contains_all] = ACTIONS(156), + [sym_keyword_contains_any] = ACTIONS(156), + [sym_keyword_contains_none] = ACTIONS(156), + [sym_keyword_inside] = ACTIONS(156), + [sym_keyword_in] = ACTIONS(158), + [sym_keyword_not_inside] = ACTIONS(156), + [sym_keyword_all_inside] = ACTIONS(156), + [sym_keyword_any_inside] = ACTIONS(156), + [sym_keyword_none_inside] = ACTIONS(156), + [sym_keyword_outside] = ACTIONS(156), + [sym_keyword_intersects] = ACTIONS(156), + [anon_sym_COMMA] = ACTIONS(156), + [anon_sym_DASH_GT] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(156), + [anon_sym_RPAREN] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(156), + [anon_sym_LT_DASH] = ACTIONS(158), + [anon_sym_LT_DASH_GT] = ACTIONS(156), + [anon_sym_STAR] = ACTIONS(158), + [anon_sym_DOT] = ACTIONS(156), + [anon_sym_LT] = ACTIONS(158), + [anon_sym_GT] = ACTIONS(158), + [anon_sym_EQ] = ACTIONS(158), + [anon_sym_DASH] = ACTIONS(158), + [anon_sym_AT] = ACTIONS(158), + [anon_sym_LT_PIPE] = ACTIONS(156), + [anon_sym_AMP_AMP] = ACTIONS(156), + [anon_sym_PIPE_PIPE] = ACTIONS(156), + [anon_sym_QMARK_QMARK] = ACTIONS(156), + [anon_sym_QMARK_COLON] = ACTIONS(156), + [anon_sym_BANG_EQ] = ACTIONS(156), + [anon_sym_EQ_EQ] = ACTIONS(156), + [anon_sym_QMARK_EQ] = ACTIONS(156), + [anon_sym_STAR_EQ] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [anon_sym_BANG_TILDE] = ACTIONS(156), + [anon_sym_STAR_TILDE] = ACTIONS(156), + [anon_sym_LT_EQ] = ACTIONS(156), + [anon_sym_GT_EQ] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(156), + [anon_sym_DASH_EQ] = ACTIONS(156), + [anon_sym_u00d7] = ACTIONS(156), + [anon_sym_SLASH] = ACTIONS(158), + [anon_sym_u00f7] = ACTIONS(156), + [anon_sym_STAR_STAR] = ACTIONS(156), + [anon_sym_u220b] = ACTIONS(156), + [anon_sym_u220c] = ACTIONS(156), + [anon_sym_u2287] = ACTIONS(156), + [anon_sym_u2283] = ACTIONS(156), + [anon_sym_u2285] = ACTIONS(156), + [anon_sym_u2208] = ACTIONS(156), + [anon_sym_u2209] = ACTIONS(156), + [anon_sym_u2286] = ACTIONS(156), + [anon_sym_u2282] = ACTIONS(156), + [anon_sym_u2284] = ACTIONS(156), + [anon_sym_AT_AT] = ACTIONS(156), }, - [324] = { + [322] = { [ts_builtin_sym_end] = ACTIONS(164), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(164), @@ -43647,313 +43545,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(164), [anon_sym_AT_AT] = ACTIONS(164), }, + [323] = { + [ts_builtin_sym_end] = ACTIONS(208), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(208), + [sym_keyword_as] = ACTIONS(208), + [sym_keyword_where] = ACTIONS(208), + [sym_keyword_group] = ACTIONS(208), + [sym_keyword_and] = ACTIONS(208), + [sym_keyword_or] = ACTIONS(208), + [sym_keyword_is] = ACTIONS(208), + [sym_keyword_not] = ACTIONS(210), + [sym_keyword_contains] = ACTIONS(208), + [sym_keyword_contains_not] = ACTIONS(208), + [sym_keyword_contains_all] = ACTIONS(208), + [sym_keyword_contains_any] = ACTIONS(208), + [sym_keyword_contains_none] = ACTIONS(208), + [sym_keyword_inside] = ACTIONS(208), + [sym_keyword_in] = ACTIONS(210), + [sym_keyword_not_inside] = ACTIONS(208), + [sym_keyword_all_inside] = ACTIONS(208), + [sym_keyword_any_inside] = ACTIONS(208), + [sym_keyword_none_inside] = ACTIONS(208), + [sym_keyword_outside] = ACTIONS(208), + [sym_keyword_intersects] = ACTIONS(208), + [sym_keyword_drop] = ACTIONS(208), + [sym_keyword_schemafull] = ACTIONS(208), + [sym_keyword_schemaless] = ACTIONS(208), + [sym_keyword_changefeed] = ACTIONS(208), + [sym_keyword_type] = ACTIONS(208), + [sym_keyword_permissions] = ACTIONS(208), + [sym_keyword_for] = ACTIONS(208), + [sym_keyword_comment] = ACTIONS(208), + [anon_sym_COMMA] = ACTIONS(208), + [anon_sym_DASH_GT] = ACTIONS(208), + [anon_sym_LBRACK] = ACTIONS(208), + [anon_sym_LT_DASH] = ACTIONS(210), + [anon_sym_LT_DASH_GT] = ACTIONS(208), + [anon_sym_STAR] = ACTIONS(210), + [anon_sym_DOT] = ACTIONS(208), + [anon_sym_LT] = ACTIONS(210), + [anon_sym_GT] = ACTIONS(210), + [anon_sym_EQ] = ACTIONS(210), + [anon_sym_DASH] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(210), + [anon_sym_LT_PIPE] = ACTIONS(208), + [anon_sym_AMP_AMP] = ACTIONS(208), + [anon_sym_PIPE_PIPE] = ACTIONS(208), + [anon_sym_QMARK_QMARK] = ACTIONS(208), + [anon_sym_QMARK_COLON] = ACTIONS(208), + [anon_sym_BANG_EQ] = ACTIONS(208), + [anon_sym_EQ_EQ] = ACTIONS(208), + [anon_sym_QMARK_EQ] = ACTIONS(208), + [anon_sym_STAR_EQ] = ACTIONS(208), + [anon_sym_TILDE] = ACTIONS(208), + [anon_sym_BANG_TILDE] = ACTIONS(208), + [anon_sym_STAR_TILDE] = ACTIONS(208), + [anon_sym_LT_EQ] = ACTIONS(208), + [anon_sym_GT_EQ] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(210), + [anon_sym_PLUS_EQ] = ACTIONS(208), + [anon_sym_DASH_EQ] = ACTIONS(208), + [anon_sym_u00d7] = ACTIONS(208), + [anon_sym_SLASH] = ACTIONS(210), + [anon_sym_u00f7] = ACTIONS(208), + [anon_sym_STAR_STAR] = ACTIONS(208), + [anon_sym_u220b] = ACTIONS(208), + [anon_sym_u220c] = ACTIONS(208), + [anon_sym_u2287] = ACTIONS(208), + [anon_sym_u2283] = ACTIONS(208), + [anon_sym_u2285] = ACTIONS(208), + [anon_sym_u2208] = ACTIONS(208), + [anon_sym_u2209] = ACTIONS(208), + [anon_sym_u2286] = ACTIONS(208), + [anon_sym_u2282] = ACTIONS(208), + [anon_sym_u2284] = ACTIONS(208), + [anon_sym_AT_AT] = ACTIONS(208), + }, + [324] = { + [ts_builtin_sym_end] = ACTIONS(192), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(192), + [sym_keyword_as] = ACTIONS(192), + [sym_keyword_where] = ACTIONS(192), + [sym_keyword_group] = ACTIONS(192), + [sym_keyword_and] = ACTIONS(192), + [sym_keyword_or] = ACTIONS(192), + [sym_keyword_is] = ACTIONS(192), + [sym_keyword_not] = ACTIONS(194), + [sym_keyword_contains] = ACTIONS(192), + [sym_keyword_contains_not] = ACTIONS(192), + [sym_keyword_contains_all] = ACTIONS(192), + [sym_keyword_contains_any] = ACTIONS(192), + [sym_keyword_contains_none] = ACTIONS(192), + [sym_keyword_inside] = ACTIONS(192), + [sym_keyword_in] = ACTIONS(194), + [sym_keyword_not_inside] = ACTIONS(192), + [sym_keyword_all_inside] = ACTIONS(192), + [sym_keyword_any_inside] = ACTIONS(192), + [sym_keyword_none_inside] = ACTIONS(192), + [sym_keyword_outside] = ACTIONS(192), + [sym_keyword_intersects] = ACTIONS(192), + [sym_keyword_drop] = ACTIONS(192), + [sym_keyword_schemafull] = ACTIONS(192), + [sym_keyword_schemaless] = ACTIONS(192), + [sym_keyword_changefeed] = ACTIONS(192), + [sym_keyword_type] = ACTIONS(192), + [sym_keyword_permissions] = ACTIONS(192), + [sym_keyword_for] = ACTIONS(192), + [sym_keyword_comment] = ACTIONS(192), + [anon_sym_COMMA] = ACTIONS(192), + [anon_sym_DASH_GT] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(192), + [anon_sym_LT_DASH] = ACTIONS(194), + [anon_sym_LT_DASH_GT] = ACTIONS(192), + [anon_sym_STAR] = ACTIONS(194), + [anon_sym_DOT] = ACTIONS(192), + [anon_sym_LT] = ACTIONS(194), + [anon_sym_GT] = ACTIONS(194), + [anon_sym_EQ] = ACTIONS(194), + [anon_sym_DASH] = ACTIONS(194), + [anon_sym_AT] = ACTIONS(194), + [anon_sym_LT_PIPE] = ACTIONS(192), + [anon_sym_AMP_AMP] = ACTIONS(192), + [anon_sym_PIPE_PIPE] = ACTIONS(192), + [anon_sym_QMARK_QMARK] = ACTIONS(192), + [anon_sym_QMARK_COLON] = ACTIONS(192), + [anon_sym_BANG_EQ] = ACTIONS(192), + [anon_sym_EQ_EQ] = ACTIONS(192), + [anon_sym_QMARK_EQ] = ACTIONS(192), + [anon_sym_STAR_EQ] = ACTIONS(192), + [anon_sym_TILDE] = ACTIONS(192), + [anon_sym_BANG_TILDE] = ACTIONS(192), + [anon_sym_STAR_TILDE] = ACTIONS(192), + [anon_sym_LT_EQ] = ACTIONS(192), + [anon_sym_GT_EQ] = ACTIONS(192), + [anon_sym_PLUS] = ACTIONS(194), + [anon_sym_PLUS_EQ] = ACTIONS(192), + [anon_sym_DASH_EQ] = ACTIONS(192), + [anon_sym_u00d7] = ACTIONS(192), + [anon_sym_SLASH] = ACTIONS(194), + [anon_sym_u00f7] = ACTIONS(192), + [anon_sym_STAR_STAR] = ACTIONS(192), + [anon_sym_u220b] = ACTIONS(192), + [anon_sym_u220c] = ACTIONS(192), + [anon_sym_u2287] = ACTIONS(192), + [anon_sym_u2283] = ACTIONS(192), + [anon_sym_u2285] = ACTIONS(192), + [anon_sym_u2208] = ACTIONS(192), + [anon_sym_u2209] = ACTIONS(192), + [anon_sym_u2286] = ACTIONS(192), + [anon_sym_u2282] = ACTIONS(192), + [anon_sym_u2284] = ACTIONS(192), + [anon_sym_AT_AT] = ACTIONS(192), + }, [325] = { - [sym_where_clause] = STATE(888), - [sym_group_clause] = STATE(983), - [sym_operator] = STATE(679), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(820), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(610), - [sym_keyword_as] = ACTIONS(610), - [sym_keyword_where] = ACTIONS(612), - [sym_keyword_group] = ACTIONS(614), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_drop] = ACTIONS(610), - [sym_keyword_schemafull] = ACTIONS(610), - [sym_keyword_schemaless] = ACTIONS(610), - [sym_keyword_changefeed] = ACTIONS(610), - [sym_keyword_type] = ACTIONS(610), - [sym_keyword_permissions] = ACTIONS(610), - [sym_keyword_comment] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), + [ts_builtin_sym_end] = ACTIONS(140), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_as] = ACTIONS(140), + [sym_keyword_where] = ACTIONS(140), + [sym_keyword_group] = ACTIONS(140), + [sym_keyword_and] = ACTIONS(140), + [sym_keyword_or] = ACTIONS(140), + [sym_keyword_is] = ACTIONS(140), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(140), + [sym_keyword_contains_not] = ACTIONS(140), + [sym_keyword_contains_all] = ACTIONS(140), + [sym_keyword_contains_any] = ACTIONS(140), + [sym_keyword_contains_none] = ACTIONS(140), + [sym_keyword_inside] = ACTIONS(140), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(140), + [sym_keyword_all_inside] = ACTIONS(140), + [sym_keyword_any_inside] = ACTIONS(140), + [sym_keyword_none_inside] = ACTIONS(140), + [sym_keyword_outside] = ACTIONS(140), + [sym_keyword_intersects] = ACTIONS(140), + [sym_keyword_drop] = ACTIONS(140), + [sym_keyword_schemafull] = ACTIONS(140), + [sym_keyword_schemaless] = ACTIONS(140), + [sym_keyword_changefeed] = ACTIONS(140), + [sym_keyword_type] = ACTIONS(140), + [sym_keyword_permissions] = ACTIONS(140), + [sym_keyword_for] = ACTIONS(140), + [sym_keyword_comment] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [326] = { - [sym_where_clause] = STATE(901), - [sym_group_clause] = STATE(967), - [sym_operator] = STATE(679), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(826), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(618), - [sym_keyword_as] = ACTIONS(618), - [sym_keyword_where] = ACTIONS(612), - [sym_keyword_group] = ACTIONS(614), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_drop] = ACTIONS(618), - [sym_keyword_schemafull] = ACTIONS(618), - [sym_keyword_schemaless] = ACTIONS(618), - [sym_keyword_changefeed] = ACTIONS(618), - [sym_keyword_type] = ACTIONS(618), - [sym_keyword_permissions] = ACTIONS(618), - [sym_keyword_comment] = ACTIONS(618), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(618), - [anon_sym_RBRACE] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), - }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(196), + [ts_builtin_sym_end] = ACTIONS(204), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(196), - [sym_keyword_as] = ACTIONS(196), - [sym_keyword_where] = ACTIONS(196), - [sym_keyword_group] = ACTIONS(196), - [sym_keyword_and] = ACTIONS(196), - [sym_keyword_or] = ACTIONS(196), - [sym_keyword_is] = ACTIONS(196), - [sym_keyword_not] = ACTIONS(198), - [sym_keyword_contains] = ACTIONS(196), - [sym_keyword_contains_not] = ACTIONS(196), - [sym_keyword_contains_all] = ACTIONS(196), - [sym_keyword_contains_any] = ACTIONS(196), - [sym_keyword_contains_none] = ACTIONS(196), - [sym_keyword_inside] = ACTIONS(196), - [sym_keyword_in] = ACTIONS(198), - [sym_keyword_not_inside] = ACTIONS(196), - [sym_keyword_all_inside] = ACTIONS(196), - [sym_keyword_any_inside] = ACTIONS(196), - [sym_keyword_none_inside] = ACTIONS(196), - [sym_keyword_outside] = ACTIONS(196), - [sym_keyword_intersects] = ACTIONS(196), - [sym_keyword_drop] = ACTIONS(196), - [sym_keyword_schemafull] = ACTIONS(196), - [sym_keyword_schemaless] = ACTIONS(196), - [sym_keyword_changefeed] = ACTIONS(196), - [sym_keyword_type] = ACTIONS(196), - [sym_keyword_permissions] = ACTIONS(196), - [sym_keyword_for] = ACTIONS(196), - [sym_keyword_comment] = ACTIONS(196), - [anon_sym_COMMA] = ACTIONS(196), - [anon_sym_DASH_GT] = ACTIONS(196), - [anon_sym_LBRACK] = ACTIONS(196), - [anon_sym_LT_DASH] = ACTIONS(198), - [anon_sym_LT_DASH_GT] = ACTIONS(196), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_DOT] = ACTIONS(196), - [anon_sym_LT] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(198), - [anon_sym_AT] = ACTIONS(198), - [anon_sym_LT_PIPE] = ACTIONS(196), - [anon_sym_AMP_AMP] = ACTIONS(196), - [anon_sym_PIPE_PIPE] = ACTIONS(196), - [anon_sym_QMARK_QMARK] = ACTIONS(196), - [anon_sym_QMARK_COLON] = ACTIONS(196), - [anon_sym_BANG_EQ] = ACTIONS(196), - [anon_sym_EQ_EQ] = ACTIONS(196), - [anon_sym_QMARK_EQ] = ACTIONS(196), - [anon_sym_STAR_EQ] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_BANG_TILDE] = ACTIONS(196), - [anon_sym_STAR_TILDE] = ACTIONS(196), - [anon_sym_LT_EQ] = ACTIONS(196), - [anon_sym_GT_EQ] = ACTIONS(196), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_PLUS_EQ] = ACTIONS(196), - [anon_sym_DASH_EQ] = ACTIONS(196), - [anon_sym_u00d7] = ACTIONS(196), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_u00f7] = ACTIONS(196), - [anon_sym_STAR_STAR] = ACTIONS(196), - [anon_sym_u220b] = ACTIONS(196), - [anon_sym_u220c] = ACTIONS(196), - [anon_sym_u2287] = ACTIONS(196), - [anon_sym_u2283] = ACTIONS(196), - [anon_sym_u2285] = ACTIONS(196), - [anon_sym_u2208] = ACTIONS(196), - [anon_sym_u2209] = ACTIONS(196), - [anon_sym_u2286] = ACTIONS(196), - [anon_sym_u2282] = ACTIONS(196), - [anon_sym_u2284] = ACTIONS(196), - [anon_sym_AT_AT] = ACTIONS(196), + [sym_semi_colon] = ACTIONS(204), + [sym_keyword_as] = ACTIONS(204), + [sym_keyword_where] = ACTIONS(204), + [sym_keyword_group] = ACTIONS(204), + [sym_keyword_and] = ACTIONS(204), + [sym_keyword_or] = ACTIONS(204), + [sym_keyword_is] = ACTIONS(204), + [sym_keyword_not] = ACTIONS(206), + [sym_keyword_contains] = ACTIONS(204), + [sym_keyword_contains_not] = ACTIONS(204), + [sym_keyword_contains_all] = ACTIONS(204), + [sym_keyword_contains_any] = ACTIONS(204), + [sym_keyword_contains_none] = ACTIONS(204), + [sym_keyword_inside] = ACTIONS(204), + [sym_keyword_in] = ACTIONS(206), + [sym_keyword_not_inside] = ACTIONS(204), + [sym_keyword_all_inside] = ACTIONS(204), + [sym_keyword_any_inside] = ACTIONS(204), + [sym_keyword_none_inside] = ACTIONS(204), + [sym_keyword_outside] = ACTIONS(204), + [sym_keyword_intersects] = ACTIONS(204), + [sym_keyword_drop] = ACTIONS(204), + [sym_keyword_schemafull] = ACTIONS(204), + [sym_keyword_schemaless] = ACTIONS(204), + [sym_keyword_changefeed] = ACTIONS(204), + [sym_keyword_type] = ACTIONS(204), + [sym_keyword_permissions] = ACTIONS(204), + [sym_keyword_for] = ACTIONS(204), + [sym_keyword_comment] = ACTIONS(204), + [anon_sym_COMMA] = ACTIONS(204), + [anon_sym_DASH_GT] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(204), + [anon_sym_LT_DASH] = ACTIONS(206), + [anon_sym_LT_DASH_GT] = ACTIONS(204), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(204), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_DASH] = ACTIONS(206), + [anon_sym_AT] = ACTIONS(206), + [anon_sym_LT_PIPE] = ACTIONS(204), + [anon_sym_AMP_AMP] = ACTIONS(204), + [anon_sym_PIPE_PIPE] = ACTIONS(204), + [anon_sym_QMARK_QMARK] = ACTIONS(204), + [anon_sym_QMARK_COLON] = ACTIONS(204), + [anon_sym_BANG_EQ] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(204), + [anon_sym_QMARK_EQ] = ACTIONS(204), + [anon_sym_STAR_EQ] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(204), + [anon_sym_BANG_TILDE] = ACTIONS(204), + [anon_sym_STAR_TILDE] = ACTIONS(204), + [anon_sym_LT_EQ] = ACTIONS(204), + [anon_sym_GT_EQ] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(206), + [anon_sym_PLUS_EQ] = ACTIONS(204), + [anon_sym_DASH_EQ] = ACTIONS(204), + [anon_sym_u00d7] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(206), + [anon_sym_u00f7] = ACTIONS(204), + [anon_sym_STAR_STAR] = ACTIONS(204), + [anon_sym_u220b] = ACTIONS(204), + [anon_sym_u220c] = ACTIONS(204), + [anon_sym_u2287] = ACTIONS(204), + [anon_sym_u2283] = ACTIONS(204), + [anon_sym_u2285] = ACTIONS(204), + [anon_sym_u2208] = ACTIONS(204), + [anon_sym_u2209] = ACTIONS(204), + [anon_sym_u2286] = ACTIONS(204), + [anon_sym_u2282] = ACTIONS(204), + [anon_sym_u2284] = ACTIONS(204), + [anon_sym_AT_AT] = ACTIONS(204), + }, + [327] = { + [ts_builtin_sym_end] = ACTIONS(136), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(136), + [sym_keyword_explain] = ACTIONS(136), + [sym_keyword_parallel] = ACTIONS(136), + [sym_keyword_timeout] = ACTIONS(136), + [sym_keyword_fetch] = ACTIONS(136), + [sym_keyword_limit] = ACTIONS(136), + [sym_keyword_order] = ACTIONS(136), + [sym_keyword_with] = ACTIONS(136), + [sym_keyword_where] = ACTIONS(136), + [sym_keyword_split] = ACTIONS(136), + [sym_keyword_group] = ACTIONS(136), + [sym_keyword_and] = ACTIONS(136), + [sym_keyword_or] = ACTIONS(138), + [sym_keyword_is] = ACTIONS(136), + [sym_keyword_not] = ACTIONS(138), + [sym_keyword_contains] = ACTIONS(136), + [sym_keyword_contains_not] = ACTIONS(136), + [sym_keyword_contains_all] = ACTIONS(136), + [sym_keyword_contains_any] = ACTIONS(136), + [sym_keyword_contains_none] = ACTIONS(136), + [sym_keyword_inside] = ACTIONS(136), + [sym_keyword_in] = ACTIONS(138), + [sym_keyword_not_inside] = ACTIONS(136), + [sym_keyword_all_inside] = ACTIONS(136), + [sym_keyword_any_inside] = ACTIONS(136), + [sym_keyword_none_inside] = ACTIONS(136), + [sym_keyword_outside] = ACTIONS(136), + [sym_keyword_intersects] = ACTIONS(136), + [anon_sym_COMMA] = ACTIONS(136), + [anon_sym_DASH_GT] = ACTIONS(136), + [anon_sym_LBRACK] = ACTIONS(136), + [anon_sym_LT_DASH] = ACTIONS(138), + [anon_sym_LT_DASH_GT] = ACTIONS(136), + [anon_sym_STAR] = ACTIONS(138), + [anon_sym_DOT] = ACTIONS(138), + [anon_sym_LT] = ACTIONS(138), + [anon_sym_GT] = ACTIONS(138), + [anon_sym_DOT_DOT] = ACTIONS(136), + [anon_sym_EQ] = ACTIONS(138), + [anon_sym_DASH] = ACTIONS(138), + [anon_sym_AT] = ACTIONS(138), + [anon_sym_LT_PIPE] = ACTIONS(136), + [anon_sym_AMP_AMP] = ACTIONS(136), + [anon_sym_PIPE_PIPE] = ACTIONS(136), + [anon_sym_QMARK_QMARK] = ACTIONS(136), + [anon_sym_QMARK_COLON] = ACTIONS(136), + [anon_sym_BANG_EQ] = ACTIONS(136), + [anon_sym_EQ_EQ] = ACTIONS(136), + [anon_sym_QMARK_EQ] = ACTIONS(136), + [anon_sym_STAR_EQ] = ACTIONS(136), + [anon_sym_TILDE] = ACTIONS(136), + [anon_sym_BANG_TILDE] = ACTIONS(136), + [anon_sym_STAR_TILDE] = ACTIONS(136), + [anon_sym_LT_EQ] = ACTIONS(136), + [anon_sym_GT_EQ] = ACTIONS(136), + [anon_sym_PLUS] = ACTIONS(138), + [anon_sym_PLUS_EQ] = ACTIONS(136), + [anon_sym_DASH_EQ] = ACTIONS(136), + [anon_sym_u00d7] = ACTIONS(136), + [anon_sym_SLASH] = ACTIONS(138), + [anon_sym_u00f7] = ACTIONS(136), + [anon_sym_STAR_STAR] = ACTIONS(136), + [anon_sym_u220b] = ACTIONS(136), + [anon_sym_u220c] = ACTIONS(136), + [anon_sym_u2287] = ACTIONS(136), + [anon_sym_u2283] = ACTIONS(136), + [anon_sym_u2285] = ACTIONS(136), + [anon_sym_u2208] = ACTIONS(136), + [anon_sym_u2209] = ACTIONS(136), + [anon_sym_u2286] = ACTIONS(136), + [anon_sym_u2282] = ACTIONS(136), + [anon_sym_u2284] = ACTIONS(136), + [anon_sym_AT_AT] = ACTIONS(136), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(188), + [ts_builtin_sym_end] = ACTIONS(212), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(188), - [sym_keyword_as] = ACTIONS(188), - [sym_keyword_where] = ACTIONS(188), - [sym_keyword_group] = ACTIONS(188), - [sym_keyword_and] = ACTIONS(188), - [sym_keyword_or] = ACTIONS(188), - [sym_keyword_is] = ACTIONS(188), - [sym_keyword_not] = ACTIONS(190), - [sym_keyword_contains] = ACTIONS(188), - [sym_keyword_contains_not] = ACTIONS(188), - [sym_keyword_contains_all] = ACTIONS(188), - [sym_keyword_contains_any] = ACTIONS(188), - [sym_keyword_contains_none] = ACTIONS(188), - [sym_keyword_inside] = ACTIONS(188), - [sym_keyword_in] = ACTIONS(190), - [sym_keyword_not_inside] = ACTIONS(188), - [sym_keyword_all_inside] = ACTIONS(188), - [sym_keyword_any_inside] = ACTIONS(188), - [sym_keyword_none_inside] = ACTIONS(188), - [sym_keyword_outside] = ACTIONS(188), - [sym_keyword_intersects] = ACTIONS(188), - [sym_keyword_drop] = ACTIONS(188), - [sym_keyword_schemafull] = ACTIONS(188), - [sym_keyword_schemaless] = ACTIONS(188), - [sym_keyword_changefeed] = ACTIONS(188), - [sym_keyword_type] = ACTIONS(188), - [sym_keyword_permissions] = ACTIONS(188), - [sym_keyword_for] = ACTIONS(188), - [sym_keyword_comment] = ACTIONS(188), - [anon_sym_COMMA] = ACTIONS(188), - [anon_sym_DASH_GT] = ACTIONS(188), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT_DASH] = ACTIONS(190), - [anon_sym_LT_DASH_GT] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(190), - [anon_sym_DOT] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(190), - [anon_sym_GT] = ACTIONS(190), - [anon_sym_EQ] = ACTIONS(190), - [anon_sym_DASH] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(190), - [anon_sym_LT_PIPE] = ACTIONS(188), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_QMARK_QMARK] = ACTIONS(188), - [anon_sym_QMARK_COLON] = ACTIONS(188), - [anon_sym_BANG_EQ] = ACTIONS(188), - [anon_sym_EQ_EQ] = ACTIONS(188), - [anon_sym_QMARK_EQ] = ACTIONS(188), - [anon_sym_STAR_EQ] = ACTIONS(188), - [anon_sym_TILDE] = ACTIONS(188), - [anon_sym_BANG_TILDE] = ACTIONS(188), - [anon_sym_STAR_TILDE] = ACTIONS(188), - [anon_sym_LT_EQ] = ACTIONS(188), - [anon_sym_GT_EQ] = ACTIONS(188), - [anon_sym_PLUS] = ACTIONS(190), - [anon_sym_PLUS_EQ] = ACTIONS(188), - [anon_sym_DASH_EQ] = ACTIONS(188), - [anon_sym_u00d7] = ACTIONS(188), - [anon_sym_SLASH] = ACTIONS(190), - [anon_sym_u00f7] = ACTIONS(188), - [anon_sym_STAR_STAR] = ACTIONS(188), - [anon_sym_u220b] = ACTIONS(188), - [anon_sym_u220c] = ACTIONS(188), - [anon_sym_u2287] = ACTIONS(188), - [anon_sym_u2283] = ACTIONS(188), - [anon_sym_u2285] = ACTIONS(188), - [anon_sym_u2208] = ACTIONS(188), - [anon_sym_u2209] = ACTIONS(188), - [anon_sym_u2286] = ACTIONS(188), - [anon_sym_u2282] = ACTIONS(188), - [anon_sym_u2284] = ACTIONS(188), - [anon_sym_AT_AT] = ACTIONS(188), + [sym_semi_colon] = ACTIONS(212), + [sym_keyword_as] = ACTIONS(212), + [sym_keyword_where] = ACTIONS(212), + [sym_keyword_group] = ACTIONS(212), + [sym_keyword_and] = ACTIONS(212), + [sym_keyword_or] = ACTIONS(212), + [sym_keyword_is] = ACTIONS(212), + [sym_keyword_not] = ACTIONS(214), + [sym_keyword_contains] = ACTIONS(212), + [sym_keyword_contains_not] = ACTIONS(212), + [sym_keyword_contains_all] = ACTIONS(212), + [sym_keyword_contains_any] = ACTIONS(212), + [sym_keyword_contains_none] = ACTIONS(212), + [sym_keyword_inside] = ACTIONS(212), + [sym_keyword_in] = ACTIONS(214), + [sym_keyword_not_inside] = ACTIONS(212), + [sym_keyword_all_inside] = ACTIONS(212), + [sym_keyword_any_inside] = ACTIONS(212), + [sym_keyword_none_inside] = ACTIONS(212), + [sym_keyword_outside] = ACTIONS(212), + [sym_keyword_intersects] = ACTIONS(212), + [sym_keyword_drop] = ACTIONS(212), + [sym_keyword_schemafull] = ACTIONS(212), + [sym_keyword_schemaless] = ACTIONS(212), + [sym_keyword_changefeed] = ACTIONS(212), + [sym_keyword_type] = ACTIONS(212), + [sym_keyword_permissions] = ACTIONS(212), + [sym_keyword_for] = ACTIONS(212), + [sym_keyword_comment] = ACTIONS(212), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_DASH_GT] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(214), + [anon_sym_LT_DASH_GT] = ACTIONS(212), + [anon_sym_STAR] = ACTIONS(214), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_EQ] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_AT] = ACTIONS(214), + [anon_sym_LT_PIPE] = ACTIONS(212), + [anon_sym_AMP_AMP] = ACTIONS(212), + [anon_sym_PIPE_PIPE] = ACTIONS(212), + [anon_sym_QMARK_QMARK] = ACTIONS(212), + [anon_sym_QMARK_COLON] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(212), + [anon_sym_QMARK_EQ] = ACTIONS(212), + [anon_sym_STAR_EQ] = ACTIONS(212), + [anon_sym_TILDE] = ACTIONS(212), + [anon_sym_BANG_TILDE] = ACTIONS(212), + [anon_sym_STAR_TILDE] = ACTIONS(212), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_PLUS_EQ] = ACTIONS(212), + [anon_sym_DASH_EQ] = ACTIONS(212), + [anon_sym_u00d7] = ACTIONS(212), + [anon_sym_SLASH] = ACTIONS(214), + [anon_sym_u00f7] = ACTIONS(212), + [anon_sym_STAR_STAR] = ACTIONS(212), + [anon_sym_u220b] = ACTIONS(212), + [anon_sym_u220c] = ACTIONS(212), + [anon_sym_u2287] = ACTIONS(212), + [anon_sym_u2283] = ACTIONS(212), + [anon_sym_u2285] = ACTIONS(212), + [anon_sym_u2208] = ACTIONS(212), + [anon_sym_u2209] = ACTIONS(212), + [anon_sym_u2286] = ACTIONS(212), + [anon_sym_u2282] = ACTIONS(212), + [anon_sym_u2284] = ACTIONS(212), + [anon_sym_AT_AT] = ACTIONS(212), }, [329] = { [ts_builtin_sym_end] = ACTIONS(160), @@ -43985,7 +44037,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_changefeed] = ACTIONS(160), [sym_keyword_type] = ACTIONS(160), [sym_keyword_permissions] = ACTIONS(160), - [sym_keyword_for] = ACTIONS(160), [sym_keyword_comment] = ACTIONS(160), [anon_sym_COMMA] = ACTIONS(160), [anon_sym_DASH_GT] = ACTIONS(160), @@ -43993,9 +44044,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_DASH] = ACTIONS(162), [anon_sym_LT_DASH_GT] = ACTIONS(160), [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_LT] = ACTIONS(162), [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(618), [anon_sym_EQ] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), @@ -44033,87 +44085,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(160), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(164), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(164), - [sym_keyword_explain] = ACTIONS(164), - [sym_keyword_parallel] = ACTIONS(164), - [sym_keyword_timeout] = ACTIONS(164), - [sym_keyword_fetch] = ACTIONS(164), - [sym_keyword_limit] = ACTIONS(164), - [sym_keyword_order] = ACTIONS(164), - [sym_keyword_with] = ACTIONS(164), - [sym_keyword_where] = ACTIONS(164), - [sym_keyword_split] = ACTIONS(164), - [sym_keyword_group] = ACTIONS(164), - [sym_keyword_and] = ACTIONS(164), - [sym_keyword_or] = ACTIONS(166), - [sym_keyword_is] = ACTIONS(164), - [sym_keyword_not] = ACTIONS(166), - [sym_keyword_contains] = ACTIONS(164), - [sym_keyword_contains_not] = ACTIONS(164), - [sym_keyword_contains_all] = ACTIONS(164), - [sym_keyword_contains_any] = ACTIONS(164), - [sym_keyword_contains_none] = ACTIONS(164), - [sym_keyword_inside] = ACTIONS(164), - [sym_keyword_in] = ACTIONS(166), - [sym_keyword_not_inside] = ACTIONS(164), - [sym_keyword_all_inside] = ACTIONS(164), - [sym_keyword_any_inside] = ACTIONS(164), - [sym_keyword_none_inside] = ACTIONS(164), - [sym_keyword_outside] = ACTIONS(164), - [sym_keyword_intersects] = ACTIONS(164), - [anon_sym_COMMA] = ACTIONS(164), - [anon_sym_DASH_GT] = ACTIONS(164), - [anon_sym_LBRACK] = ACTIONS(164), - [anon_sym_LT_DASH] = ACTIONS(166), - [anon_sym_LT_DASH_GT] = ACTIONS(164), - [anon_sym_STAR] = ACTIONS(166), - [anon_sym_DOT] = ACTIONS(164), - [anon_sym_LT] = ACTIONS(166), - [anon_sym_GT] = ACTIONS(166), - [anon_sym_EQ] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(166), - [anon_sym_AT] = ACTIONS(166), - [anon_sym_LT_PIPE] = ACTIONS(164), - [anon_sym_AMP_AMP] = ACTIONS(164), - [anon_sym_PIPE_PIPE] = ACTIONS(164), - [anon_sym_QMARK_QMARK] = ACTIONS(164), - [anon_sym_QMARK_COLON] = ACTIONS(164), - [anon_sym_BANG_EQ] = ACTIONS(164), - [anon_sym_EQ_EQ] = ACTIONS(164), - [anon_sym_QMARK_EQ] = ACTIONS(164), - [anon_sym_STAR_EQ] = ACTIONS(164), - [anon_sym_TILDE] = ACTIONS(164), - [anon_sym_BANG_TILDE] = ACTIONS(164), - [anon_sym_STAR_TILDE] = ACTIONS(164), - [anon_sym_LT_EQ] = ACTIONS(164), - [anon_sym_GT_EQ] = ACTIONS(164), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_PLUS_EQ] = ACTIONS(164), - [anon_sym_DASH_EQ] = ACTIONS(164), - [anon_sym_u00d7] = ACTIONS(164), - [anon_sym_SLASH] = ACTIONS(166), - [anon_sym_u00f7] = ACTIONS(164), - [anon_sym_STAR_STAR] = ACTIONS(164), - [anon_sym_u220b] = ACTIONS(164), - [anon_sym_u220c] = ACTIONS(164), - [anon_sym_u2287] = ACTIONS(164), - [anon_sym_u2283] = ACTIONS(164), - [anon_sym_u2285] = ACTIONS(164), - [anon_sym_u2208] = ACTIONS(164), - [anon_sym_u2209] = ACTIONS(164), - [anon_sym_u2286] = ACTIONS(164), - [anon_sym_u2282] = ACTIONS(164), - [anon_sym_u2284] = ACTIONS(164), - [anon_sym_AT_AT] = ACTIONS(164), - }, - [331] = { + [ts_builtin_sym_end] = ACTIONS(192), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(192), - [sym_keyword_value] = ACTIONS(192), + [sym_keyword_explain] = ACTIONS(192), + [sym_keyword_parallel] = ACTIONS(192), + [sym_keyword_timeout] = ACTIONS(192), + [sym_keyword_fetch] = ACTIONS(192), + [sym_keyword_limit] = ACTIONS(192), + [sym_keyword_order] = ACTIONS(192), + [sym_keyword_with] = ACTIONS(192), + [sym_keyword_where] = ACTIONS(192), + [sym_keyword_split] = ACTIONS(192), + [sym_keyword_group] = ACTIONS(192), [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), + [sym_keyword_or] = ACTIONS(194), [sym_keyword_is] = ACTIONS(192), [sym_keyword_not] = ACTIONS(194), [sym_keyword_contains] = ACTIONS(192), @@ -44129,25 +44115,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(192), [sym_keyword_outside] = ACTIONS(192), [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_flexible] = ACTIONS(192), - [sym_keyword_readonly] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_default] = ACTIONS(192), - [sym_keyword_assert] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_for] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), + [anon_sym_COMMA] = ACTIONS(192), [anon_sym_DASH_GT] = ACTIONS(192), [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), [anon_sym_LT_DASH] = ACTIONS(194), [anon_sym_LT_DASH_GT] = ACTIONS(192), [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), + [anon_sym_DOT] = ACTIONS(192), [anon_sym_LT] = ACTIONS(194), [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(620), [anon_sym_EQ] = ACTIONS(194), [anon_sym_DASH] = ACTIONS(194), [anon_sym_AT] = ACTIONS(194), @@ -44184,426 +44160,426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(192), [anon_sym_AT_AT] = ACTIONS(192), }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(144), + [331] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(144), - [sym_keyword_explain] = ACTIONS(144), - [sym_keyword_parallel] = ACTIONS(144), - [sym_keyword_timeout] = ACTIONS(144), - [sym_keyword_fetch] = ACTIONS(144), - [sym_keyword_limit] = ACTIONS(144), - [sym_keyword_order] = ACTIONS(144), - [sym_keyword_with] = ACTIONS(144), - [sym_keyword_where] = ACTIONS(144), - [sym_keyword_split] = ACTIONS(144), - [sym_keyword_group] = ACTIONS(144), - [sym_keyword_and] = ACTIONS(144), - [sym_keyword_or] = ACTIONS(146), - [sym_keyword_is] = ACTIONS(144), - [sym_keyword_not] = ACTIONS(146), - [sym_keyword_contains] = ACTIONS(144), - [sym_keyword_contains_not] = ACTIONS(144), - [sym_keyword_contains_all] = ACTIONS(144), - [sym_keyword_contains_any] = ACTIONS(144), - [sym_keyword_contains_none] = ACTIONS(144), - [sym_keyword_inside] = ACTIONS(144), - [sym_keyword_in] = ACTIONS(146), - [sym_keyword_not_inside] = ACTIONS(144), - [sym_keyword_all_inside] = ACTIONS(144), - [sym_keyword_any_inside] = ACTIONS(144), - [sym_keyword_none_inside] = ACTIONS(144), - [sym_keyword_outside] = ACTIONS(144), - [sym_keyword_intersects] = ACTIONS(144), - [anon_sym_COMMA] = ACTIONS(144), - [anon_sym_DASH_GT] = ACTIONS(144), - [anon_sym_LBRACK] = ACTIONS(144), - [anon_sym_LT_DASH] = ACTIONS(146), - [anon_sym_LT_DASH_GT] = ACTIONS(144), - [anon_sym_STAR] = ACTIONS(146), - [anon_sym_DOT] = ACTIONS(144), - [anon_sym_LT] = ACTIONS(146), - [anon_sym_GT] = ACTIONS(146), - [anon_sym_EQ] = ACTIONS(146), - [anon_sym_DASH] = ACTIONS(146), - [anon_sym_AT] = ACTIONS(146), - [anon_sym_LT_PIPE] = ACTIONS(144), - [anon_sym_AMP_AMP] = ACTIONS(144), - [anon_sym_PIPE_PIPE] = ACTIONS(144), - [anon_sym_QMARK_QMARK] = ACTIONS(144), - [anon_sym_QMARK_COLON] = ACTIONS(144), - [anon_sym_BANG_EQ] = ACTIONS(144), - [anon_sym_EQ_EQ] = ACTIONS(144), - [anon_sym_QMARK_EQ] = ACTIONS(144), - [anon_sym_STAR_EQ] = ACTIONS(144), - [anon_sym_TILDE] = ACTIONS(144), - [anon_sym_BANG_TILDE] = ACTIONS(144), - [anon_sym_STAR_TILDE] = ACTIONS(144), - [anon_sym_LT_EQ] = ACTIONS(144), - [anon_sym_GT_EQ] = ACTIONS(144), - [anon_sym_PLUS] = ACTIONS(146), - [anon_sym_PLUS_EQ] = ACTIONS(144), - [anon_sym_DASH_EQ] = ACTIONS(144), - [anon_sym_u00d7] = ACTIONS(144), - [anon_sym_SLASH] = ACTIONS(146), - [anon_sym_u00f7] = ACTIONS(144), - [anon_sym_STAR_STAR] = ACTIONS(144), - [anon_sym_u220b] = ACTIONS(144), - [anon_sym_u220c] = ACTIONS(144), - [anon_sym_u2287] = ACTIONS(144), - [anon_sym_u2283] = ACTIONS(144), - [anon_sym_u2285] = ACTIONS(144), - [anon_sym_u2208] = ACTIONS(144), - [anon_sym_u2209] = ACTIONS(144), - [anon_sym_u2286] = ACTIONS(144), - [anon_sym_u2282] = ACTIONS(144), - [anon_sym_u2284] = ACTIONS(144), - [anon_sym_AT_AT] = ACTIONS(144), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_as] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_drop] = ACTIONS(160), + [sym_keyword_schemafull] = ACTIONS(160), + [sym_keyword_schemaless] = ACTIONS(160), + [sym_keyword_changefeed] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(620), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), + }, + [332] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_return] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_content] = ACTIONS(160), + [sym_keyword_merge] = ACTIONS(160), + [sym_keyword_patch] = ACTIONS(160), + [sym_keyword_set] = ACTIONS(160), + [sym_keyword_unset] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(180), + [ts_builtin_sym_end] = ACTIONS(212), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_explain] = ACTIONS(180), - [sym_keyword_parallel] = ACTIONS(180), - [sym_keyword_timeout] = ACTIONS(180), - [sym_keyword_fetch] = ACTIONS(180), - [sym_keyword_limit] = ACTIONS(180), - [sym_keyword_order] = ACTIONS(180), - [sym_keyword_with] = ACTIONS(180), - [sym_keyword_where] = ACTIONS(180), - [sym_keyword_split] = ACTIONS(180), - [sym_keyword_group] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(182), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_DASH_GT] = ACTIONS(180), - [anon_sym_LBRACK] = ACTIONS(180), - [anon_sym_LT_DASH] = ACTIONS(182), - [anon_sym_LT_DASH_GT] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_DOT] = ACTIONS(180), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), + [sym_semi_colon] = ACTIONS(212), + [sym_keyword_explain] = ACTIONS(212), + [sym_keyword_parallel] = ACTIONS(212), + [sym_keyword_timeout] = ACTIONS(212), + [sym_keyword_fetch] = ACTIONS(212), + [sym_keyword_limit] = ACTIONS(212), + [sym_keyword_order] = ACTIONS(212), + [sym_keyword_with] = ACTIONS(212), + [sym_keyword_where] = ACTIONS(212), + [sym_keyword_split] = ACTIONS(212), + [sym_keyword_group] = ACTIONS(212), + [sym_keyword_and] = ACTIONS(212), + [sym_keyword_or] = ACTIONS(214), + [sym_keyword_is] = ACTIONS(212), + [sym_keyword_not] = ACTIONS(214), + [sym_keyword_contains] = ACTIONS(212), + [sym_keyword_contains_not] = ACTIONS(212), + [sym_keyword_contains_all] = ACTIONS(212), + [sym_keyword_contains_any] = ACTIONS(212), + [sym_keyword_contains_none] = ACTIONS(212), + [sym_keyword_inside] = ACTIONS(212), + [sym_keyword_in] = ACTIONS(214), + [sym_keyword_not_inside] = ACTIONS(212), + [sym_keyword_all_inside] = ACTIONS(212), + [sym_keyword_any_inside] = ACTIONS(212), + [sym_keyword_none_inside] = ACTIONS(212), + [sym_keyword_outside] = ACTIONS(212), + [sym_keyword_intersects] = ACTIONS(212), + [anon_sym_COMMA] = ACTIONS(212), + [anon_sym_DASH_GT] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(214), + [anon_sym_LT_DASH_GT] = ACTIONS(212), + [anon_sym_STAR] = ACTIONS(214), + [anon_sym_DOT] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_EQ] = ACTIONS(214), + [anon_sym_DASH] = ACTIONS(214), + [anon_sym_AT] = ACTIONS(214), + [anon_sym_LT_PIPE] = ACTIONS(212), + [anon_sym_AMP_AMP] = ACTIONS(212), + [anon_sym_PIPE_PIPE] = ACTIONS(212), + [anon_sym_QMARK_QMARK] = ACTIONS(212), + [anon_sym_QMARK_COLON] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(212), + [anon_sym_QMARK_EQ] = ACTIONS(212), + [anon_sym_STAR_EQ] = ACTIONS(212), + [anon_sym_TILDE] = ACTIONS(212), + [anon_sym_BANG_TILDE] = ACTIONS(212), + [anon_sym_STAR_TILDE] = ACTIONS(212), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_PLUS] = ACTIONS(214), + [anon_sym_PLUS_EQ] = ACTIONS(212), + [anon_sym_DASH_EQ] = ACTIONS(212), + [anon_sym_u00d7] = ACTIONS(212), + [anon_sym_SLASH] = ACTIONS(214), + [anon_sym_u00f7] = ACTIONS(212), + [anon_sym_STAR_STAR] = ACTIONS(212), + [anon_sym_u220b] = ACTIONS(212), + [anon_sym_u220c] = ACTIONS(212), + [anon_sym_u2287] = ACTIONS(212), + [anon_sym_u2283] = ACTIONS(212), + [anon_sym_u2285] = ACTIONS(212), + [anon_sym_u2208] = ACTIONS(212), + [anon_sym_u2209] = ACTIONS(212), + [anon_sym_u2286] = ACTIONS(212), + [anon_sym_u2282] = ACTIONS(212), + [anon_sym_u2284] = ACTIONS(212), + [anon_sym_AT_AT] = ACTIONS(212), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(152), + [ts_builtin_sym_end] = ACTIONS(204), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(152), - [sym_keyword_explain] = ACTIONS(152), - [sym_keyword_parallel] = ACTIONS(152), - [sym_keyword_timeout] = ACTIONS(152), - [sym_keyword_fetch] = ACTIONS(152), - [sym_keyword_limit] = ACTIONS(152), - [sym_keyword_order] = ACTIONS(152), - [sym_keyword_with] = ACTIONS(152), - [sym_keyword_where] = ACTIONS(152), - [sym_keyword_split] = ACTIONS(152), - [sym_keyword_group] = ACTIONS(152), - [sym_keyword_and] = ACTIONS(152), - [sym_keyword_or] = ACTIONS(154), - [sym_keyword_is] = ACTIONS(152), - [sym_keyword_not] = ACTIONS(154), - [sym_keyword_contains] = ACTIONS(152), - [sym_keyword_contains_not] = ACTIONS(152), - [sym_keyword_contains_all] = ACTIONS(152), - [sym_keyword_contains_any] = ACTIONS(152), - [sym_keyword_contains_none] = ACTIONS(152), - [sym_keyword_inside] = ACTIONS(152), - [sym_keyword_in] = ACTIONS(154), - [sym_keyword_not_inside] = ACTIONS(152), - [sym_keyword_all_inside] = ACTIONS(152), - [sym_keyword_any_inside] = ACTIONS(152), - [sym_keyword_none_inside] = ACTIONS(152), - [sym_keyword_outside] = ACTIONS(152), - [sym_keyword_intersects] = ACTIONS(152), - [anon_sym_COMMA] = ACTIONS(152), - [anon_sym_DASH_GT] = ACTIONS(152), - [anon_sym_LBRACK] = ACTIONS(152), - [anon_sym_LT_DASH] = ACTIONS(154), - [anon_sym_LT_DASH_GT] = ACTIONS(152), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(152), - [anon_sym_LT] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_AT] = ACTIONS(154), - [anon_sym_LT_PIPE] = ACTIONS(152), - [anon_sym_AMP_AMP] = ACTIONS(152), - [anon_sym_PIPE_PIPE] = ACTIONS(152), - [anon_sym_QMARK_QMARK] = ACTIONS(152), - [anon_sym_QMARK_COLON] = ACTIONS(152), - [anon_sym_BANG_EQ] = ACTIONS(152), - [anon_sym_EQ_EQ] = ACTIONS(152), - [anon_sym_QMARK_EQ] = ACTIONS(152), - [anon_sym_STAR_EQ] = ACTIONS(152), - [anon_sym_TILDE] = ACTIONS(152), - [anon_sym_BANG_TILDE] = ACTIONS(152), - [anon_sym_STAR_TILDE] = ACTIONS(152), - [anon_sym_LT_EQ] = ACTIONS(152), - [anon_sym_GT_EQ] = ACTIONS(152), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_PLUS_EQ] = ACTIONS(152), - [anon_sym_DASH_EQ] = ACTIONS(152), - [anon_sym_u00d7] = ACTIONS(152), - [anon_sym_SLASH] = ACTIONS(154), - [anon_sym_u00f7] = ACTIONS(152), - [anon_sym_STAR_STAR] = ACTIONS(152), - [anon_sym_u220b] = ACTIONS(152), - [anon_sym_u220c] = ACTIONS(152), - [anon_sym_u2287] = ACTIONS(152), - [anon_sym_u2283] = ACTIONS(152), - [anon_sym_u2285] = ACTIONS(152), - [anon_sym_u2208] = ACTIONS(152), - [anon_sym_u2209] = ACTIONS(152), - [anon_sym_u2286] = ACTIONS(152), - [anon_sym_u2282] = ACTIONS(152), - [anon_sym_u2284] = ACTIONS(152), - [anon_sym_AT_AT] = ACTIONS(152), + [sym_semi_colon] = ACTIONS(204), + [sym_keyword_explain] = ACTIONS(204), + [sym_keyword_parallel] = ACTIONS(204), + [sym_keyword_timeout] = ACTIONS(204), + [sym_keyword_fetch] = ACTIONS(204), + [sym_keyword_limit] = ACTIONS(204), + [sym_keyword_order] = ACTIONS(204), + [sym_keyword_with] = ACTIONS(204), + [sym_keyword_where] = ACTIONS(204), + [sym_keyword_split] = ACTIONS(204), + [sym_keyword_group] = ACTIONS(204), + [sym_keyword_and] = ACTIONS(204), + [sym_keyword_or] = ACTIONS(206), + [sym_keyword_is] = ACTIONS(204), + [sym_keyword_not] = ACTIONS(206), + [sym_keyword_contains] = ACTIONS(204), + [sym_keyword_contains_not] = ACTIONS(204), + [sym_keyword_contains_all] = ACTIONS(204), + [sym_keyword_contains_any] = ACTIONS(204), + [sym_keyword_contains_none] = ACTIONS(204), + [sym_keyword_inside] = ACTIONS(204), + [sym_keyword_in] = ACTIONS(206), + [sym_keyword_not_inside] = ACTIONS(204), + [sym_keyword_all_inside] = ACTIONS(204), + [sym_keyword_any_inside] = ACTIONS(204), + [sym_keyword_none_inside] = ACTIONS(204), + [sym_keyword_outside] = ACTIONS(204), + [sym_keyword_intersects] = ACTIONS(204), + [anon_sym_COMMA] = ACTIONS(204), + [anon_sym_DASH_GT] = ACTIONS(204), + [anon_sym_LBRACK] = ACTIONS(204), + [anon_sym_LT_DASH] = ACTIONS(206), + [anon_sym_LT_DASH_GT] = ACTIONS(204), + [anon_sym_STAR] = ACTIONS(206), + [anon_sym_DOT] = ACTIONS(204), + [anon_sym_LT] = ACTIONS(206), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_EQ] = ACTIONS(206), + [anon_sym_DASH] = ACTIONS(206), + [anon_sym_AT] = ACTIONS(206), + [anon_sym_LT_PIPE] = ACTIONS(204), + [anon_sym_AMP_AMP] = ACTIONS(204), + [anon_sym_PIPE_PIPE] = ACTIONS(204), + [anon_sym_QMARK_QMARK] = ACTIONS(204), + [anon_sym_QMARK_COLON] = ACTIONS(204), + [anon_sym_BANG_EQ] = ACTIONS(204), + [anon_sym_EQ_EQ] = ACTIONS(204), + [anon_sym_QMARK_EQ] = ACTIONS(204), + [anon_sym_STAR_EQ] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(204), + [anon_sym_BANG_TILDE] = ACTIONS(204), + [anon_sym_STAR_TILDE] = ACTIONS(204), + [anon_sym_LT_EQ] = ACTIONS(204), + [anon_sym_GT_EQ] = ACTIONS(204), + [anon_sym_PLUS] = ACTIONS(206), + [anon_sym_PLUS_EQ] = ACTIONS(204), + [anon_sym_DASH_EQ] = ACTIONS(204), + [anon_sym_u00d7] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(206), + [anon_sym_u00f7] = ACTIONS(204), + [anon_sym_STAR_STAR] = ACTIONS(204), + [anon_sym_u220b] = ACTIONS(204), + [anon_sym_u220c] = ACTIONS(204), + [anon_sym_u2287] = ACTIONS(204), + [anon_sym_u2283] = ACTIONS(204), + [anon_sym_u2285] = ACTIONS(204), + [anon_sym_u2208] = ACTIONS(204), + [anon_sym_u2209] = ACTIONS(204), + [anon_sym_u2286] = ACTIONS(204), + [anon_sym_u2282] = ACTIONS(204), + [anon_sym_u2284] = ACTIONS(204), + [anon_sym_AT_AT] = ACTIONS(204), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(172), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(172), - [sym_keyword_explain] = ACTIONS(172), - [sym_keyword_parallel] = ACTIONS(172), - [sym_keyword_timeout] = ACTIONS(172), - [sym_keyword_fetch] = ACTIONS(172), - [sym_keyword_limit] = ACTIONS(172), - [sym_keyword_order] = ACTIONS(172), - [sym_keyword_with] = ACTIONS(172), - [sym_keyword_where] = ACTIONS(172), - [sym_keyword_split] = ACTIONS(172), - [sym_keyword_group] = ACTIONS(172), - [sym_keyword_and] = ACTIONS(172), - [sym_keyword_or] = ACTIONS(174), - [sym_keyword_is] = ACTIONS(172), - [sym_keyword_not] = ACTIONS(174), - [sym_keyword_contains] = ACTIONS(172), - [sym_keyword_contains_not] = ACTIONS(172), - [sym_keyword_contains_all] = ACTIONS(172), - [sym_keyword_contains_any] = ACTIONS(172), - [sym_keyword_contains_none] = ACTIONS(172), - [sym_keyword_inside] = ACTIONS(172), - [sym_keyword_in] = ACTIONS(174), - [sym_keyword_not_inside] = ACTIONS(172), - [sym_keyword_all_inside] = ACTIONS(172), - [sym_keyword_any_inside] = ACTIONS(172), - [sym_keyword_none_inside] = ACTIONS(172), - [sym_keyword_outside] = ACTIONS(172), - [sym_keyword_intersects] = ACTIONS(172), - [anon_sym_COMMA] = ACTIONS(172), - [anon_sym_DASH_GT] = ACTIONS(172), - [anon_sym_LBRACK] = ACTIONS(172), - [anon_sym_LT_DASH] = ACTIONS(174), - [anon_sym_LT_DASH_GT] = ACTIONS(172), - [anon_sym_STAR] = ACTIONS(174), - [anon_sym_DOT] = ACTIONS(172), - [anon_sym_LT] = ACTIONS(174), - [anon_sym_GT] = ACTIONS(174), - [anon_sym_EQ] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_AT] = ACTIONS(174), - [anon_sym_LT_PIPE] = ACTIONS(172), - [anon_sym_AMP_AMP] = ACTIONS(172), - [anon_sym_PIPE_PIPE] = ACTIONS(172), - [anon_sym_QMARK_QMARK] = ACTIONS(172), - [anon_sym_QMARK_COLON] = ACTIONS(172), - [anon_sym_BANG_EQ] = ACTIONS(172), - [anon_sym_EQ_EQ] = ACTIONS(172), - [anon_sym_QMARK_EQ] = ACTIONS(172), - [anon_sym_STAR_EQ] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(172), - [anon_sym_BANG_TILDE] = ACTIONS(172), - [anon_sym_STAR_TILDE] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(172), - [anon_sym_GT_EQ] = ACTIONS(172), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_PLUS_EQ] = ACTIONS(172), - [anon_sym_DASH_EQ] = ACTIONS(172), - [anon_sym_u00d7] = ACTIONS(172), - [anon_sym_SLASH] = ACTIONS(174), - [anon_sym_u00f7] = ACTIONS(172), - [anon_sym_STAR_STAR] = ACTIONS(172), - [anon_sym_u220b] = ACTIONS(172), - [anon_sym_u220c] = ACTIONS(172), - [anon_sym_u2287] = ACTIONS(172), - [anon_sym_u2283] = ACTIONS(172), - [anon_sym_u2285] = ACTIONS(172), - [anon_sym_u2208] = ACTIONS(172), - [anon_sym_u2209] = ACTIONS(172), - [anon_sym_u2286] = ACTIONS(172), - [anon_sym_u2282] = ACTIONS(172), - [anon_sym_u2284] = ACTIONS(172), - [anon_sym_AT_AT] = ACTIONS(172), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_explain] = ACTIONS(140), + [sym_keyword_parallel] = ACTIONS(140), + [sym_keyword_timeout] = ACTIONS(140), + [sym_keyword_fetch] = ACTIONS(140), + [sym_keyword_limit] = ACTIONS(140), + [sym_keyword_order] = ACTIONS(140), + [sym_keyword_with] = ACTIONS(140), + [sym_keyword_where] = ACTIONS(140), + [sym_keyword_split] = ACTIONS(140), + [sym_keyword_group] = ACTIONS(140), + [sym_keyword_and] = ACTIONS(140), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(140), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(140), + [sym_keyword_contains_not] = ACTIONS(140), + [sym_keyword_contains_all] = ACTIONS(140), + [sym_keyword_contains_any] = ACTIONS(140), + [sym_keyword_contains_none] = ACTIONS(140), + [sym_keyword_inside] = ACTIONS(140), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(140), + [sym_keyword_all_inside] = ACTIONS(140), + [sym_keyword_any_inside] = ACTIONS(140), + [sym_keyword_none_inside] = ACTIONS(140), + [sym_keyword_outside] = ACTIONS(140), + [sym_keyword_intersects] = ACTIONS(140), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [336] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_drop] = ACTIONS(192), - [sym_keyword_schemafull] = ACTIONS(192), - [sym_keyword_schemaless] = ACTIONS(192), - [sym_keyword_changefeed] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(622), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(200), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(200), - [sym_keyword_explain] = ACTIONS(200), - [sym_keyword_parallel] = ACTIONS(200), - [sym_keyword_timeout] = ACTIONS(200), - [sym_keyword_fetch] = ACTIONS(200), - [sym_keyword_limit] = ACTIONS(200), - [sym_keyword_order] = ACTIONS(200), - [sym_keyword_with] = ACTIONS(200), - [sym_keyword_where] = ACTIONS(200), - [sym_keyword_split] = ACTIONS(200), - [sym_keyword_group] = ACTIONS(200), - [sym_keyword_and] = ACTIONS(200), + [sym_keyword_return] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), [sym_keyword_or] = ACTIONS(202), - [sym_keyword_is] = ACTIONS(200), + [sym_keyword_is] = ACTIONS(202), [sym_keyword_not] = ACTIONS(202), - [sym_keyword_contains] = ACTIONS(200), - [sym_keyword_contains_not] = ACTIONS(200), - [sym_keyword_contains_all] = ACTIONS(200), - [sym_keyword_contains_any] = ACTIONS(200), - [sym_keyword_contains_none] = ACTIONS(200), - [sym_keyword_inside] = ACTIONS(200), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), [sym_keyword_in] = ACTIONS(202), - [sym_keyword_not_inside] = ACTIONS(200), - [sym_keyword_all_inside] = ACTIONS(200), - [sym_keyword_any_inside] = ACTIONS(200), - [sym_keyword_none_inside] = ACTIONS(200), - [sym_keyword_outside] = ACTIONS(200), - [sym_keyword_intersects] = ACTIONS(200), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), [anon_sym_COMMA] = ACTIONS(200), [anon_sym_DASH_GT] = ACTIONS(200), [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(200), [anon_sym_LT_DASH] = ACTIONS(202), [anon_sym_LT_DASH_GT] = ACTIONS(200), [anon_sym_STAR] = ACTIONS(202), [anon_sym_DOT] = ACTIONS(200), [anon_sym_LT] = ACTIONS(202), [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), [anon_sym_EQ] = ACTIONS(202), [anon_sym_DASH] = ACTIONS(202), [anon_sym_AT] = ACTIONS(202), @@ -44640,7 +44616,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(200), [anon_sym_AT_AT] = ACTIONS(200), }, + [337] = { + [ts_builtin_sym_end] = ACTIONS(176), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(176), + [sym_keyword_explain] = ACTIONS(176), + [sym_keyword_parallel] = ACTIONS(176), + [sym_keyword_timeout] = ACTIONS(176), + [sym_keyword_fetch] = ACTIONS(176), + [sym_keyword_limit] = ACTIONS(176), + [sym_keyword_order] = ACTIONS(176), + [sym_keyword_with] = ACTIONS(176), + [sym_keyword_where] = ACTIONS(176), + [sym_keyword_split] = ACTIONS(176), + [sym_keyword_group] = ACTIONS(176), + [sym_keyword_and] = ACTIONS(176), + [sym_keyword_or] = ACTIONS(178), + [sym_keyword_is] = ACTIONS(176), + [sym_keyword_not] = ACTIONS(178), + [sym_keyword_contains] = ACTIONS(176), + [sym_keyword_contains_not] = ACTIONS(176), + [sym_keyword_contains_all] = ACTIONS(176), + [sym_keyword_contains_any] = ACTIONS(176), + [sym_keyword_contains_none] = ACTIONS(176), + [sym_keyword_inside] = ACTIONS(176), + [sym_keyword_in] = ACTIONS(178), + [sym_keyword_not_inside] = ACTIONS(176), + [sym_keyword_all_inside] = ACTIONS(176), + [sym_keyword_any_inside] = ACTIONS(176), + [sym_keyword_none_inside] = ACTIONS(176), + [sym_keyword_outside] = ACTIONS(176), + [sym_keyword_intersects] = ACTIONS(176), + [anon_sym_COMMA] = ACTIONS(176), + [anon_sym_DASH_GT] = ACTIONS(176), + [anon_sym_LBRACK] = ACTIONS(176), + [anon_sym_LT_DASH] = ACTIONS(178), + [anon_sym_LT_DASH_GT] = ACTIONS(176), + [anon_sym_STAR] = ACTIONS(178), + [anon_sym_DOT] = ACTIONS(176), + [anon_sym_LT] = ACTIONS(178), + [anon_sym_GT] = ACTIONS(178), + [anon_sym_EQ] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(178), + [anon_sym_AT] = ACTIONS(178), + [anon_sym_LT_PIPE] = ACTIONS(176), + [anon_sym_AMP_AMP] = ACTIONS(176), + [anon_sym_PIPE_PIPE] = ACTIONS(176), + [anon_sym_QMARK_QMARK] = ACTIONS(176), + [anon_sym_QMARK_COLON] = ACTIONS(176), + [anon_sym_BANG_EQ] = ACTIONS(176), + [anon_sym_EQ_EQ] = ACTIONS(176), + [anon_sym_QMARK_EQ] = ACTIONS(176), + [anon_sym_STAR_EQ] = ACTIONS(176), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_BANG_TILDE] = ACTIONS(176), + [anon_sym_STAR_TILDE] = ACTIONS(176), + [anon_sym_LT_EQ] = ACTIONS(176), + [anon_sym_GT_EQ] = ACTIONS(176), + [anon_sym_PLUS] = ACTIONS(178), + [anon_sym_PLUS_EQ] = ACTIONS(176), + [anon_sym_DASH_EQ] = ACTIONS(176), + [anon_sym_u00d7] = ACTIONS(176), + [anon_sym_SLASH] = ACTIONS(178), + [anon_sym_u00f7] = ACTIONS(176), + [anon_sym_STAR_STAR] = ACTIONS(176), + [anon_sym_u220b] = ACTIONS(176), + [anon_sym_u220c] = ACTIONS(176), + [anon_sym_u2287] = ACTIONS(176), + [anon_sym_u2283] = ACTIONS(176), + [anon_sym_u2285] = ACTIONS(176), + [anon_sym_u2208] = ACTIONS(176), + [anon_sym_u2209] = ACTIONS(176), + [anon_sym_u2286] = ACTIONS(176), + [anon_sym_u2282] = ACTIONS(176), + [anon_sym_u2284] = ACTIONS(176), + [anon_sym_AT_AT] = ACTIONS(176), + }, [338] = { + [sym_where_clause] = STATE(883), + [sym_group_clause] = STATE(986), + [sym_operator] = STATE(685), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(853), + [ts_builtin_sym_end] = ACTIONS(602), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(602), + [sym_keyword_as] = ACTIONS(602), + [sym_keyword_where] = ACTIONS(624), + [sym_keyword_group] = ACTIONS(606), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(313), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [sym_keyword_drop] = ACTIONS(602), + [sym_keyword_schemafull] = ACTIONS(602), + [sym_keyword_schemaless] = ACTIONS(602), + [sym_keyword_changefeed] = ACTIONS(602), + [sym_keyword_type] = ACTIONS(602), + [sym_keyword_permissions] = ACTIONS(602), + [sym_keyword_comment] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), + }, + [339] = { [ts_builtin_sym_end] = ACTIONS(156), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(156), @@ -44716,250 +44844,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(156), [anon_sym_AT_AT] = ACTIONS(156), }, - [339] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_return] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, [340] = { - [ts_builtin_sym_end] = ACTIONS(148), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(148), - [sym_keyword_explain] = ACTIONS(148), - [sym_keyword_parallel] = ACTIONS(148), - [sym_keyword_timeout] = ACTIONS(148), - [sym_keyword_fetch] = ACTIONS(148), - [sym_keyword_limit] = ACTIONS(148), - [sym_keyword_order] = ACTIONS(148), - [sym_keyword_with] = ACTIONS(148), - [sym_keyword_where] = ACTIONS(148), - [sym_keyword_split] = ACTIONS(148), - [sym_keyword_group] = ACTIONS(148), - [sym_keyword_and] = ACTIONS(148), - [sym_keyword_or] = ACTIONS(150), - [sym_keyword_is] = ACTIONS(148), - [sym_keyword_not] = ACTIONS(150), - [sym_keyword_contains] = ACTIONS(148), - [sym_keyword_contains_not] = ACTIONS(148), - [sym_keyword_contains_all] = ACTIONS(148), - [sym_keyword_contains_any] = ACTIONS(148), - [sym_keyword_contains_none] = ACTIONS(148), - [sym_keyword_inside] = ACTIONS(148), - [sym_keyword_in] = ACTIONS(150), - [sym_keyword_not_inside] = ACTIONS(148), - [sym_keyword_all_inside] = ACTIONS(148), - [sym_keyword_any_inside] = ACTIONS(148), - [sym_keyword_none_inside] = ACTIONS(148), - [sym_keyword_outside] = ACTIONS(148), - [sym_keyword_intersects] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_DASH_GT] = ACTIONS(148), - [anon_sym_LBRACK] = ACTIONS(148), - [anon_sym_LT_DASH] = ACTIONS(150), - [anon_sym_LT_DASH_GT] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_DOT] = ACTIONS(148), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_EQ] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(150), - [anon_sym_LT_PIPE] = ACTIONS(148), - [anon_sym_AMP_AMP] = ACTIONS(148), - [anon_sym_PIPE_PIPE] = ACTIONS(148), - [anon_sym_QMARK_QMARK] = ACTIONS(148), - [anon_sym_QMARK_COLON] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_QMARK_EQ] = ACTIONS(148), - [anon_sym_STAR_EQ] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_STAR_TILDE] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(148), - [anon_sym_DASH_EQ] = ACTIONS(148), - [anon_sym_u00d7] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(150), - [anon_sym_u00f7] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_u220b] = ACTIONS(148), - [anon_sym_u220c] = ACTIONS(148), - [anon_sym_u2287] = ACTIONS(148), - [anon_sym_u2283] = ACTIONS(148), - [anon_sym_u2285] = ACTIONS(148), - [anon_sym_u2208] = ACTIONS(148), - [anon_sym_u2209] = ACTIONS(148), - [anon_sym_u2286] = ACTIONS(148), - [anon_sym_u2282] = ACTIONS(148), - [anon_sym_u2284] = ACTIONS(148), - [anon_sym_AT_AT] = ACTIONS(148), - }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(110), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(110), - [sym_keyword_explain] = ACTIONS(110), - [sym_keyword_parallel] = ACTIONS(110), - [sym_keyword_timeout] = ACTIONS(110), - [sym_keyword_fetch] = ACTIONS(110), - [sym_keyword_limit] = ACTIONS(110), - [sym_keyword_order] = ACTIONS(110), - [sym_keyword_with] = ACTIONS(110), - [sym_keyword_where] = ACTIONS(110), - [sym_keyword_split] = ACTIONS(110), - [sym_keyword_group] = ACTIONS(110), - [sym_keyword_and] = ACTIONS(110), - [sym_keyword_or] = ACTIONS(112), - [sym_keyword_is] = ACTIONS(110), - [sym_keyword_not] = ACTIONS(112), - [sym_keyword_contains] = ACTIONS(110), - [sym_keyword_contains_not] = ACTIONS(110), - [sym_keyword_contains_all] = ACTIONS(110), - [sym_keyword_contains_any] = ACTIONS(110), - [sym_keyword_contains_none] = ACTIONS(110), - [sym_keyword_inside] = ACTIONS(110), - [sym_keyword_in] = ACTIONS(112), - [sym_keyword_not_inside] = ACTIONS(110), - [sym_keyword_all_inside] = ACTIONS(110), - [sym_keyword_any_inside] = ACTIONS(110), - [sym_keyword_none_inside] = ACTIONS(110), - [sym_keyword_outside] = ACTIONS(110), - [sym_keyword_intersects] = ACTIONS(110), - [anon_sym_COMMA] = ACTIONS(110), - [anon_sym_DASH_GT] = ACTIONS(110), - [anon_sym_LBRACK] = ACTIONS(110), - [anon_sym_LT_DASH] = ACTIONS(112), - [anon_sym_LT_DASH_GT] = ACTIONS(110), - [anon_sym_STAR] = ACTIONS(112), - [anon_sym_DOT] = ACTIONS(110), - [anon_sym_LT] = ACTIONS(112), - [anon_sym_GT] = ACTIONS(112), - [anon_sym_EQ] = ACTIONS(112), - [anon_sym_DASH] = ACTIONS(112), - [anon_sym_AT] = ACTIONS(112), - [anon_sym_LT_PIPE] = ACTIONS(110), - [anon_sym_AMP_AMP] = ACTIONS(110), - [anon_sym_PIPE_PIPE] = ACTIONS(110), - [anon_sym_QMARK_QMARK] = ACTIONS(110), - [anon_sym_QMARK_COLON] = ACTIONS(110), - [anon_sym_BANG_EQ] = ACTIONS(110), - [anon_sym_EQ_EQ] = ACTIONS(110), - [anon_sym_QMARK_EQ] = ACTIONS(110), - [anon_sym_STAR_EQ] = ACTIONS(110), - [anon_sym_TILDE] = ACTIONS(110), - [anon_sym_BANG_TILDE] = ACTIONS(110), - [anon_sym_STAR_TILDE] = ACTIONS(110), - [anon_sym_LT_EQ] = ACTIONS(110), - [anon_sym_GT_EQ] = ACTIONS(110), - [anon_sym_PLUS] = ACTIONS(112), - [anon_sym_PLUS_EQ] = ACTIONS(110), - [anon_sym_DASH_EQ] = ACTIONS(110), - [anon_sym_u00d7] = ACTIONS(110), - [anon_sym_SLASH] = ACTIONS(112), - [anon_sym_u00f7] = ACTIONS(110), - [anon_sym_STAR_STAR] = ACTIONS(110), - [anon_sym_u220b] = ACTIONS(110), - [anon_sym_u220c] = ACTIONS(110), - [anon_sym_u2287] = ACTIONS(110), - [anon_sym_u2283] = ACTIONS(110), - [anon_sym_u2285] = ACTIONS(110), - [anon_sym_u2208] = ACTIONS(110), - [anon_sym_u2209] = ACTIONS(110), - [anon_sym_u2286] = ACTIONS(110), - [anon_sym_u2282] = ACTIONS(110), - [anon_sym_u2284] = ACTIONS(110), - [anon_sym_AT_AT] = ACTIONS(110), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(160), - [sym_keyword_explain] = ACTIONS(160), - [sym_keyword_parallel] = ACTIONS(160), - [sym_keyword_timeout] = ACTIONS(160), - [sym_keyword_fetch] = ACTIONS(160), - [sym_keyword_limit] = ACTIONS(160), - [sym_keyword_order] = ACTIONS(160), - [sym_keyword_with] = ACTIONS(160), - [sym_keyword_where] = ACTIONS(160), - [sym_keyword_split] = ACTIONS(160), - [sym_keyword_group] = ACTIONS(160), + [sym_keyword_value] = ACTIONS(160), [sym_keyword_and] = ACTIONS(160), - [sym_keyword_or] = ACTIONS(162), + [sym_keyword_or] = ACTIONS(160), [sym_keyword_is] = ACTIONS(160), [sym_keyword_not] = ACTIONS(162), [sym_keyword_contains] = ACTIONS(160), @@ -44975,15 +44865,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(160), [sym_keyword_outside] = ACTIONS(160), [sym_keyword_intersects] = ACTIONS(160), - [anon_sym_COMMA] = ACTIONS(160), + [sym_keyword_flexible] = ACTIONS(160), + [sym_keyword_readonly] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_default] = ACTIONS(160), + [sym_keyword_assert] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_for] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), [anon_sym_DASH_GT] = ACTIONS(160), [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), [anon_sym_LT_DASH] = ACTIONS(162), [anon_sym_LT_DASH_GT] = ACTIONS(160), [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_LT] = ACTIONS(162), [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(628), [anon_sym_EQ] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), @@ -45020,83 +44920,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, - [343] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_drop] = ACTIONS(192), - [sym_keyword_schemafull] = ACTIONS(192), - [sym_keyword_schemaless] = ACTIONS(192), - [sym_keyword_changefeed] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_for] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(624), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [341] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(140), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_return] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [344] = { + [342] = { [ts_builtin_sym_end] = ACTIONS(208), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(208), @@ -45172,539 +45072,843 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(208), [anon_sym_AT_AT] = ACTIONS(208), }, + [343] = { + [ts_builtin_sym_end] = ACTIONS(122), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(122), + [sym_keyword_explain] = ACTIONS(122), + [sym_keyword_parallel] = ACTIONS(122), + [sym_keyword_timeout] = ACTIONS(122), + [sym_keyword_fetch] = ACTIONS(122), + [sym_keyword_limit] = ACTIONS(122), + [sym_keyword_order] = ACTIONS(122), + [sym_keyword_with] = ACTIONS(122), + [sym_keyword_where] = ACTIONS(122), + [sym_keyword_split] = ACTIONS(122), + [sym_keyword_group] = ACTIONS(122), + [sym_keyword_and] = ACTIONS(122), + [sym_keyword_or] = ACTIONS(124), + [sym_keyword_is] = ACTIONS(122), + [sym_keyword_not] = ACTIONS(124), + [sym_keyword_contains] = ACTIONS(122), + [sym_keyword_contains_not] = ACTIONS(122), + [sym_keyword_contains_all] = ACTIONS(122), + [sym_keyword_contains_any] = ACTIONS(122), + [sym_keyword_contains_none] = ACTIONS(122), + [sym_keyword_inside] = ACTIONS(122), + [sym_keyword_in] = ACTIONS(124), + [sym_keyword_not_inside] = ACTIONS(122), + [sym_keyword_all_inside] = ACTIONS(122), + [sym_keyword_any_inside] = ACTIONS(122), + [sym_keyword_none_inside] = ACTIONS(122), + [sym_keyword_outside] = ACTIONS(122), + [sym_keyword_intersects] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(122), + [anon_sym_DASH_GT] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(122), + [anon_sym_LT_DASH] = ACTIONS(124), + [anon_sym_LT_DASH_GT] = ACTIONS(122), + [anon_sym_STAR] = ACTIONS(124), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(124), + [anon_sym_GT] = ACTIONS(124), + [anon_sym_EQ] = ACTIONS(124), + [anon_sym_DASH] = ACTIONS(124), + [anon_sym_AT] = ACTIONS(124), + [anon_sym_LT_PIPE] = ACTIONS(122), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_QMARK_COLON] = ACTIONS(122), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_QMARK_EQ] = ACTIONS(122), + [anon_sym_STAR_EQ] = ACTIONS(122), + [anon_sym_TILDE] = ACTIONS(122), + [anon_sym_BANG_TILDE] = ACTIONS(122), + [anon_sym_STAR_TILDE] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(122), + [anon_sym_GT_EQ] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(124), + [anon_sym_PLUS_EQ] = ACTIONS(122), + [anon_sym_DASH_EQ] = ACTIONS(122), + [anon_sym_u00d7] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(124), + [anon_sym_u00f7] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_u220b] = ACTIONS(122), + [anon_sym_u220c] = ACTIONS(122), + [anon_sym_u2287] = ACTIONS(122), + [anon_sym_u2283] = ACTIONS(122), + [anon_sym_u2285] = ACTIONS(122), + [anon_sym_u2208] = ACTIONS(122), + [anon_sym_u2209] = ACTIONS(122), + [anon_sym_u2286] = ACTIONS(122), + [anon_sym_u2282] = ACTIONS(122), + [anon_sym_u2284] = ACTIONS(122), + [anon_sym_AT_AT] = ACTIONS(122), + }, + [344] = { + [ts_builtin_sym_end] = ACTIONS(164), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(164), + [sym_keyword_explain] = ACTIONS(164), + [sym_keyword_parallel] = ACTIONS(164), + [sym_keyword_timeout] = ACTIONS(164), + [sym_keyword_fetch] = ACTIONS(164), + [sym_keyword_limit] = ACTIONS(164), + [sym_keyword_order] = ACTIONS(164), + [sym_keyword_with] = ACTIONS(164), + [sym_keyword_where] = ACTIONS(164), + [sym_keyword_split] = ACTIONS(164), + [sym_keyword_group] = ACTIONS(164), + [sym_keyword_and] = ACTIONS(164), + [sym_keyword_or] = ACTIONS(166), + [sym_keyword_is] = ACTIONS(164), + [sym_keyword_not] = ACTIONS(166), + [sym_keyword_contains] = ACTIONS(164), + [sym_keyword_contains_not] = ACTIONS(164), + [sym_keyword_contains_all] = ACTIONS(164), + [sym_keyword_contains_any] = ACTIONS(164), + [sym_keyword_contains_none] = ACTIONS(164), + [sym_keyword_inside] = ACTIONS(164), + [sym_keyword_in] = ACTIONS(166), + [sym_keyword_not_inside] = ACTIONS(164), + [sym_keyword_all_inside] = ACTIONS(164), + [sym_keyword_any_inside] = ACTIONS(164), + [sym_keyword_none_inside] = ACTIONS(164), + [sym_keyword_outside] = ACTIONS(164), + [sym_keyword_intersects] = ACTIONS(164), + [anon_sym_COMMA] = ACTIONS(164), + [anon_sym_DASH_GT] = ACTIONS(164), + [anon_sym_LBRACK] = ACTIONS(164), + [anon_sym_LT_DASH] = ACTIONS(166), + [anon_sym_LT_DASH_GT] = ACTIONS(164), + [anon_sym_STAR] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(164), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_GT] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(166), + [anon_sym_DASH] = ACTIONS(166), + [anon_sym_AT] = ACTIONS(166), + [anon_sym_LT_PIPE] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(164), + [anon_sym_PIPE_PIPE] = ACTIONS(164), + [anon_sym_QMARK_QMARK] = ACTIONS(164), + [anon_sym_QMARK_COLON] = ACTIONS(164), + [anon_sym_BANG_EQ] = ACTIONS(164), + [anon_sym_EQ_EQ] = ACTIONS(164), + [anon_sym_QMARK_EQ] = ACTIONS(164), + [anon_sym_STAR_EQ] = ACTIONS(164), + [anon_sym_TILDE] = ACTIONS(164), + [anon_sym_BANG_TILDE] = ACTIONS(164), + [anon_sym_STAR_TILDE] = ACTIONS(164), + [anon_sym_LT_EQ] = ACTIONS(164), + [anon_sym_GT_EQ] = ACTIONS(164), + [anon_sym_PLUS] = ACTIONS(166), + [anon_sym_PLUS_EQ] = ACTIONS(164), + [anon_sym_DASH_EQ] = ACTIONS(164), + [anon_sym_u00d7] = ACTIONS(164), + [anon_sym_SLASH] = ACTIONS(166), + [anon_sym_u00f7] = ACTIONS(164), + [anon_sym_STAR_STAR] = ACTIONS(164), + [anon_sym_u220b] = ACTIONS(164), + [anon_sym_u220c] = ACTIONS(164), + [anon_sym_u2287] = ACTIONS(164), + [anon_sym_u2283] = ACTIONS(164), + [anon_sym_u2285] = ACTIONS(164), + [anon_sym_u2208] = ACTIONS(164), + [anon_sym_u2209] = ACTIONS(164), + [anon_sym_u2286] = ACTIONS(164), + [anon_sym_u2282] = ACTIONS(164), + [anon_sym_u2284] = ACTIONS(164), + [anon_sym_AT_AT] = ACTIONS(164), + }, [345] = { - [sym_where_clause] = STATE(888), - [sym_group_clause] = STATE(983), - [sym_operator] = STATE(722), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(852), - [ts_builtin_sym_end] = ACTIONS(610), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(610), - [sym_keyword_as] = ACTIONS(610), - [sym_keyword_where] = ACTIONS(626), - [sym_keyword_group] = ACTIONS(614), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_drop] = ACTIONS(610), - [sym_keyword_schemafull] = ACTIONS(610), - [sym_keyword_schemaless] = ACTIONS(610), - [sym_keyword_changefeed] = ACTIONS(610), - [sym_keyword_type] = ACTIONS(610), - [sym_keyword_permissions] = ACTIONS(610), - [sym_keyword_comment] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(628), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_return] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(204), + [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(204), - [sym_keyword_explain] = ACTIONS(204), - [sym_keyword_parallel] = ACTIONS(204), - [sym_keyword_timeout] = ACTIONS(204), - [sym_keyword_fetch] = ACTIONS(204), - [sym_keyword_limit] = ACTIONS(204), - [sym_keyword_order] = ACTIONS(204), - [sym_keyword_with] = ACTIONS(204), - [sym_keyword_where] = ACTIONS(204), - [sym_keyword_split] = ACTIONS(204), - [sym_keyword_group] = ACTIONS(204), - [sym_keyword_and] = ACTIONS(204), - [sym_keyword_or] = ACTIONS(206), - [sym_keyword_is] = ACTIONS(204), - [sym_keyword_not] = ACTIONS(206), - [sym_keyword_contains] = ACTIONS(204), - [sym_keyword_contains_not] = ACTIONS(204), - [sym_keyword_contains_all] = ACTIONS(204), - [sym_keyword_contains_any] = ACTIONS(204), - [sym_keyword_contains_none] = ACTIONS(204), - [sym_keyword_inside] = ACTIONS(204), - [sym_keyword_in] = ACTIONS(206), - [sym_keyword_not_inside] = ACTIONS(204), - [sym_keyword_all_inside] = ACTIONS(204), - [sym_keyword_any_inside] = ACTIONS(204), - [sym_keyword_none_inside] = ACTIONS(204), - [sym_keyword_outside] = ACTIONS(204), - [sym_keyword_intersects] = ACTIONS(204), - [anon_sym_COMMA] = ACTIONS(204), - [anon_sym_DASH_GT] = ACTIONS(204), - [anon_sym_LBRACK] = ACTIONS(204), - [anon_sym_LT_DASH] = ACTIONS(206), - [anon_sym_LT_DASH_GT] = ACTIONS(204), - [anon_sym_STAR] = ACTIONS(206), - [anon_sym_DOT] = ACTIONS(204), - [anon_sym_LT] = ACTIONS(206), - [anon_sym_GT] = ACTIONS(206), - [anon_sym_EQ] = ACTIONS(206), - [anon_sym_DASH] = ACTIONS(206), - [anon_sym_AT] = ACTIONS(206), - [anon_sym_LT_PIPE] = ACTIONS(204), - [anon_sym_AMP_AMP] = ACTIONS(204), - [anon_sym_PIPE_PIPE] = ACTIONS(204), - [anon_sym_QMARK_QMARK] = ACTIONS(204), - [anon_sym_QMARK_COLON] = ACTIONS(204), - [anon_sym_BANG_EQ] = ACTIONS(204), - [anon_sym_EQ_EQ] = ACTIONS(204), - [anon_sym_QMARK_EQ] = ACTIONS(204), - [anon_sym_STAR_EQ] = ACTIONS(204), - [anon_sym_TILDE] = ACTIONS(204), - [anon_sym_BANG_TILDE] = ACTIONS(204), - [anon_sym_STAR_TILDE] = ACTIONS(204), - [anon_sym_LT_EQ] = ACTIONS(204), - [anon_sym_GT_EQ] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(206), - [anon_sym_PLUS_EQ] = ACTIONS(204), - [anon_sym_DASH_EQ] = ACTIONS(204), - [anon_sym_u00d7] = ACTIONS(204), - [anon_sym_SLASH] = ACTIONS(206), - [anon_sym_u00f7] = ACTIONS(204), - [anon_sym_STAR_STAR] = ACTIONS(204), - [anon_sym_u220b] = ACTIONS(204), - [anon_sym_u220c] = ACTIONS(204), - [anon_sym_u2287] = ACTIONS(204), - [anon_sym_u2283] = ACTIONS(204), - [anon_sym_u2285] = ACTIONS(204), - [anon_sym_u2208] = ACTIONS(204), - [anon_sym_u2209] = ACTIONS(204), - [anon_sym_u2286] = ACTIONS(204), - [anon_sym_u2282] = ACTIONS(204), - [anon_sym_u2284] = ACTIONS(204), - [anon_sym_AT_AT] = ACTIONS(204), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_order] = ACTIONS(160), + [sym_keyword_with] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_split] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(162), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(176), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(176), - [sym_keyword_explain] = ACTIONS(176), - [sym_keyword_parallel] = ACTIONS(176), - [sym_keyword_timeout] = ACTIONS(176), - [sym_keyword_fetch] = ACTIONS(176), - [sym_keyword_limit] = ACTIONS(176), - [sym_keyword_order] = ACTIONS(176), - [sym_keyword_with] = ACTIONS(176), - [sym_keyword_where] = ACTIONS(176), - [sym_keyword_split] = ACTIONS(176), - [sym_keyword_group] = ACTIONS(176), - [sym_keyword_and] = ACTIONS(176), - [sym_keyword_or] = ACTIONS(178), - [sym_keyword_is] = ACTIONS(176), - [sym_keyword_not] = ACTIONS(178), - [sym_keyword_contains] = ACTIONS(176), - [sym_keyword_contains_not] = ACTIONS(176), - [sym_keyword_contains_all] = ACTIONS(176), - [sym_keyword_contains_any] = ACTIONS(176), - [sym_keyword_contains_none] = ACTIONS(176), - [sym_keyword_inside] = ACTIONS(176), - [sym_keyword_in] = ACTIONS(178), - [sym_keyword_not_inside] = ACTIONS(176), - [sym_keyword_all_inside] = ACTIONS(176), - [sym_keyword_any_inside] = ACTIONS(176), - [sym_keyword_none_inside] = ACTIONS(176), - [sym_keyword_outside] = ACTIONS(176), - [sym_keyword_intersects] = ACTIONS(176), - [anon_sym_COMMA] = ACTIONS(176), - [anon_sym_DASH_GT] = ACTIONS(176), - [anon_sym_LBRACK] = ACTIONS(176), - [anon_sym_LT_DASH] = ACTIONS(178), - [anon_sym_LT_DASH_GT] = ACTIONS(176), - [anon_sym_STAR] = ACTIONS(178), - [anon_sym_DOT] = ACTIONS(176), - [anon_sym_LT] = ACTIONS(178), - [anon_sym_GT] = ACTIONS(178), - [anon_sym_EQ] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(178), - [anon_sym_AT] = ACTIONS(178), - [anon_sym_LT_PIPE] = ACTIONS(176), - [anon_sym_AMP_AMP] = ACTIONS(176), - [anon_sym_PIPE_PIPE] = ACTIONS(176), - [anon_sym_QMARK_QMARK] = ACTIONS(176), - [anon_sym_QMARK_COLON] = ACTIONS(176), - [anon_sym_BANG_EQ] = ACTIONS(176), - [anon_sym_EQ_EQ] = ACTIONS(176), - [anon_sym_QMARK_EQ] = ACTIONS(176), - [anon_sym_STAR_EQ] = ACTIONS(176), - [anon_sym_TILDE] = ACTIONS(176), - [anon_sym_BANG_TILDE] = ACTIONS(176), - [anon_sym_STAR_TILDE] = ACTIONS(176), - [anon_sym_LT_EQ] = ACTIONS(176), - [anon_sym_GT_EQ] = ACTIONS(176), - [anon_sym_PLUS] = ACTIONS(178), - [anon_sym_PLUS_EQ] = ACTIONS(176), - [anon_sym_DASH_EQ] = ACTIONS(176), - [anon_sym_u00d7] = ACTIONS(176), - [anon_sym_SLASH] = ACTIONS(178), - [anon_sym_u00f7] = ACTIONS(176), - [anon_sym_STAR_STAR] = ACTIONS(176), - [anon_sym_u220b] = ACTIONS(176), - [anon_sym_u220c] = ACTIONS(176), - [anon_sym_u2287] = ACTIONS(176), - [anon_sym_u2283] = ACTIONS(176), - [anon_sym_u2285] = ACTIONS(176), - [anon_sym_u2208] = ACTIONS(176), - [anon_sym_u2209] = ACTIONS(176), - [anon_sym_u2286] = ACTIONS(176), - [anon_sym_u2282] = ACTIONS(176), - [anon_sym_u2284] = ACTIONS(176), - [anon_sym_AT_AT] = ACTIONS(176), - }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(192), + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(200), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_order] = ACTIONS(192), - [sym_keyword_with] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_split] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(194), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(192), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_return] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [348] = { + [ts_builtin_sym_end] = ACTIONS(144), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(144), + [sym_keyword_explain] = ACTIONS(144), + [sym_keyword_parallel] = ACTIONS(144), + [sym_keyword_timeout] = ACTIONS(144), + [sym_keyword_fetch] = ACTIONS(144), + [sym_keyword_limit] = ACTIONS(144), + [sym_keyword_order] = ACTIONS(144), + [sym_keyword_with] = ACTIONS(144), + [sym_keyword_where] = ACTIONS(144), + [sym_keyword_split] = ACTIONS(144), + [sym_keyword_group] = ACTIONS(144), + [sym_keyword_and] = ACTIONS(144), + [sym_keyword_or] = ACTIONS(146), + [sym_keyword_is] = ACTIONS(144), + [sym_keyword_not] = ACTIONS(146), + [sym_keyword_contains] = ACTIONS(144), + [sym_keyword_contains_not] = ACTIONS(144), + [sym_keyword_contains_all] = ACTIONS(144), + [sym_keyword_contains_any] = ACTIONS(144), + [sym_keyword_contains_none] = ACTIONS(144), + [sym_keyword_inside] = ACTIONS(144), + [sym_keyword_in] = ACTIONS(146), + [sym_keyword_not_inside] = ACTIONS(144), + [sym_keyword_all_inside] = ACTIONS(144), + [sym_keyword_any_inside] = ACTIONS(144), + [sym_keyword_none_inside] = ACTIONS(144), + [sym_keyword_outside] = ACTIONS(144), + [sym_keyword_intersects] = ACTIONS(144), + [anon_sym_COMMA] = ACTIONS(144), + [anon_sym_DASH_GT] = ACTIONS(144), + [anon_sym_LBRACK] = ACTIONS(144), + [anon_sym_LT_DASH] = ACTIONS(146), + [anon_sym_LT_DASH_GT] = ACTIONS(144), + [anon_sym_STAR] = ACTIONS(146), + [anon_sym_DOT] = ACTIONS(144), + [anon_sym_LT] = ACTIONS(146), + [anon_sym_GT] = ACTIONS(146), + [anon_sym_EQ] = ACTIONS(146), + [anon_sym_DASH] = ACTIONS(146), + [anon_sym_AT] = ACTIONS(146), + [anon_sym_LT_PIPE] = ACTIONS(144), + [anon_sym_AMP_AMP] = ACTIONS(144), + [anon_sym_PIPE_PIPE] = ACTIONS(144), + [anon_sym_QMARK_QMARK] = ACTIONS(144), + [anon_sym_QMARK_COLON] = ACTIONS(144), + [anon_sym_BANG_EQ] = ACTIONS(144), + [anon_sym_EQ_EQ] = ACTIONS(144), + [anon_sym_QMARK_EQ] = ACTIONS(144), + [anon_sym_STAR_EQ] = ACTIONS(144), + [anon_sym_TILDE] = ACTIONS(144), + [anon_sym_BANG_TILDE] = ACTIONS(144), + [anon_sym_STAR_TILDE] = ACTIONS(144), + [anon_sym_LT_EQ] = ACTIONS(144), + [anon_sym_GT_EQ] = ACTIONS(144), + [anon_sym_PLUS] = ACTIONS(146), + [anon_sym_PLUS_EQ] = ACTIONS(144), + [anon_sym_DASH_EQ] = ACTIONS(144), + [anon_sym_u00d7] = ACTIONS(144), + [anon_sym_SLASH] = ACTIONS(146), + [anon_sym_u00f7] = ACTIONS(144), + [anon_sym_STAR_STAR] = ACTIONS(144), + [anon_sym_u220b] = ACTIONS(144), + [anon_sym_u220c] = ACTIONS(144), + [anon_sym_u2287] = ACTIONS(144), + [anon_sym_u2283] = ACTIONS(144), + [anon_sym_u2285] = ACTIONS(144), + [anon_sym_u2208] = ACTIONS(144), + [anon_sym_u2209] = ACTIONS(144), + [anon_sym_u2286] = ACTIONS(144), + [anon_sym_u2282] = ACTIONS(144), + [anon_sym_u2284] = ACTIONS(144), + [anon_sym_AT_AT] = ACTIONS(144), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(140), + [ts_builtin_sym_end] = ACTIONS(152), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(140), - [sym_keyword_explain] = ACTIONS(140), - [sym_keyword_parallel] = ACTIONS(140), - [sym_keyword_timeout] = ACTIONS(140), - [sym_keyword_fetch] = ACTIONS(140), - [sym_keyword_limit] = ACTIONS(140), - [sym_keyword_order] = ACTIONS(140), - [sym_keyword_with] = ACTIONS(140), - [sym_keyword_where] = ACTIONS(140), - [sym_keyword_split] = ACTIONS(140), - [sym_keyword_group] = ACTIONS(140), - [sym_keyword_and] = ACTIONS(140), - [sym_keyword_or] = ACTIONS(142), - [sym_keyword_is] = ACTIONS(140), - [sym_keyword_not] = ACTIONS(142), - [sym_keyword_contains] = ACTIONS(140), - [sym_keyword_contains_not] = ACTIONS(140), - [sym_keyword_contains_all] = ACTIONS(140), - [sym_keyword_contains_any] = ACTIONS(140), - [sym_keyword_contains_none] = ACTIONS(140), - [sym_keyword_inside] = ACTIONS(140), - [sym_keyword_in] = ACTIONS(142), - [sym_keyword_not_inside] = ACTIONS(140), - [sym_keyword_all_inside] = ACTIONS(140), - [sym_keyword_any_inside] = ACTIONS(140), - [sym_keyword_none_inside] = ACTIONS(140), - [sym_keyword_outside] = ACTIONS(140), - [sym_keyword_intersects] = ACTIONS(140), - [anon_sym_COMMA] = ACTIONS(140), - [anon_sym_DASH_GT] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(140), - [anon_sym_LT_DASH] = ACTIONS(142), - [anon_sym_LT_DASH_GT] = ACTIONS(140), - [anon_sym_STAR] = ACTIONS(142), - [anon_sym_DOT] = ACTIONS(140), - [anon_sym_LT] = ACTIONS(142), - [anon_sym_GT] = ACTIONS(142), - [anon_sym_EQ] = ACTIONS(142), - [anon_sym_DASH] = ACTIONS(142), - [anon_sym_AT] = ACTIONS(142), - [anon_sym_LT_PIPE] = ACTIONS(140), - [anon_sym_AMP_AMP] = ACTIONS(140), - [anon_sym_PIPE_PIPE] = ACTIONS(140), - [anon_sym_QMARK_QMARK] = ACTIONS(140), - [anon_sym_QMARK_COLON] = ACTIONS(140), - [anon_sym_BANG_EQ] = ACTIONS(140), - [anon_sym_EQ_EQ] = ACTIONS(140), - [anon_sym_QMARK_EQ] = ACTIONS(140), - [anon_sym_STAR_EQ] = ACTIONS(140), - [anon_sym_TILDE] = ACTIONS(140), - [anon_sym_BANG_TILDE] = ACTIONS(140), - [anon_sym_STAR_TILDE] = ACTIONS(140), - [anon_sym_LT_EQ] = ACTIONS(140), - [anon_sym_GT_EQ] = ACTIONS(140), - [anon_sym_PLUS] = ACTIONS(142), - [anon_sym_PLUS_EQ] = ACTIONS(140), - [anon_sym_DASH_EQ] = ACTIONS(140), - [anon_sym_u00d7] = ACTIONS(140), - [anon_sym_SLASH] = ACTIONS(142), - [anon_sym_u00f7] = ACTIONS(140), - [anon_sym_STAR_STAR] = ACTIONS(140), - [anon_sym_u220b] = ACTIONS(140), - [anon_sym_u220c] = ACTIONS(140), - [anon_sym_u2287] = ACTIONS(140), - [anon_sym_u2283] = ACTIONS(140), - [anon_sym_u2285] = ACTIONS(140), - [anon_sym_u2208] = ACTIONS(140), - [anon_sym_u2209] = ACTIONS(140), - [anon_sym_u2286] = ACTIONS(140), - [anon_sym_u2282] = ACTIONS(140), - [anon_sym_u2284] = ACTIONS(140), - [anon_sym_AT_AT] = ACTIONS(140), + [sym_semi_colon] = ACTIONS(152), + [sym_keyword_explain] = ACTIONS(152), + [sym_keyword_parallel] = ACTIONS(152), + [sym_keyword_timeout] = ACTIONS(152), + [sym_keyword_fetch] = ACTIONS(152), + [sym_keyword_limit] = ACTIONS(152), + [sym_keyword_order] = ACTIONS(152), + [sym_keyword_with] = ACTIONS(152), + [sym_keyword_where] = ACTIONS(152), + [sym_keyword_split] = ACTIONS(152), + [sym_keyword_group] = ACTIONS(152), + [sym_keyword_and] = ACTIONS(152), + [sym_keyword_or] = ACTIONS(154), + [sym_keyword_is] = ACTIONS(152), + [sym_keyword_not] = ACTIONS(154), + [sym_keyword_contains] = ACTIONS(152), + [sym_keyword_contains_not] = ACTIONS(152), + [sym_keyword_contains_all] = ACTIONS(152), + [sym_keyword_contains_any] = ACTIONS(152), + [sym_keyword_contains_none] = ACTIONS(152), + [sym_keyword_inside] = ACTIONS(152), + [sym_keyword_in] = ACTIONS(154), + [sym_keyword_not_inside] = ACTIONS(152), + [sym_keyword_all_inside] = ACTIONS(152), + [sym_keyword_any_inside] = ACTIONS(152), + [sym_keyword_none_inside] = ACTIONS(152), + [sym_keyword_outside] = ACTIONS(152), + [sym_keyword_intersects] = ACTIONS(152), + [anon_sym_COMMA] = ACTIONS(152), + [anon_sym_DASH_GT] = ACTIONS(152), + [anon_sym_LBRACK] = ACTIONS(152), + [anon_sym_LT_DASH] = ACTIONS(154), + [anon_sym_LT_DASH_GT] = ACTIONS(152), + [anon_sym_STAR] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(152), + [anon_sym_LT] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_EQ] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(154), + [anon_sym_AT] = ACTIONS(154), + [anon_sym_LT_PIPE] = ACTIONS(152), + [anon_sym_AMP_AMP] = ACTIONS(152), + [anon_sym_PIPE_PIPE] = ACTIONS(152), + [anon_sym_QMARK_QMARK] = ACTIONS(152), + [anon_sym_QMARK_COLON] = ACTIONS(152), + [anon_sym_BANG_EQ] = ACTIONS(152), + [anon_sym_EQ_EQ] = ACTIONS(152), + [anon_sym_QMARK_EQ] = ACTIONS(152), + [anon_sym_STAR_EQ] = ACTIONS(152), + [anon_sym_TILDE] = ACTIONS(152), + [anon_sym_BANG_TILDE] = ACTIONS(152), + [anon_sym_STAR_TILDE] = ACTIONS(152), + [anon_sym_LT_EQ] = ACTIONS(152), + [anon_sym_GT_EQ] = ACTIONS(152), + [anon_sym_PLUS] = ACTIONS(154), + [anon_sym_PLUS_EQ] = ACTIONS(152), + [anon_sym_DASH_EQ] = ACTIONS(152), + [anon_sym_u00d7] = ACTIONS(152), + [anon_sym_SLASH] = ACTIONS(154), + [anon_sym_u00f7] = ACTIONS(152), + [anon_sym_STAR_STAR] = ACTIONS(152), + [anon_sym_u220b] = ACTIONS(152), + [anon_sym_u220c] = ACTIONS(152), + [anon_sym_u2287] = ACTIONS(152), + [anon_sym_u2283] = ACTIONS(152), + [anon_sym_u2285] = ACTIONS(152), + [anon_sym_u2208] = ACTIONS(152), + [anon_sym_u2209] = ACTIONS(152), + [anon_sym_u2286] = ACTIONS(152), + [anon_sym_u2282] = ACTIONS(152), + [anon_sym_u2284] = ACTIONS(152), + [anon_sym_AT_AT] = ACTIONS(152), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(192), + [ts_builtin_sym_end] = ACTIONS(172), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_order] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_split] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(194), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(630), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(172), + [sym_keyword_explain] = ACTIONS(172), + [sym_keyword_parallel] = ACTIONS(172), + [sym_keyword_timeout] = ACTIONS(172), + [sym_keyword_fetch] = ACTIONS(172), + [sym_keyword_limit] = ACTIONS(172), + [sym_keyword_order] = ACTIONS(172), + [sym_keyword_with] = ACTIONS(172), + [sym_keyword_where] = ACTIONS(172), + [sym_keyword_split] = ACTIONS(172), + [sym_keyword_group] = ACTIONS(172), + [sym_keyword_and] = ACTIONS(172), + [sym_keyword_or] = ACTIONS(174), + [sym_keyword_is] = ACTIONS(172), + [sym_keyword_not] = ACTIONS(174), + [sym_keyword_contains] = ACTIONS(172), + [sym_keyword_contains_not] = ACTIONS(172), + [sym_keyword_contains_all] = ACTIONS(172), + [sym_keyword_contains_any] = ACTIONS(172), + [sym_keyword_contains_none] = ACTIONS(172), + [sym_keyword_inside] = ACTIONS(172), + [sym_keyword_in] = ACTIONS(174), + [sym_keyword_not_inside] = ACTIONS(172), + [sym_keyword_all_inside] = ACTIONS(172), + [sym_keyword_any_inside] = ACTIONS(172), + [sym_keyword_none_inside] = ACTIONS(172), + [sym_keyword_outside] = ACTIONS(172), + [sym_keyword_intersects] = ACTIONS(172), + [anon_sym_COMMA] = ACTIONS(172), + [anon_sym_DASH_GT] = ACTIONS(172), + [anon_sym_LBRACK] = ACTIONS(172), + [anon_sym_LT_DASH] = ACTIONS(174), + [anon_sym_LT_DASH_GT] = ACTIONS(172), + [anon_sym_STAR] = ACTIONS(174), + [anon_sym_DOT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(174), + [anon_sym_GT] = ACTIONS(174), + [anon_sym_EQ] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_AT] = ACTIONS(174), + [anon_sym_LT_PIPE] = ACTIONS(172), + [anon_sym_AMP_AMP] = ACTIONS(172), + [anon_sym_PIPE_PIPE] = ACTIONS(172), + [anon_sym_QMARK_QMARK] = ACTIONS(172), + [anon_sym_QMARK_COLON] = ACTIONS(172), + [anon_sym_BANG_EQ] = ACTIONS(172), + [anon_sym_EQ_EQ] = ACTIONS(172), + [anon_sym_QMARK_EQ] = ACTIONS(172), + [anon_sym_STAR_EQ] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(172), + [anon_sym_BANG_TILDE] = ACTIONS(172), + [anon_sym_STAR_TILDE] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(172), + [anon_sym_GT_EQ] = ACTIONS(172), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_PLUS_EQ] = ACTIONS(172), + [anon_sym_DASH_EQ] = ACTIONS(172), + [anon_sym_u00d7] = ACTIONS(172), + [anon_sym_SLASH] = ACTIONS(174), + [anon_sym_u00f7] = ACTIONS(172), + [anon_sym_STAR_STAR] = ACTIONS(172), + [anon_sym_u220b] = ACTIONS(172), + [anon_sym_u220c] = ACTIONS(172), + [anon_sym_u2287] = ACTIONS(172), + [anon_sym_u2283] = ACTIONS(172), + [anon_sym_u2285] = ACTIONS(172), + [anon_sym_u2208] = ACTIONS(172), + [anon_sym_u2209] = ACTIONS(172), + [anon_sym_u2286] = ACTIONS(172), + [anon_sym_u2282] = ACTIONS(172), + [anon_sym_u2284] = ACTIONS(172), + [anon_sym_AT_AT] = ACTIONS(172), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(168), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(168), - [sym_keyword_explain] = ACTIONS(168), - [sym_keyword_parallel] = ACTIONS(168), - [sym_keyword_timeout] = ACTIONS(168), - [sym_keyword_fetch] = ACTIONS(168), - [sym_keyword_limit] = ACTIONS(168), - [sym_keyword_order] = ACTIONS(168), - [sym_keyword_with] = ACTIONS(168), - [sym_keyword_where] = ACTIONS(168), - [sym_keyword_split] = ACTIONS(168), - [sym_keyword_group] = ACTIONS(168), - [sym_keyword_and] = ACTIONS(168), - [sym_keyword_or] = ACTIONS(170), - [sym_keyword_is] = ACTIONS(168), - [sym_keyword_not] = ACTIONS(170), - [sym_keyword_contains] = ACTIONS(168), - [sym_keyword_contains_not] = ACTIONS(168), - [sym_keyword_contains_all] = ACTIONS(168), - [sym_keyword_contains_any] = ACTIONS(168), - [sym_keyword_contains_none] = ACTIONS(168), - [sym_keyword_inside] = ACTIONS(168), - [sym_keyword_in] = ACTIONS(170), - [sym_keyword_not_inside] = ACTIONS(168), - [sym_keyword_all_inside] = ACTIONS(168), - [sym_keyword_any_inside] = ACTIONS(168), - [sym_keyword_none_inside] = ACTIONS(168), - [sym_keyword_outside] = ACTIONS(168), - [sym_keyword_intersects] = ACTIONS(168), - [anon_sym_COMMA] = ACTIONS(168), - [anon_sym_DASH_GT] = ACTIONS(168), - [anon_sym_LBRACK] = ACTIONS(168), - [anon_sym_LT_DASH] = ACTIONS(170), - [anon_sym_LT_DASH_GT] = ACTIONS(168), - [anon_sym_STAR] = ACTIONS(170), - [anon_sym_DOT] = ACTIONS(168), - [anon_sym_LT] = ACTIONS(170), - [anon_sym_GT] = ACTIONS(170), - [anon_sym_EQ] = ACTIONS(170), - [anon_sym_DASH] = ACTIONS(170), - [anon_sym_AT] = ACTIONS(170), - [anon_sym_LT_PIPE] = ACTIONS(168), - [anon_sym_AMP_AMP] = ACTIONS(168), - [anon_sym_PIPE_PIPE] = ACTIONS(168), - [anon_sym_QMARK_QMARK] = ACTIONS(168), - [anon_sym_QMARK_COLON] = ACTIONS(168), - [anon_sym_BANG_EQ] = ACTIONS(168), - [anon_sym_EQ_EQ] = ACTIONS(168), - [anon_sym_QMARK_EQ] = ACTIONS(168), - [anon_sym_STAR_EQ] = ACTIONS(168), - [anon_sym_TILDE] = ACTIONS(168), - [anon_sym_BANG_TILDE] = ACTIONS(168), - [anon_sym_STAR_TILDE] = ACTIONS(168), - [anon_sym_LT_EQ] = ACTIONS(168), - [anon_sym_GT_EQ] = ACTIONS(168), - [anon_sym_PLUS] = ACTIONS(170), - [anon_sym_PLUS_EQ] = ACTIONS(168), - [anon_sym_DASH_EQ] = ACTIONS(168), - [anon_sym_u00d7] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_u00f7] = ACTIONS(168), - [anon_sym_STAR_STAR] = ACTIONS(168), - [anon_sym_u220b] = ACTIONS(168), - [anon_sym_u220c] = ACTIONS(168), - [anon_sym_u2287] = ACTIONS(168), - [anon_sym_u2283] = ACTIONS(168), - [anon_sym_u2285] = ACTIONS(168), - [anon_sym_u2208] = ACTIONS(168), - [anon_sym_u2209] = ACTIONS(168), - [anon_sym_u2286] = ACTIONS(168), - [anon_sym_u2282] = ACTIONS(168), - [anon_sym_u2284] = ACTIONS(168), - [anon_sym_AT_AT] = ACTIONS(168), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_as] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_drop] = ACTIONS(160), + [sym_keyword_schemafull] = ACTIONS(160), + [sym_keyword_schemaless] = ACTIONS(160), + [sym_keyword_changefeed] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_for] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, [352] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_return] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [353] = { + [ts_builtin_sym_end] = ACTIONS(148), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(148), + [sym_keyword_explain] = ACTIONS(148), + [sym_keyword_parallel] = ACTIONS(148), + [sym_keyword_timeout] = ACTIONS(148), + [sym_keyword_fetch] = ACTIONS(148), + [sym_keyword_limit] = ACTIONS(148), + [sym_keyword_order] = ACTIONS(148), + [sym_keyword_with] = ACTIONS(148), + [sym_keyword_where] = ACTIONS(148), + [sym_keyword_split] = ACTIONS(148), + [sym_keyword_group] = ACTIONS(148), + [sym_keyword_and] = ACTIONS(148), + [sym_keyword_or] = ACTIONS(150), + [sym_keyword_is] = ACTIONS(148), + [sym_keyword_not] = ACTIONS(150), + [sym_keyword_contains] = ACTIONS(148), + [sym_keyword_contains_not] = ACTIONS(148), + [sym_keyword_contains_all] = ACTIONS(148), + [sym_keyword_contains_any] = ACTIONS(148), + [sym_keyword_contains_none] = ACTIONS(148), + [sym_keyword_inside] = ACTIONS(148), + [sym_keyword_in] = ACTIONS(150), + [sym_keyword_not_inside] = ACTIONS(148), + [sym_keyword_all_inside] = ACTIONS(148), + [sym_keyword_any_inside] = ACTIONS(148), + [sym_keyword_none_inside] = ACTIONS(148), + [sym_keyword_outside] = ACTIONS(148), + [sym_keyword_intersects] = ACTIONS(148), + [anon_sym_COMMA] = ACTIONS(148), + [anon_sym_DASH_GT] = ACTIONS(148), + [anon_sym_LBRACK] = ACTIONS(148), + [anon_sym_LT_DASH] = ACTIONS(150), + [anon_sym_LT_DASH_GT] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_DOT] = ACTIONS(148), + [anon_sym_LT] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(150), + [anon_sym_EQ] = ACTIONS(150), + [anon_sym_DASH] = ACTIONS(150), + [anon_sym_AT] = ACTIONS(150), + [anon_sym_LT_PIPE] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [anon_sym_QMARK_QMARK] = ACTIONS(148), + [anon_sym_QMARK_COLON] = ACTIONS(148), + [anon_sym_BANG_EQ] = ACTIONS(148), + [anon_sym_EQ_EQ] = ACTIONS(148), + [anon_sym_QMARK_EQ] = ACTIONS(148), + [anon_sym_STAR_EQ] = ACTIONS(148), + [anon_sym_TILDE] = ACTIONS(148), + [anon_sym_BANG_TILDE] = ACTIONS(148), + [anon_sym_STAR_TILDE] = ACTIONS(148), + [anon_sym_LT_EQ] = ACTIONS(148), + [anon_sym_GT_EQ] = ACTIONS(148), + [anon_sym_PLUS] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(148), + [anon_sym_DASH_EQ] = ACTIONS(148), + [anon_sym_u00d7] = ACTIONS(148), + [anon_sym_SLASH] = ACTIONS(150), + [anon_sym_u00f7] = ACTIONS(148), + [anon_sym_STAR_STAR] = ACTIONS(148), + [anon_sym_u220b] = ACTIONS(148), + [anon_sym_u220c] = ACTIONS(148), + [anon_sym_u2287] = ACTIONS(148), + [anon_sym_u2283] = ACTIONS(148), + [anon_sym_u2285] = ACTIONS(148), + [anon_sym_u2208] = ACTIONS(148), + [anon_sym_u2209] = ACTIONS(148), + [anon_sym_u2286] = ACTIONS(148), + [anon_sym_u2282] = ACTIONS(148), + [anon_sym_u2284] = ACTIONS(148), + [anon_sym_AT_AT] = ACTIONS(148), + }, + [354] = { [ts_builtin_sym_end] = ACTIONS(184), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(184), @@ -45780,18 +45984,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(184), [anon_sym_AT_AT] = ACTIONS(184), }, - [353] = { - [sym_where_clause] = STATE(901), + [355] = { + [ts_builtin_sym_end] = ACTIONS(188), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(188), + [sym_keyword_explain] = ACTIONS(188), + [sym_keyword_parallel] = ACTIONS(188), + [sym_keyword_timeout] = ACTIONS(188), + [sym_keyword_fetch] = ACTIONS(188), + [sym_keyword_limit] = ACTIONS(188), + [sym_keyword_order] = ACTIONS(188), + [sym_keyword_with] = ACTIONS(188), + [sym_keyword_where] = ACTIONS(188), + [sym_keyword_split] = ACTIONS(188), + [sym_keyword_group] = ACTIONS(188), + [sym_keyword_and] = ACTIONS(188), + [sym_keyword_or] = ACTIONS(190), + [sym_keyword_is] = ACTIONS(188), + [sym_keyword_not] = ACTIONS(190), + [sym_keyword_contains] = ACTIONS(188), + [sym_keyword_contains_not] = ACTIONS(188), + [sym_keyword_contains_all] = ACTIONS(188), + [sym_keyword_contains_any] = ACTIONS(188), + [sym_keyword_contains_none] = ACTIONS(188), + [sym_keyword_inside] = ACTIONS(188), + [sym_keyword_in] = ACTIONS(190), + [sym_keyword_not_inside] = ACTIONS(188), + [sym_keyword_all_inside] = ACTIONS(188), + [sym_keyword_any_inside] = ACTIONS(188), + [sym_keyword_none_inside] = ACTIONS(188), + [sym_keyword_outside] = ACTIONS(188), + [sym_keyword_intersects] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_DASH_GT] = ACTIONS(188), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_LT_DASH] = ACTIONS(190), + [anon_sym_LT_DASH_GT] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_DOT] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_LT_PIPE] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_QMARK_QMARK] = ACTIONS(188), + [anon_sym_QMARK_COLON] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_QMARK_EQ] = ACTIONS(188), + [anon_sym_STAR_EQ] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_BANG_TILDE] = ACTIONS(188), + [anon_sym_STAR_TILDE] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_u00d7] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_u00f7] = ACTIONS(188), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_u220b] = ACTIONS(188), + [anon_sym_u220c] = ACTIONS(188), + [anon_sym_u2287] = ACTIONS(188), + [anon_sym_u2283] = ACTIONS(188), + [anon_sym_u2285] = ACTIONS(188), + [anon_sym_u2208] = ACTIONS(188), + [anon_sym_u2209] = ACTIONS(188), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), + }, + [356] = { + [ts_builtin_sym_end] = ACTIONS(196), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(196), + [sym_keyword_explain] = ACTIONS(196), + [sym_keyword_parallel] = ACTIONS(196), + [sym_keyword_timeout] = ACTIONS(196), + [sym_keyword_fetch] = ACTIONS(196), + [sym_keyword_limit] = ACTIONS(196), + [sym_keyword_order] = ACTIONS(196), + [sym_keyword_with] = ACTIONS(196), + [sym_keyword_where] = ACTIONS(196), + [sym_keyword_split] = ACTIONS(196), + [sym_keyword_group] = ACTIONS(196), + [sym_keyword_and] = ACTIONS(196), + [sym_keyword_or] = ACTIONS(198), + [sym_keyword_is] = ACTIONS(196), + [sym_keyword_not] = ACTIONS(198), + [sym_keyword_contains] = ACTIONS(196), + [sym_keyword_contains_not] = ACTIONS(196), + [sym_keyword_contains_all] = ACTIONS(196), + [sym_keyword_contains_any] = ACTIONS(196), + [sym_keyword_contains_none] = ACTIONS(196), + [sym_keyword_inside] = ACTIONS(196), + [sym_keyword_in] = ACTIONS(198), + [sym_keyword_not_inside] = ACTIONS(196), + [sym_keyword_all_inside] = ACTIONS(196), + [sym_keyword_any_inside] = ACTIONS(196), + [sym_keyword_none_inside] = ACTIONS(196), + [sym_keyword_outside] = ACTIONS(196), + [sym_keyword_intersects] = ACTIONS(196), + [anon_sym_COMMA] = ACTIONS(196), + [anon_sym_DASH_GT] = ACTIONS(196), + [anon_sym_LBRACK] = ACTIONS(196), + [anon_sym_LT_DASH] = ACTIONS(198), + [anon_sym_LT_DASH_GT] = ACTIONS(196), + [anon_sym_STAR] = ACTIONS(198), + [anon_sym_DOT] = ACTIONS(196), + [anon_sym_LT] = ACTIONS(198), + [anon_sym_GT] = ACTIONS(198), + [anon_sym_EQ] = ACTIONS(198), + [anon_sym_DASH] = ACTIONS(198), + [anon_sym_AT] = ACTIONS(198), + [anon_sym_LT_PIPE] = ACTIONS(196), + [anon_sym_AMP_AMP] = ACTIONS(196), + [anon_sym_PIPE_PIPE] = ACTIONS(196), + [anon_sym_QMARK_QMARK] = ACTIONS(196), + [anon_sym_QMARK_COLON] = ACTIONS(196), + [anon_sym_BANG_EQ] = ACTIONS(196), + [anon_sym_EQ_EQ] = ACTIONS(196), + [anon_sym_QMARK_EQ] = ACTIONS(196), + [anon_sym_STAR_EQ] = ACTIONS(196), + [anon_sym_TILDE] = ACTIONS(196), + [anon_sym_BANG_TILDE] = ACTIONS(196), + [anon_sym_STAR_TILDE] = ACTIONS(196), + [anon_sym_LT_EQ] = ACTIONS(196), + [anon_sym_GT_EQ] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(198), + [anon_sym_PLUS_EQ] = ACTIONS(196), + [anon_sym_DASH_EQ] = ACTIONS(196), + [anon_sym_u00d7] = ACTIONS(196), + [anon_sym_SLASH] = ACTIONS(198), + [anon_sym_u00f7] = ACTIONS(196), + [anon_sym_STAR_STAR] = ACTIONS(196), + [anon_sym_u220b] = ACTIONS(196), + [anon_sym_u220c] = ACTIONS(196), + [anon_sym_u2287] = ACTIONS(196), + [anon_sym_u2283] = ACTIONS(196), + [anon_sym_u2285] = ACTIONS(196), + [anon_sym_u2208] = ACTIONS(196), + [anon_sym_u2209] = ACTIONS(196), + [anon_sym_u2286] = ACTIONS(196), + [anon_sym_u2282] = ACTIONS(196), + [anon_sym_u2284] = ACTIONS(196), + [anon_sym_AT_AT] = ACTIONS(196), + }, + [357] = { + [sym_where_clause] = STATE(882), [sym_group_clause] = STATE(967), - [sym_operator] = STATE(722), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(841), - [ts_builtin_sym_end] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(618), - [sym_keyword_as] = ACTIONS(618), - [sym_keyword_where] = ACTIONS(626), - [sym_keyword_group] = ACTIONS(614), + [sym_operator] = STATE(685), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(839), + [ts_builtin_sym_end] = ACTIONS(612), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(612), + [sym_keyword_as] = ACTIONS(612), + [sym_keyword_where] = ACTIONS(624), + [sym_keyword_group] = ACTIONS(606), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -45809,14 +46165,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_drop] = ACTIONS(618), - [sym_keyword_schemafull] = ACTIONS(618), - [sym_keyword_schemaless] = ACTIONS(618), - [sym_keyword_changefeed] = ACTIONS(618), - [sym_keyword_type] = ACTIONS(618), - [sym_keyword_permissions] = ACTIONS(618), - [sym_keyword_comment] = ACTIONS(618), - [anon_sym_COMMA] = ACTIONS(628), + [sym_keyword_drop] = ACTIONS(612), + [sym_keyword_schemafull] = ACTIONS(612), + [sym_keyword_schemaless] = ACTIONS(612), + [sym_keyword_changefeed] = ACTIONS(612), + [sym_keyword_type] = ACTIONS(612), + [sym_keyword_permissions] = ACTIONS(612), + [sym_keyword_comment] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -45856,274 +46212,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(212), + [358] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_explain] = ACTIONS(212), - [sym_keyword_parallel] = ACTIONS(212), - [sym_keyword_timeout] = ACTIONS(212), - [sym_keyword_fetch] = ACTIONS(212), - [sym_keyword_limit] = ACTIONS(212), - [sym_keyword_order] = ACTIONS(212), - [sym_keyword_with] = ACTIONS(212), - [sym_keyword_where] = ACTIONS(212), - [sym_keyword_split] = ACTIONS(212), - [sym_keyword_group] = ACTIONS(212), - [sym_keyword_and] = ACTIONS(212), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(212), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(212), - [sym_keyword_contains_not] = ACTIONS(212), - [sym_keyword_contains_all] = ACTIONS(212), - [sym_keyword_contains_any] = ACTIONS(212), - [sym_keyword_contains_none] = ACTIONS(212), - [sym_keyword_inside] = ACTIONS(212), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(212), - [sym_keyword_all_inside] = ACTIONS(212), - [sym_keyword_any_inside] = ACTIONS(212), - [sym_keyword_none_inside] = ACTIONS(212), - [sym_keyword_outside] = ACTIONS(212), - [sym_keyword_intersects] = ACTIONS(212), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_return] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(192), + [359] = { + [ts_builtin_sym_end] = ACTIONS(168), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_return] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_content] = ACTIONS(192), - [sym_keyword_merge] = ACTIONS(192), - [sym_keyword_patch] = ACTIONS(192), - [sym_keyword_set] = ACTIONS(192), - [sym_keyword_unset] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(632), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(168), + [sym_keyword_explain] = ACTIONS(168), + [sym_keyword_parallel] = ACTIONS(168), + [sym_keyword_timeout] = ACTIONS(168), + [sym_keyword_fetch] = ACTIONS(168), + [sym_keyword_limit] = ACTIONS(168), + [sym_keyword_order] = ACTIONS(168), + [sym_keyword_with] = ACTIONS(168), + [sym_keyword_where] = ACTIONS(168), + [sym_keyword_split] = ACTIONS(168), + [sym_keyword_group] = ACTIONS(168), + [sym_keyword_and] = ACTIONS(168), + [sym_keyword_or] = ACTIONS(170), + [sym_keyword_is] = ACTIONS(168), + [sym_keyword_not] = ACTIONS(170), + [sym_keyword_contains] = ACTIONS(168), + [sym_keyword_contains_not] = ACTIONS(168), + [sym_keyword_contains_all] = ACTIONS(168), + [sym_keyword_contains_any] = ACTIONS(168), + [sym_keyword_contains_none] = ACTIONS(168), + [sym_keyword_inside] = ACTIONS(168), + [sym_keyword_in] = ACTIONS(170), + [sym_keyword_not_inside] = ACTIONS(168), + [sym_keyword_all_inside] = ACTIONS(168), + [sym_keyword_any_inside] = ACTIONS(168), + [sym_keyword_none_inside] = ACTIONS(168), + [sym_keyword_outside] = ACTIONS(168), + [sym_keyword_intersects] = ACTIONS(168), + [anon_sym_COMMA] = ACTIONS(168), + [anon_sym_DASH_GT] = ACTIONS(168), + [anon_sym_LBRACK] = ACTIONS(168), + [anon_sym_LT_DASH] = ACTIONS(170), + [anon_sym_LT_DASH_GT] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(170), + [anon_sym_DOT] = ACTIONS(168), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_GT] = ACTIONS(170), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(170), + [anon_sym_LT_PIPE] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(168), + [anon_sym_QMARK_QMARK] = ACTIONS(168), + [anon_sym_QMARK_COLON] = ACTIONS(168), + [anon_sym_BANG_EQ] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(168), + [anon_sym_QMARK_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_BANG_TILDE] = ACTIONS(168), + [anon_sym_STAR_TILDE] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(168), + [anon_sym_GT_EQ] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_u00d7] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_u00f7] = ACTIONS(168), + [anon_sym_STAR_STAR] = ACTIONS(168), + [anon_sym_u220b] = ACTIONS(168), + [anon_sym_u220c] = ACTIONS(168), + [anon_sym_u2287] = ACTIONS(168), + [anon_sym_u2283] = ACTIONS(168), + [anon_sym_u2285] = ACTIONS(168), + [anon_sym_u2208] = ACTIONS(168), + [anon_sym_u2209] = ACTIONS(168), + [anon_sym_u2286] = ACTIONS(168), + [anon_sym_u2282] = ACTIONS(168), + [anon_sym_u2284] = ACTIONS(168), + [anon_sym_AT_AT] = ACTIONS(168), }, - [356] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), + [360] = { + [ts_builtin_sym_end] = ACTIONS(200), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_return] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_explain] = ACTIONS(200), + [sym_keyword_parallel] = ACTIONS(200), + [sym_keyword_timeout] = ACTIONS(200), + [sym_keyword_fetch] = ACTIONS(200), + [sym_keyword_limit] = ACTIONS(200), + [sym_keyword_order] = ACTIONS(200), + [sym_keyword_with] = ACTIONS(200), + [sym_keyword_where] = ACTIONS(200), + [sym_keyword_split] = ACTIONS(200), + [sym_keyword_group] = ACTIONS(200), + [sym_keyword_and] = ACTIONS(200), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(200), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(200), + [sym_keyword_contains_not] = ACTIONS(200), + [sym_keyword_contains_all] = ACTIONS(200), + [sym_keyword_contains_any] = ACTIONS(200), + [sym_keyword_contains_none] = ACTIONS(200), + [sym_keyword_inside] = ACTIONS(200), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(200), + [sym_keyword_all_inside] = ACTIONS(200), + [sym_keyword_any_inside] = ACTIONS(200), + [sym_keyword_none_inside] = ACTIONS(200), + [sym_keyword_outside] = ACTIONS(200), + [sym_keyword_intersects] = ACTIONS(200), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [357] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), + [361] = { + [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(160), - [sym_keyword_return] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_order] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_split] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), + [sym_keyword_is] = ACTIONS(160), [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), [anon_sym_COMMA] = ACTIONS(160), [anon_sym_DASH_GT] = ACTIONS(160), [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(160), [anon_sym_LT_DASH] = ACTIONS(162), [anon_sym_LT_DASH_GT] = ACTIONS(160), [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_LT] = ACTIONS(162), [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(632), [anon_sym_EQ] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), @@ -46160,350 +46516,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, - [358] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(212), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_return] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(196), + [362] = { + [ts_builtin_sym_end] = ACTIONS(180), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(196), - [sym_keyword_explain] = ACTIONS(196), - [sym_keyword_parallel] = ACTIONS(196), - [sym_keyword_timeout] = ACTIONS(196), - [sym_keyword_fetch] = ACTIONS(196), - [sym_keyword_limit] = ACTIONS(196), - [sym_keyword_order] = ACTIONS(196), - [sym_keyword_with] = ACTIONS(196), - [sym_keyword_where] = ACTIONS(196), - [sym_keyword_split] = ACTIONS(196), - [sym_keyword_group] = ACTIONS(196), - [sym_keyword_and] = ACTIONS(196), - [sym_keyword_or] = ACTIONS(198), - [sym_keyword_is] = ACTIONS(196), - [sym_keyword_not] = ACTIONS(198), - [sym_keyword_contains] = ACTIONS(196), - [sym_keyword_contains_not] = ACTIONS(196), - [sym_keyword_contains_all] = ACTIONS(196), - [sym_keyword_contains_any] = ACTIONS(196), - [sym_keyword_contains_none] = ACTIONS(196), - [sym_keyword_inside] = ACTIONS(196), - [sym_keyword_in] = ACTIONS(198), - [sym_keyword_not_inside] = ACTIONS(196), - [sym_keyword_all_inside] = ACTIONS(196), - [sym_keyword_any_inside] = ACTIONS(196), - [sym_keyword_none_inside] = ACTIONS(196), - [sym_keyword_outside] = ACTIONS(196), - [sym_keyword_intersects] = ACTIONS(196), - [anon_sym_COMMA] = ACTIONS(196), - [anon_sym_DASH_GT] = ACTIONS(196), - [anon_sym_LBRACK] = ACTIONS(196), - [anon_sym_LT_DASH] = ACTIONS(198), - [anon_sym_LT_DASH_GT] = ACTIONS(196), - [anon_sym_STAR] = ACTIONS(198), - [anon_sym_DOT] = ACTIONS(196), - [anon_sym_LT] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_EQ] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(198), - [anon_sym_AT] = ACTIONS(198), - [anon_sym_LT_PIPE] = ACTIONS(196), - [anon_sym_AMP_AMP] = ACTIONS(196), - [anon_sym_PIPE_PIPE] = ACTIONS(196), - [anon_sym_QMARK_QMARK] = ACTIONS(196), - [anon_sym_QMARK_COLON] = ACTIONS(196), - [anon_sym_BANG_EQ] = ACTIONS(196), - [anon_sym_EQ_EQ] = ACTIONS(196), - [anon_sym_QMARK_EQ] = ACTIONS(196), - [anon_sym_STAR_EQ] = ACTIONS(196), - [anon_sym_TILDE] = ACTIONS(196), - [anon_sym_BANG_TILDE] = ACTIONS(196), - [anon_sym_STAR_TILDE] = ACTIONS(196), - [anon_sym_LT_EQ] = ACTIONS(196), - [anon_sym_GT_EQ] = ACTIONS(196), - [anon_sym_PLUS] = ACTIONS(198), - [anon_sym_PLUS_EQ] = ACTIONS(196), - [anon_sym_DASH_EQ] = ACTIONS(196), - [anon_sym_u00d7] = ACTIONS(196), - [anon_sym_SLASH] = ACTIONS(198), - [anon_sym_u00f7] = ACTIONS(196), - [anon_sym_STAR_STAR] = ACTIONS(196), - [anon_sym_u220b] = ACTIONS(196), - [anon_sym_u220c] = ACTIONS(196), - [anon_sym_u2287] = ACTIONS(196), - [anon_sym_u2283] = ACTIONS(196), - [anon_sym_u2285] = ACTIONS(196), - [anon_sym_u2208] = ACTIONS(196), - [anon_sym_u2209] = ACTIONS(196), - [anon_sym_u2286] = ACTIONS(196), - [anon_sym_u2282] = ACTIONS(196), - [anon_sym_u2284] = ACTIONS(196), - [anon_sym_AT_AT] = ACTIONS(196), - }, - [360] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_return] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_semi_colon] = ACTIONS(180), + [sym_keyword_explain] = ACTIONS(180), + [sym_keyword_parallel] = ACTIONS(180), + [sym_keyword_timeout] = ACTIONS(180), + [sym_keyword_fetch] = ACTIONS(180), + [sym_keyword_limit] = ACTIONS(180), + [sym_keyword_order] = ACTIONS(180), + [sym_keyword_with] = ACTIONS(180), + [sym_keyword_where] = ACTIONS(180), + [sym_keyword_split] = ACTIONS(180), + [sym_keyword_group] = ACTIONS(180), + [sym_keyword_and] = ACTIONS(180), + [sym_keyword_or] = ACTIONS(182), + [sym_keyword_is] = ACTIONS(180), + [sym_keyword_not] = ACTIONS(182), + [sym_keyword_contains] = ACTIONS(180), + [sym_keyword_contains_not] = ACTIONS(180), + [sym_keyword_contains_all] = ACTIONS(180), + [sym_keyword_contains_any] = ACTIONS(180), + [sym_keyword_contains_none] = ACTIONS(180), + [sym_keyword_inside] = ACTIONS(180), + [sym_keyword_in] = ACTIONS(182), + [sym_keyword_not_inside] = ACTIONS(180), + [sym_keyword_all_inside] = ACTIONS(180), + [sym_keyword_any_inside] = ACTIONS(180), + [sym_keyword_none_inside] = ACTIONS(180), + [sym_keyword_outside] = ACTIONS(180), + [sym_keyword_intersects] = ACTIONS(180), + [anon_sym_COMMA] = ACTIONS(180), + [anon_sym_DASH_GT] = ACTIONS(180), + [anon_sym_LBRACK] = ACTIONS(180), + [anon_sym_LT_DASH] = ACTIONS(182), + [anon_sym_LT_DASH_GT] = ACTIONS(180), + [anon_sym_STAR] = ACTIONS(182), + [anon_sym_DOT] = ACTIONS(180), + [anon_sym_LT] = ACTIONS(182), + [anon_sym_GT] = ACTIONS(182), + [anon_sym_EQ] = ACTIONS(182), + [anon_sym_DASH] = ACTIONS(182), + [anon_sym_AT] = ACTIONS(182), + [anon_sym_LT_PIPE] = ACTIONS(180), + [anon_sym_AMP_AMP] = ACTIONS(180), + [anon_sym_PIPE_PIPE] = ACTIONS(180), + [anon_sym_QMARK_QMARK] = ACTIONS(180), + [anon_sym_QMARK_COLON] = ACTIONS(180), + [anon_sym_BANG_EQ] = ACTIONS(180), + [anon_sym_EQ_EQ] = ACTIONS(180), + [anon_sym_QMARK_EQ] = ACTIONS(180), + [anon_sym_STAR_EQ] = ACTIONS(180), + [anon_sym_TILDE] = ACTIONS(180), + [anon_sym_BANG_TILDE] = ACTIONS(180), + [anon_sym_STAR_TILDE] = ACTIONS(180), + [anon_sym_LT_EQ] = ACTIONS(180), + [anon_sym_GT_EQ] = ACTIONS(180), + [anon_sym_PLUS] = ACTIONS(182), + [anon_sym_PLUS_EQ] = ACTIONS(180), + [anon_sym_DASH_EQ] = ACTIONS(180), + [anon_sym_u00d7] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(182), + [anon_sym_u00f7] = ACTIONS(180), + [anon_sym_STAR_STAR] = ACTIONS(180), + [anon_sym_u220b] = ACTIONS(180), + [anon_sym_u220c] = ACTIONS(180), + [anon_sym_u2287] = ACTIONS(180), + [anon_sym_u2283] = ACTIONS(180), + [anon_sym_u2285] = ACTIONS(180), + [anon_sym_u2208] = ACTIONS(180), + [anon_sym_u2209] = ACTIONS(180), + [anon_sym_u2286] = ACTIONS(180), + [anon_sym_u2282] = ACTIONS(180), + [anon_sym_u2284] = ACTIONS(180), + [anon_sym_AT_AT] = ACTIONS(180), }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(188), + [363] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(188), - [sym_keyword_explain] = ACTIONS(188), - [sym_keyword_parallel] = ACTIONS(188), - [sym_keyword_timeout] = ACTIONS(188), - [sym_keyword_fetch] = ACTIONS(188), - [sym_keyword_limit] = ACTIONS(188), - [sym_keyword_order] = ACTIONS(188), - [sym_keyword_with] = ACTIONS(188), - [sym_keyword_where] = ACTIONS(188), - [sym_keyword_split] = ACTIONS(188), - [sym_keyword_group] = ACTIONS(188), - [sym_keyword_and] = ACTIONS(188), - [sym_keyword_or] = ACTIONS(190), - [sym_keyword_is] = ACTIONS(188), - [sym_keyword_not] = ACTIONS(190), - [sym_keyword_contains] = ACTIONS(188), - [sym_keyword_contains_not] = ACTIONS(188), - [sym_keyword_contains_all] = ACTIONS(188), - [sym_keyword_contains_any] = ACTIONS(188), - [sym_keyword_contains_none] = ACTIONS(188), - [sym_keyword_inside] = ACTIONS(188), - [sym_keyword_in] = ACTIONS(190), - [sym_keyword_not_inside] = ACTIONS(188), - [sym_keyword_all_inside] = ACTIONS(188), - [sym_keyword_any_inside] = ACTIONS(188), - [sym_keyword_none_inside] = ACTIONS(188), - [sym_keyword_outside] = ACTIONS(188), - [sym_keyword_intersects] = ACTIONS(188), - [anon_sym_COMMA] = ACTIONS(188), - [anon_sym_DASH_GT] = ACTIONS(188), - [anon_sym_LBRACK] = ACTIONS(188), - [anon_sym_LT_DASH] = ACTIONS(190), - [anon_sym_LT_DASH_GT] = ACTIONS(188), - [anon_sym_STAR] = ACTIONS(190), - [anon_sym_DOT] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(190), - [anon_sym_GT] = ACTIONS(190), - [anon_sym_EQ] = ACTIONS(190), - [anon_sym_DASH] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(190), - [anon_sym_LT_PIPE] = ACTIONS(188), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_QMARK_QMARK] = ACTIONS(188), - [anon_sym_QMARK_COLON] = ACTIONS(188), - [anon_sym_BANG_EQ] = ACTIONS(188), - [anon_sym_EQ_EQ] = ACTIONS(188), - [anon_sym_QMARK_EQ] = ACTIONS(188), - [anon_sym_STAR_EQ] = ACTIONS(188), - [anon_sym_TILDE] = ACTIONS(188), - [anon_sym_BANG_TILDE] = ACTIONS(188), - [anon_sym_STAR_TILDE] = ACTIONS(188), - [anon_sym_LT_EQ] = ACTIONS(188), - [anon_sym_GT_EQ] = ACTIONS(188), - [anon_sym_PLUS] = ACTIONS(190), - [anon_sym_PLUS_EQ] = ACTIONS(188), - [anon_sym_DASH_EQ] = ACTIONS(188), - [anon_sym_u00d7] = ACTIONS(188), - [anon_sym_SLASH] = ACTIONS(190), - [anon_sym_u00f7] = ACTIONS(188), - [anon_sym_STAR_STAR] = ACTIONS(188), - [anon_sym_u220b] = ACTIONS(188), - [anon_sym_u220c] = ACTIONS(188), - [anon_sym_u2287] = ACTIONS(188), - [anon_sym_u2283] = ACTIONS(188), - [anon_sym_u2285] = ACTIONS(188), - [anon_sym_u2208] = ACTIONS(188), - [anon_sym_u2209] = ACTIONS(188), - [anon_sym_u2286] = ACTIONS(188), - [anon_sym_u2282] = ACTIONS(188), - [anon_sym_u2284] = ACTIONS(188), - [anon_sym_AT_AT] = ACTIONS(188), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_QMARK] = ACTIONS(202), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [362] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(160), + [364] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(160), - [sym_keyword_return] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_order] = ACTIONS(160), + [sym_keyword_split] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), + [sym_keyword_is] = ACTIONS(160), [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), [anon_sym_DASH_GT] = ACTIONS(160), [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), [anon_sym_LT_DASH] = ACTIONS(162), [anon_sym_LT_DASH_GT] = ACTIONS(160), [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_LT] = ACTIONS(162), [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(634), [anon_sym_EQ] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), @@ -46540,120 +46742,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, - [363] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), + [365] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_QMARK] = ACTIONS(214), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_QMARK] = ACTIONS(142), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [364] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), + [366] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_return] = ACTIONS(351), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [367] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [368] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), + }, + [369] = { + [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(160), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), + [sym_keyword_as] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_drop] = ACTIONS(160), + [sym_keyword_schemafull] = ACTIONS(160), + [sym_keyword_schemaless] = ACTIONS(160), + [sym_keyword_changefeed] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), [anon_sym_DASH_GT] = ACTIONS(160), [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(160), [anon_sym_LT_DASH] = ACTIONS(162), [anon_sym_LT_DASH_GT] = ACTIONS(160), [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_LT] = ACTIONS(162), [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(636), [anon_sym_EQ] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), @@ -46690,420 +47117,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, - [365] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [366] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_QMARK] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [367] = { - [ts_builtin_sym_end] = ACTIONS(192), + [370] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_value] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_flexible] = ACTIONS(192), - [sym_keyword_readonly] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_default] = ACTIONS(192), - [sym_keyword_assert] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_for] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(634), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [368] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_return] = ACTIONS(142), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(192), + [371] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(200), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_drop] = ACTIONS(192), - [sym_keyword_schemafull] = ACTIONS(192), - [sym_keyword_schemaless] = ACTIONS(192), - [sym_keyword_changefeed] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(636), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_return] = ACTIONS(202), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [370] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), + [372] = { + [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(160), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), + [sym_keyword_value] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_flexible] = ACTIONS(160), + [sym_keyword_readonly] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_default] = ACTIONS(160), + [sym_keyword_assert] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_for] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), [anon_sym_DASH_GT] = ACTIONS(160), [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_QMARK] = ACTIONS(162), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(160), [anon_sym_LT_DASH] = ACTIONS(162), [anon_sym_LT_DASH_GT] = ACTIONS(160), [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_LT] = ACTIONS(162), [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(638), [anon_sym_EQ] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), @@ -47140,195 +47342,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, - [371] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(212), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_return] = ACTIONS(214), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [372] = { + [373] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_order] = ACTIONS(192), - [sym_keyword_split] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(194), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(638), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [373] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(50), + [374] = { [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(160), - [sym_keyword_return] = ACTIONS(162), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), + [sym_keyword_as] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_drop] = ACTIONS(160), + [sym_keyword_schemafull] = ACTIONS(160), + [sym_keyword_schemaless] = ACTIONS(160), + [sym_keyword_changefeed] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_for] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), [anon_sym_DASH_GT] = ACTIONS(160), [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_LT_DASH] = ACTIONS(162), [anon_sym_LT_DASH_GT] = ACTIONS(160), [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_LT] = ACTIONS(162), [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(640), [anon_sym_EQ] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), @@ -47365,234 +47492,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, - [374] = { - [ts_builtin_sym_end] = ACTIONS(192), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_drop] = ACTIONS(192), - [sym_keyword_schemafull] = ACTIONS(192), - [sym_keyword_schemaless] = ACTIONS(192), - [sym_keyword_changefeed] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_for] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, [375] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_return] = ACTIONS(343), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [376] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_value] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_flexible] = ACTIONS(192), - [sym_keyword_readonly] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_default] = ACTIONS(192), - [sym_keyword_assert] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_value] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_flexible] = ACTIONS(160), + [sym_keyword_readonly] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_default] = ACTIONS(160), + [sym_keyword_assert] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), [anon_sym_DOT_DOT] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), + }, + [376] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, [377] = { - [sym_operator] = STATE(683), - [sym_binary_operator] = STATE(783), + [sym_operator] = STATE(695), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(644), [sym_keyword_explain] = ACTIONS(644), @@ -47600,13 +47652,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_timeout] = ACTIONS(644), [sym_keyword_fetch] = ACTIONS(644), [sym_keyword_limit] = ACTIONS(644), - [sym_keyword_rand] = ACTIONS(646), - [sym_keyword_collate] = ACTIONS(646), - [sym_keyword_numeric] = ACTIONS(646), - [sym_keyword_asc] = ACTIONS(648), - [sym_keyword_desc] = ACTIONS(648), + [sym_keyword_order] = ACTIONS(644), + [sym_keyword_with] = ACTIONS(644), + [sym_keyword_where] = ACTIONS(644), + [sym_keyword_split] = ACTIONS(644), + [sym_keyword_group] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(646), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [378] = { + [sym_operator] = STATE(751), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(904), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(648), + [sym_keyword_explain] = ACTIONS(648), + [sym_keyword_parallel] = ACTIONS(648), + [sym_keyword_timeout] = ACTIONS(648), + [sym_keyword_fetch] = ACTIONS(648), + [sym_keyword_limit] = ACTIONS(648), + [sym_keyword_order] = ACTIONS(648), + [sym_keyword_where] = ACTIONS(648), + [sym_keyword_split] = ACTIONS(648), + [sym_keyword_group] = ACTIONS(648), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(315), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -47622,9 +47748,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_RPAREN] = ACTIONS(644), - [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -47664,414 +47790,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [378] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, [379] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(212), + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(200), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_parallel] = ACTIONS(214), - [sym_keyword_timeout] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_parallel] = ACTIONS(202), + [sym_keyword_timeout] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [380] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_parallel] = ACTIONS(343), - [sym_keyword_timeout] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [381] = { - [ts_builtin_sym_end] = ACTIONS(192), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_explain] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_fetch] = ACTIONS(192), - [sym_keyword_limit] = ACTIONS(192), - [sym_keyword_order] = ACTIONS(192), - [sym_keyword_split] = ACTIONS(192), - [sym_keyword_group] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(194), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [382] = { - [sym_operator] = STATE(683), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_explain] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_fetch] = ACTIONS(652), - [sym_keyword_limit] = ACTIONS(652), - [sym_keyword_rand] = ACTIONS(652), - [sym_keyword_collate] = ACTIONS(652), - [sym_keyword_numeric] = ACTIONS(652), - [sym_keyword_asc] = ACTIONS(652), - [sym_keyword_desc] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [383] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(50), [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(160), - [sym_keyword_parallel] = ACTIONS(162), - [sym_keyword_timeout] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), + [sym_keyword_value] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_flexible] = ACTIONS(160), + [sym_keyword_readonly] = ACTIONS(160), + [sym_keyword_type] = ACTIONS(160), + [sym_keyword_default] = ACTIONS(160), + [sym_keyword_assert] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), [anon_sym_DASH_GT] = ACTIONS(160), [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(43), [anon_sym_LT_DASH] = ACTIONS(162), [anon_sym_LT_DASH_GT] = ACTIONS(160), [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_LT] = ACTIONS(162), [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(652), [anon_sym_EQ] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), @@ -48108,245 +47938,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, + [381] = { + [sym_operator] = STATE(710), + [sym_binary_operator] = STATE(779), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(654), + [sym_keyword_explain] = ACTIONS(654), + [sym_keyword_parallel] = ACTIONS(654), + [sym_keyword_timeout] = ACTIONS(654), + [sym_keyword_fetch] = ACTIONS(654), + [sym_keyword_limit] = ACTIONS(654), + [sym_keyword_rand] = ACTIONS(656), + [sym_keyword_collate] = ACTIONS(656), + [sym_keyword_numeric] = ACTIONS(656), + [sym_keyword_asc] = ACTIONS(658), + [sym_keyword_desc] = ACTIONS(658), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(313), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(654), + [anon_sym_RPAREN] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), + }, + [382] = { + [sym_operator] = STATE(695), + [sym_binary_operator] = STATE(779), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(660), + [sym_keyword_explain] = ACTIONS(660), + [sym_keyword_parallel] = ACTIONS(660), + [sym_keyword_timeout] = ACTIONS(660), + [sym_keyword_fetch] = ACTIONS(660), + [sym_keyword_limit] = ACTIONS(660), + [sym_keyword_order] = ACTIONS(660), + [sym_keyword_with] = ACTIONS(660), + [sym_keyword_where] = ACTIONS(660), + [sym_keyword_split] = ACTIONS(660), + [sym_keyword_group] = ACTIONS(660), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(315), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), + }, + [383] = { + [sym_operator] = STATE(737), + [sym_binary_operator] = STATE(779), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_as] = ACTIONS(644), + [sym_keyword_where] = ACTIONS(644), + [sym_keyword_group] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_drop] = ACTIONS(644), + [sym_keyword_schemafull] = ACTIONS(644), + [sym_keyword_schemaless] = ACTIONS(644), + [sym_keyword_changefeed] = ACTIONS(644), + [sym_keyword_type] = ACTIONS(644), + [sym_keyword_permissions] = ACTIONS(644), + [sym_keyword_comment] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, [384] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(140), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_parallel] = ACTIONS(142), + [sym_keyword_timeout] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [385] = { - [sym_operator] = STATE(712), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_explain] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_fetch] = ACTIONS(652), - [sym_keyword_limit] = ACTIONS(652), - [sym_keyword_order] = ACTIONS(652), - [sym_keyword_with] = ACTIONS(652), - [sym_keyword_where] = ACTIONS(652), - [sym_keyword_split] = ACTIONS(652), - [sym_keyword_group] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(654), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_parallel] = ACTIONS(351), + [sym_keyword_timeout] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, [386] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_operator] = STATE(710), + [sym_binary_operator] = STATE(779), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_explain] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_fetch] = ACTIONS(644), + [sym_keyword_limit] = ACTIONS(644), + [sym_keyword_rand] = ACTIONS(644), + [sym_keyword_collate] = ACTIONS(644), + [sym_keyword_numeric] = ACTIONS(644), + [sym_keyword_asc] = ACTIONS(644), + [sym_keyword_desc] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), }, [387] = { - [sym_operator] = STATE(712), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(656), - [sym_keyword_explain] = ACTIONS(656), - [sym_keyword_parallel] = ACTIONS(656), - [sym_keyword_timeout] = ACTIONS(656), - [sym_keyword_fetch] = ACTIONS(656), - [sym_keyword_limit] = ACTIONS(656), - [sym_keyword_order] = ACTIONS(656), - [sym_keyword_with] = ACTIONS(656), - [sym_keyword_where] = ACTIONS(656), - [sym_keyword_split] = ACTIONS(656), - [sym_keyword_group] = ACTIONS(656), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [388] = { + [sym_operator] = STATE(737), + [sym_binary_operator] = STATE(779), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(660), + [sym_keyword_as] = ACTIONS(660), + [sym_keyword_where] = ACTIONS(660), + [sym_keyword_group] = ACTIONS(660), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(315), + [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -48362,9 +48481,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), + [sym_keyword_drop] = ACTIONS(660), + [sym_keyword_schemafull] = ACTIONS(660), + [sym_keyword_schemaless] = ACTIONS(660), + [sym_keyword_changefeed] = ACTIONS(660), + [sym_keyword_type] = ACTIONS(660), + [sym_keyword_permissions] = ACTIONS(660), + [sym_keyword_comment] = ACTIONS(660), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -48404,245 +48530,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [388] = { - [ts_builtin_sym_end] = ACTIONS(192), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_value] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_flexible] = ACTIONS(192), - [sym_keyword_readonly] = ACTIONS(192), - [sym_keyword_type] = ACTIONS(192), - [sym_keyword_default] = ACTIONS(192), - [sym_keyword_assert] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, [389] = { - [sym_operator] = STATE(679), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_as] = ACTIONS(652), - [sym_keyword_where] = ACTIONS(652), - [sym_keyword_group] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_drop] = ACTIONS(652), - [sym_keyword_schemafull] = ACTIONS(652), - [sym_keyword_schemaless] = ACTIONS(652), - [sym_keyword_changefeed] = ACTIONS(652), - [sym_keyword_type] = ACTIONS(652), - [sym_keyword_permissions] = ACTIONS(652), - [sym_keyword_comment] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [390] = { - [sym_operator] = STATE(679), - [sym_binary_operator] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(656), - [sym_keyword_as] = ACTIONS(656), - [sym_keyword_where] = ACTIONS(656), - [sym_keyword_group] = ACTIONS(656), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_drop] = ACTIONS(656), - [sym_keyword_schemafull] = ACTIONS(656), - [sym_keyword_schemaless] = ACTIONS(656), - [sym_keyword_changefeed] = ACTIONS(656), - [sym_keyword_type] = ACTIONS(656), - [sym_keyword_permissions] = ACTIONS(656), - [sym_keyword_comment] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_explain] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_fetch] = ACTIONS(160), + [sym_keyword_limit] = ACTIONS(160), + [sym_keyword_order] = ACTIONS(160), + [sym_keyword_split] = ACTIONS(160), + [sym_keyword_group] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(162), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, [391] = { - [sym_operator] = STATE(742), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(895), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [392] = { + [sym_operator] = STATE(683), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(660), - [sym_keyword_explain] = ACTIONS(660), + [sym_keyword_return] = ACTIONS(660), [sym_keyword_parallel] = ACTIONS(660), [sym_keyword_timeout] = ACTIONS(660), - [sym_keyword_fetch] = ACTIONS(660), - [sym_keyword_limit] = ACTIONS(660), - [sym_keyword_order] = ACTIONS(660), [sym_keyword_where] = ACTIONS(660), - [sym_keyword_split] = ACTIONS(660), - [sym_keyword_group] = ACTIONS(660), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(315), + [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -48658,7 +48778,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(662), + [sym_keyword_content] = ACTIONS(660), + [sym_keyword_merge] = ACTIONS(660), + [sym_keyword_patch] = ACTIONS(660), + [sym_keyword_set] = ACTIONS(660), + [sym_keyword_unset] = ACTIONS(660), + [anon_sym_COMMA] = ACTIONS(660), [anon_sym_RPAREN] = ACTIONS(660), [anon_sym_RBRACE] = ACTIONS(660), [anon_sym_STAR] = ACTIONS(323), @@ -48700,20 +48825,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [392] = { - [sym_where_clause] = STATE(1045), - [sym_timeout_clause] = STATE(1246), - [sym_parallel_clause] = STATE(1336), - [sym_return_clause] = STATE(1122), - [sym_operator] = STATE(717), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(927), + [393] = { + [sym_operator] = STATE(685), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(660), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(664), - [sym_keyword_return] = ACTIONS(355), - [sym_keyword_parallel] = ACTIONS(295), - [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_where] = ACTIONS(357), + [sym_semi_colon] = ACTIONS(660), + [sym_keyword_as] = ACTIONS(660), + [sym_keyword_where] = ACTIONS(660), + [sym_keyword_group] = ACTIONS(660), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -48731,9 +48851,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_RBRACE] = ACTIONS(664), + [sym_keyword_drop] = ACTIONS(660), + [sym_keyword_schemafull] = ACTIONS(660), + [sym_keyword_schemaless] = ACTIONS(660), + [sym_keyword_changefeed] = ACTIONS(660), + [sym_keyword_type] = ACTIONS(660), + [sym_keyword_permissions] = ACTIONS(660), + [sym_keyword_comment] = ACTIONS(660), + [anon_sym_COMMA] = ACTIONS(660), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -48773,95 +48898,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [393] = { - [sym_operator] = STATE(757), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(947), - [ts_builtin_sym_end] = ACTIONS(660), + [394] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_keyword_from] = ACTIONS(142), + [sym_keyword_as] = ACTIONS(142), + [sym_keyword_omit] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), + }, + [395] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), + [sym_comment] = ACTIONS(3), + [sym_keyword_as] = ACTIONS(202), + [sym_keyword_where] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [396] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [397] = { + [sym_operator] = STATE(685), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_as] = ACTIONS(644), + [sym_keyword_where] = ACTIONS(644), + [sym_keyword_group] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_drop] = ACTIONS(644), + [sym_keyword_schemafull] = ACTIONS(644), + [sym_keyword_schemaless] = ACTIONS(644), + [sym_keyword_changefeed] = ACTIONS(644), + [sym_keyword_type] = ACTIONS(644), + [sym_keyword_permissions] = ACTIONS(644), + [sym_keyword_comment] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [398] = { + [sym_operator] = STATE(758), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_explain] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_fetch] = ACTIONS(644), + [sym_keyword_limit] = ACTIONS(644), + [sym_keyword_rand] = ACTIONS(644), + [sym_keyword_collate] = ACTIONS(644), + [sym_keyword_numeric] = ACTIONS(644), + [sym_keyword_asc] = ACTIONS(644), + [sym_keyword_desc] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [399] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), + [sym_comment] = ACTIONS(3), + [sym_keyword_from] = ACTIONS(202), + [sym_keyword_as] = ACTIONS(202), + [sym_keyword_omit] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [400] = { + [sym_operator] = STATE(751), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(660), - [sym_keyword_explain] = ACTIONS(660), - [sym_keyword_parallel] = ACTIONS(660), - [sym_keyword_timeout] = ACTIONS(660), - [sym_keyword_fetch] = ACTIONS(660), - [sym_keyword_limit] = ACTIONS(660), - [sym_keyword_order] = ACTIONS(660), - [sym_keyword_where] = ACTIONS(660), - [sym_keyword_split] = ACTIONS(660), - [sym_keyword_group] = ACTIONS(660), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(315), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_explain] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_fetch] = ACTIONS(644), + [sym_keyword_limit] = ACTIONS(644), + [sym_keyword_order] = ACTIONS(644), + [sym_keyword_where] = ACTIONS(644), + [sym_keyword_split] = ACTIONS(644), + [sym_keyword_group] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(646), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), }, - [394] = { - [sym_operator] = STATE(742), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(656), - [sym_keyword_explain] = ACTIONS(656), - [sym_keyword_parallel] = ACTIONS(656), - [sym_keyword_timeout] = ACTIONS(656), - [sym_keyword_fetch] = ACTIONS(656), - [sym_keyword_limit] = ACTIONS(656), - [sym_keyword_order] = ACTIONS(656), - [sym_keyword_where] = ACTIONS(656), - [sym_keyword_split] = ACTIONS(656), - [sym_keyword_group] = ACTIONS(656), + [401] = { + [sym_operator] = STATE(758), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(654), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(654), + [sym_keyword_explain] = ACTIONS(654), + [sym_keyword_parallel] = ACTIONS(654), + [sym_keyword_timeout] = ACTIONS(654), + [sym_keyword_fetch] = ACTIONS(654), + [sym_keyword_limit] = ACTIONS(654), + [sym_keyword_rand] = ACTIONS(656), + [sym_keyword_collate] = ACTIONS(656), + [sym_keyword_numeric] = ACTIONS(656), + [sym_keyword_asc] = ACTIONS(658), + [sym_keyword_desc] = ACTIONS(658), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(315), + [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -48877,9 +49442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(654), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -48919,314 +49482,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [395] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), - [sym_comment] = ACTIONS(3), - [sym_keyword_as] = ACTIONS(162), - [sym_keyword_where] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [396] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), + [402] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), [sym_comment] = ACTIONS(3), - [sym_keyword_if] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_custom_function_name] = ACTIONS(214), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_keyword_if] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_custom_function_name] = ACTIONS(202), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [397] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), - [sym_comment] = ACTIONS(3), - [sym_keyword_if] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_custom_function_name] = ACTIONS(162), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [403] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_keyword_if] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_permissions] = ACTIONS(351), + [sym_keyword_comment] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_custom_function_name] = ACTIONS(351), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, - [398] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_keyword_as] = ACTIONS(343), - [sym_keyword_where] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [404] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_keyword_as] = ACTIONS(351), + [sym_keyword_where] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, - [399] = { - [sym_operator] = STATE(744), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(644), + [405] = { + [sym_where_clause] = STATE(1024), + [sym_timeout_clause] = STATE(1209), + [sym_parallel_clause] = STATE(1328), + [sym_return_clause] = STATE(1118), + [sym_operator] = STATE(703), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(910), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(644), - [sym_keyword_explain] = ACTIONS(644), - [sym_keyword_parallel] = ACTIONS(644), - [sym_keyword_timeout] = ACTIONS(644), - [sym_keyword_fetch] = ACTIONS(644), - [sym_keyword_limit] = ACTIONS(644), - [sym_keyword_rand] = ACTIONS(646), - [sym_keyword_collate] = ACTIONS(646), - [sym_keyword_numeric] = ACTIONS(646), - [sym_keyword_asc] = ACTIONS(648), - [sym_keyword_desc] = ACTIONS(648), + [sym_semi_colon] = ACTIONS(664), + [sym_keyword_return] = ACTIONS(359), + [sym_keyword_parallel] = ACTIONS(295), + [sym_keyword_timeout] = ACTIONS(297), + [sym_keyword_where] = ACTIONS(361), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -49244,7 +49732,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_RPAREN] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -49284,241 +49774,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [400] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), - [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(214), - [sym_keyword_as] = ACTIONS(214), - [sym_keyword_omit] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [406] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_keyword_from] = ACTIONS(351), + [sym_keyword_as] = ACTIONS(351), + [sym_keyword_omit] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, - [401] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_keyword_if] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_custom_function_name] = ACTIONS(343), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [407] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(140), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [402] = { - [sym_operator] = STATE(722), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_as] = ACTIONS(652), - [sym_keyword_where] = ACTIONS(652), - [sym_keyword_group] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_drop] = ACTIONS(652), - [sym_keyword_schemafull] = ACTIONS(652), - [sym_keyword_schemaless] = ACTIONS(652), - [sym_keyword_changefeed] = ACTIONS(652), - [sym_keyword_type] = ACTIONS(652), - [sym_keyword_permissions] = ACTIONS(652), - [sym_keyword_comment] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [408] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_keyword_as] = ACTIONS(142), + [sym_keyword_where] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [403] = { - [sym_where_clause] = STATE(1040), - [sym_timeout_clause] = STATE(1209), - [sym_parallel_clause] = STATE(1350), - [sym_return_clause] = STATE(1165), - [sym_operator] = STATE(717), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(932), + [409] = { + [sym_operator] = STATE(700), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(660), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(670), - [sym_keyword_return] = ACTIONS(355), - [sym_keyword_parallel] = ACTIONS(295), - [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_where] = ACTIONS(357), + [sym_semi_colon] = ACTIONS(660), + [sym_keyword_explain] = ACTIONS(660), + [sym_keyword_parallel] = ACTIONS(660), + [sym_keyword_timeout] = ACTIONS(660), + [sym_keyword_fetch] = ACTIONS(660), + [sym_keyword_limit] = ACTIONS(660), + [sym_keyword_order] = ACTIONS(660), + [sym_keyword_with] = ACTIONS(660), + [sym_keyword_where] = ACTIONS(660), + [sym_keyword_split] = ACTIONS(660), + [sym_keyword_group] = ACTIONS(660), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(315), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -49534,9 +50026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(670), - [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(660), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -49576,90 +50066,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [404] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(343), - [sym_keyword_as] = ACTIONS(343), - [sym_keyword_omit] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [410] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_permissions] = ACTIONS(202), + [sym_keyword_comment] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [405] = { - [sym_operator] = STATE(694), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(656), - [sym_keyword_return] = ACTIONS(656), - [sym_keyword_parallel] = ACTIONS(656), - [sym_keyword_timeout] = ACTIONS(656), - [sym_keyword_where] = ACTIONS(656), + [411] = { + [sym_operator] = STATE(763), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(911), + [ts_builtin_sym_end] = ACTIONS(648), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(648), + [sym_keyword_explain] = ACTIONS(648), + [sym_keyword_parallel] = ACTIONS(648), + [sym_keyword_timeout] = ACTIONS(648), + [sym_keyword_fetch] = ACTIONS(648), + [sym_keyword_limit] = ACTIONS(648), + [sym_keyword_order] = ACTIONS(648), + [sym_keyword_where] = ACTIONS(648), + [sym_keyword_split] = ACTIONS(648), + [sym_keyword_group] = ACTIONS(648), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(315), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -49675,14 +50172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_content] = ACTIONS(656), - [sym_keyword_merge] = ACTIONS(656), - [sym_keyword_patch] = ACTIONS(656), - [sym_keyword_set] = ACTIONS(656), - [sym_keyword_unset] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(668), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -49722,90 +50212,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [406] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(212), + [412] = { + [sym_operator] = STATE(751), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_permissions] = ACTIONS(214), - [sym_keyword_comment] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [407] = { - [sym_operator] = STATE(722), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(656), - [sym_keyword_as] = ACTIONS(656), - [sym_keyword_where] = ACTIONS(656), - [sym_keyword_group] = ACTIONS(656), + [sym_semi_colon] = ACTIONS(660), + [sym_keyword_explain] = ACTIONS(660), + [sym_keyword_parallel] = ACTIONS(660), + [sym_keyword_timeout] = ACTIONS(660), + [sym_keyword_fetch] = ACTIONS(660), + [sym_keyword_limit] = ACTIONS(660), + [sym_keyword_order] = ACTIONS(660), + [sym_keyword_where] = ACTIONS(660), + [sym_keyword_split] = ACTIONS(660), + [sym_keyword_group] = ACTIONS(660), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(315), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -49821,14 +50243,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_drop] = ACTIONS(656), - [sym_keyword_schemafull] = ACTIONS(656), - [sym_keyword_schemaless] = ACTIONS(656), - [sym_keyword_changefeed] = ACTIONS(656), - [sym_keyword_type] = ACTIONS(656), - [sym_keyword_permissions] = ACTIONS(656), - [sym_keyword_comment] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -49868,243 +50285,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [408] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), + [413] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), [sym_comment] = ACTIONS(3), - [sym_keyword_as] = ACTIONS(214), - [sym_keyword_where] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [409] = { - [sym_operator] = STATE(678), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_explain] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_fetch] = ACTIONS(652), - [sym_keyword_limit] = ACTIONS(652), - [sym_keyword_order] = ACTIONS(652), - [sym_keyword_with] = ACTIONS(652), - [sym_keyword_where] = ACTIONS(652), - [sym_keyword_split] = ACTIONS(652), - [sym_keyword_group] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(654), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [410] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), - [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(162), - [sym_keyword_as] = ACTIONS(162), - [sym_keyword_omit] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_keyword_if] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_permissions] = ACTIONS(142), + [sym_keyword_comment] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_custom_function_name] = ACTIONS(142), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [411] = { - [sym_operator] = STATE(678), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(656), - [sym_keyword_explain] = ACTIONS(656), - [sym_keyword_parallel] = ACTIONS(656), - [sym_keyword_timeout] = ACTIONS(656), - [sym_keyword_fetch] = ACTIONS(656), - [sym_keyword_limit] = ACTIONS(656), - [sym_keyword_order] = ACTIONS(656), - [sym_keyword_with] = ACTIONS(656), - [sym_keyword_where] = ACTIONS(656), - [sym_keyword_split] = ACTIONS(656), - [sym_keyword_group] = ACTIONS(656), + [414] = { + [sym_where_clause] = STATE(1039), + [sym_timeout_clause] = STATE(1247), + [sym_parallel_clause] = STATE(1423), + [sym_return_clause] = STATE(1145), + [sym_operator] = STATE(703), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(921), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(670), + [sym_keyword_return] = ACTIONS(359), + [sym_keyword_parallel] = ACTIONS(295), + [sym_keyword_timeout] = ACTIONS(297), + [sym_keyword_where] = ACTIONS(361), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(315), + [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -50120,7 +50389,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_RPAREN] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(670), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -50160,518 +50431,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [412] = { - [sym_operator] = STATE(744), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_explain] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_fetch] = ACTIONS(652), - [sym_keyword_limit] = ACTIONS(652), - [sym_keyword_rand] = ACTIONS(652), - [sym_keyword_collate] = ACTIONS(652), - [sym_keyword_numeric] = ACTIONS(652), - [sym_keyword_asc] = ACTIONS(652), - [sym_keyword_desc] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [413] = { - [sym_operator] = STATE(694), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_return] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_where] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_content] = ACTIONS(652), - [sym_keyword_merge] = ACTIONS(652), - [sym_keyword_patch] = ACTIONS(652), - [sym_keyword_set] = ACTIONS(652), - [sym_keyword_unset] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [414] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(160), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_permissions] = ACTIONS(162), - [sym_keyword_comment] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, [415] = { - [sym_operator] = STATE(742), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_explain] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_fetch] = ACTIONS(652), - [sym_keyword_limit] = ACTIONS(652), - [sym_keyword_order] = ACTIONS(652), - [sym_keyword_where] = ACTIONS(652), - [sym_keyword_split] = ACTIONS(652), - [sym_keyword_group] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(654), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [416] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_permissions] = ACTIONS(343), - [sym_keyword_comment] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [417] = { + [sym_operator] = STATE(700), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(156), - [sym_keyword_explain] = ACTIONS(156), - [sym_keyword_parallel] = ACTIONS(156), - [sym_keyword_timeout] = ACTIONS(156), - [sym_keyword_fetch] = ACTIONS(156), - [sym_keyword_limit] = ACTIONS(156), - [sym_keyword_order] = ACTIONS(156), - [sym_keyword_with] = ACTIONS(156), - [sym_keyword_where] = ACTIONS(156), - [sym_keyword_split] = ACTIONS(156), - [sym_keyword_group] = ACTIONS(156), - [sym_keyword_and] = ACTIONS(156), - [sym_keyword_or] = ACTIONS(158), - [sym_keyword_is] = ACTIONS(156), - [sym_keyword_not] = ACTIONS(158), - [sym_keyword_contains] = ACTIONS(156), - [sym_keyword_contains_not] = ACTIONS(156), - [sym_keyword_contains_all] = ACTIONS(156), - [sym_keyword_contains_any] = ACTIONS(156), - [sym_keyword_contains_none] = ACTIONS(156), - [sym_keyword_inside] = ACTIONS(156), - [sym_keyword_in] = ACTIONS(158), - [sym_keyword_not_inside] = ACTIONS(156), - [sym_keyword_all_inside] = ACTIONS(156), - [sym_keyword_any_inside] = ACTIONS(156), - [sym_keyword_none_inside] = ACTIONS(156), - [sym_keyword_outside] = ACTIONS(156), - [sym_keyword_intersects] = ACTIONS(156), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_RPAREN] = ACTIONS(156), - [anon_sym_RBRACE] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(158), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(158), - [anon_sym_LT_PIPE] = ACTIONS(156), - [anon_sym_AMP_AMP] = ACTIONS(156), - [anon_sym_PIPE_PIPE] = ACTIONS(156), - [anon_sym_QMARK_QMARK] = ACTIONS(156), - [anon_sym_QMARK_COLON] = ACTIONS(156), - [anon_sym_BANG_EQ] = ACTIONS(156), - [anon_sym_EQ_EQ] = ACTIONS(156), - [anon_sym_QMARK_EQ] = ACTIONS(156), - [anon_sym_STAR_EQ] = ACTIONS(156), - [anon_sym_TILDE] = ACTIONS(156), - [anon_sym_BANG_TILDE] = ACTIONS(156), - [anon_sym_STAR_TILDE] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(156), - [anon_sym_DASH_EQ] = ACTIONS(156), - [anon_sym_u00d7] = ACTIONS(156), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_u00f7] = ACTIONS(156), - [anon_sym_STAR_STAR] = ACTIONS(156), - [anon_sym_u220b] = ACTIONS(156), - [anon_sym_u220c] = ACTIONS(156), - [anon_sym_u2287] = ACTIONS(156), - [anon_sym_u2283] = ACTIONS(156), - [anon_sym_u2285] = ACTIONS(156), - [anon_sym_u2208] = ACTIONS(156), - [anon_sym_u2209] = ACTIONS(156), - [anon_sym_u2286] = ACTIONS(156), - [anon_sym_u2282] = ACTIONS(156), - [anon_sym_u2284] = ACTIONS(156), - [anon_sym_AT_AT] = ACTIONS(156), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_explain] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_fetch] = ACTIONS(644), + [sym_keyword_limit] = ACTIONS(644), + [sym_keyword_order] = ACTIONS(644), + [sym_keyword_with] = ACTIONS(644), + [sym_keyword_where] = ACTIONS(644), + [sym_keyword_split] = ACTIONS(644), + [sym_keyword_group] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(646), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), }, - [418] = { + [416] = { + [sym_operator] = STATE(683), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(233), - [sym_keyword_explain] = ACTIONS(233), - [sym_keyword_parallel] = ACTIONS(233), - [sym_keyword_timeout] = ACTIONS(233), - [sym_keyword_fetch] = ACTIONS(233), - [sym_keyword_limit] = ACTIONS(233), - [sym_keyword_order] = ACTIONS(233), - [sym_keyword_with] = ACTIONS(233), - [sym_keyword_where] = ACTIONS(233), - [sym_keyword_split] = ACTIONS(233), - [sym_keyword_group] = ACTIONS(233), - [sym_keyword_and] = ACTIONS(233), - [sym_keyword_or] = ACTIONS(235), - [sym_keyword_is] = ACTIONS(233), - [sym_keyword_not] = ACTIONS(235), - [sym_keyword_contains] = ACTIONS(233), - [sym_keyword_contains_not] = ACTIONS(233), - [sym_keyword_contains_all] = ACTIONS(233), - [sym_keyword_contains_any] = ACTIONS(233), - [sym_keyword_contains_none] = ACTIONS(233), - [sym_keyword_inside] = ACTIONS(233), - [sym_keyword_in] = ACTIONS(235), - [sym_keyword_not_inside] = ACTIONS(233), - [sym_keyword_all_inside] = ACTIONS(233), - [sym_keyword_any_inside] = ACTIONS(233), - [sym_keyword_none_inside] = ACTIONS(233), - [sym_keyword_outside] = ACTIONS(233), - [sym_keyword_intersects] = ACTIONS(233), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_RPAREN] = ACTIONS(233), - [anon_sym_RBRACE] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(235), - [anon_sym_LT_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_QMARK_QMARK] = ACTIONS(233), - [anon_sym_QMARK_COLON] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_QMARK_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_TILDE] = ACTIONS(233), - [anon_sym_BANG_TILDE] = ACTIONS(233), - [anon_sym_STAR_TILDE] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_u00d7] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(235), - [anon_sym_u00f7] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_u220b] = ACTIONS(233), - [anon_sym_u220c] = ACTIONS(233), - [anon_sym_u2287] = ACTIONS(233), - [anon_sym_u2283] = ACTIONS(233), - [anon_sym_u2285] = ACTIONS(233), - [anon_sym_u2208] = ACTIONS(233), - [anon_sym_u2209] = ACTIONS(233), - [anon_sym_u2286] = ACTIONS(233), - [anon_sym_u2282] = ACTIONS(233), - [anon_sym_u2284] = ACTIONS(233), - [anon_sym_AT_AT] = ACTIONS(233), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_return] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_where] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_content] = ACTIONS(644), + [sym_keyword_merge] = ACTIONS(644), + [sym_keyword_patch] = ACTIONS(644), + [sym_keyword_set] = ACTIONS(644), + [sym_keyword_unset] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), }, - [419] = { - [sym_operator] = STATE(661), - [sym_binary_operator] = STATE(783), + [417] = { + [sym_operator] = STATE(726), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(672), [sym_keyword_as] = ACTIONS(672), @@ -50741,21 +50649,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [420] = { - [sym_where_clause] = STATE(1126), - [sym_timeout_clause] = STATE(1246), - [sym_parallel_clause] = STATE(1336), - [sym_return_clause] = STATE(1122), - [sym_operator] = STATE(751), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(962), - [ts_builtin_sym_end] = ACTIONS(664), + [418] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(168), + [sym_keyword_explain] = ACTIONS(168), + [sym_keyword_parallel] = ACTIONS(168), + [sym_keyword_timeout] = ACTIONS(168), + [sym_keyword_fetch] = ACTIONS(168), + [sym_keyword_limit] = ACTIONS(168), + [sym_keyword_order] = ACTIONS(168), + [sym_keyword_with] = ACTIONS(168), + [sym_keyword_where] = ACTIONS(168), + [sym_keyword_split] = ACTIONS(168), + [sym_keyword_group] = ACTIONS(168), + [sym_keyword_and] = ACTIONS(168), + [sym_keyword_or] = ACTIONS(170), + [sym_keyword_is] = ACTIONS(168), + [sym_keyword_not] = ACTIONS(170), + [sym_keyword_contains] = ACTIONS(168), + [sym_keyword_contains_not] = ACTIONS(168), + [sym_keyword_contains_all] = ACTIONS(168), + [sym_keyword_contains_any] = ACTIONS(168), + [sym_keyword_contains_none] = ACTIONS(168), + [sym_keyword_inside] = ACTIONS(168), + [sym_keyword_in] = ACTIONS(170), + [sym_keyword_not_inside] = ACTIONS(168), + [sym_keyword_all_inside] = ACTIONS(168), + [sym_keyword_any_inside] = ACTIONS(168), + [sym_keyword_none_inside] = ACTIONS(168), + [sym_keyword_outside] = ACTIONS(168), + [sym_keyword_intersects] = ACTIONS(168), + [anon_sym_COMMA] = ACTIONS(168), + [anon_sym_RPAREN] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(170), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_GT] = ACTIONS(170), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(170), + [anon_sym_LT_PIPE] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(168), + [anon_sym_QMARK_QMARK] = ACTIONS(168), + [anon_sym_QMARK_COLON] = ACTIONS(168), + [anon_sym_BANG_EQ] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(168), + [anon_sym_QMARK_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_BANG_TILDE] = ACTIONS(168), + [anon_sym_STAR_TILDE] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(168), + [anon_sym_GT_EQ] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_u00d7] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_u00f7] = ACTIONS(168), + [anon_sym_STAR_STAR] = ACTIONS(168), + [anon_sym_u220b] = ACTIONS(168), + [anon_sym_u220c] = ACTIONS(168), + [anon_sym_u2287] = ACTIONS(168), + [anon_sym_u2283] = ACTIONS(168), + [anon_sym_u2285] = ACTIONS(168), + [anon_sym_u2208] = ACTIONS(168), + [anon_sym_u2209] = ACTIONS(168), + [anon_sym_u2286] = ACTIONS(168), + [anon_sym_u2282] = ACTIONS(168), + [anon_sym_u2284] = ACTIONS(168), + [anon_sym_AT_AT] = ACTIONS(168), + }, + [419] = { + [ts_builtin_sym_end] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(221), + [sym_keyword_as] = ACTIONS(221), + [sym_keyword_where] = ACTIONS(221), + [sym_keyword_group] = ACTIONS(221), + [sym_keyword_and] = ACTIONS(221), + [sym_keyword_or] = ACTIONS(221), + [sym_keyword_is] = ACTIONS(221), + [sym_keyword_not] = ACTIONS(223), + [sym_keyword_contains] = ACTIONS(221), + [sym_keyword_contains_not] = ACTIONS(221), + [sym_keyword_contains_all] = ACTIONS(221), + [sym_keyword_contains_any] = ACTIONS(221), + [sym_keyword_contains_none] = ACTIONS(221), + [sym_keyword_inside] = ACTIONS(221), + [sym_keyword_in] = ACTIONS(223), + [sym_keyword_not_inside] = ACTIONS(221), + [sym_keyword_all_inside] = ACTIONS(221), + [sym_keyword_any_inside] = ACTIONS(221), + [sym_keyword_none_inside] = ACTIONS(221), + [sym_keyword_outside] = ACTIONS(221), + [sym_keyword_intersects] = ACTIONS(221), + [sym_keyword_drop] = ACTIONS(221), + [sym_keyword_schemafull] = ACTIONS(221), + [sym_keyword_schemaless] = ACTIONS(221), + [sym_keyword_changefeed] = ACTIONS(221), + [sym_keyword_type] = ACTIONS(221), + [sym_keyword_permissions] = ACTIONS(221), + [sym_keyword_for] = ACTIONS(221), + [sym_keyword_comment] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(223), + [anon_sym_GT] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_LT_PIPE] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_QMARK_QMARK] = ACTIONS(221), + [anon_sym_QMARK_COLON] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_QMARK_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(221), + [anon_sym_BANG_TILDE] = ACTIONS(221), + [anon_sym_STAR_TILDE] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_u00d7] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(223), + [anon_sym_u00f7] = ACTIONS(221), + [anon_sym_STAR_STAR] = ACTIONS(221), + [anon_sym_u220b] = ACTIONS(221), + [anon_sym_u220c] = ACTIONS(221), + [anon_sym_u2287] = ACTIONS(221), + [anon_sym_u2283] = ACTIONS(221), + [anon_sym_u2285] = ACTIONS(221), + [anon_sym_u2208] = ACTIONS(221), + [anon_sym_u2209] = ACTIONS(221), + [anon_sym_u2286] = ACTIONS(221), + [anon_sym_u2282] = ACTIONS(221), + [anon_sym_u2284] = ACTIONS(221), + [anon_sym_AT_AT] = ACTIONS(221), + }, + [420] = { + [sym_operator] = STATE(736), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(660), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(664), - [sym_keyword_return] = ACTIONS(406), - [sym_keyword_parallel] = ACTIONS(295), - [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_where] = ACTIONS(408), + [sym_semi_colon] = ACTIONS(660), + [sym_keyword_return] = ACTIONS(660), + [sym_keyword_parallel] = ACTIONS(660), + [sym_keyword_timeout] = ACTIONS(660), + [sym_keyword_where] = ACTIONS(660), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -50773,7 +50820,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(674), + [sym_keyword_content] = ACTIONS(660), + [sym_keyword_merge] = ACTIONS(660), + [sym_keyword_patch] = ACTIONS(660), + [sym_keyword_set] = ACTIONS(660), + [sym_keyword_unset] = ACTIONS(660), + [anon_sym_COMMA] = ACTIONS(660), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -50790,831 +50842,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_EQ] = ACTIONS(329), [anon_sym_STAR_EQ] = ACTIONS(329), [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), - }, - [421] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(343), - [sym_keyword_as] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [422] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_return] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [423] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), - [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(162), - [sym_keyword_as] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [424] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(77), - [sym_keyword_explain] = ACTIONS(77), - [sym_keyword_parallel] = ACTIONS(77), - [sym_keyword_timeout] = ACTIONS(77), - [sym_keyword_fetch] = ACTIONS(77), - [sym_keyword_limit] = ACTIONS(77), - [sym_keyword_order] = ACTIONS(77), - [sym_keyword_with] = ACTIONS(77), - [sym_keyword_where] = ACTIONS(77), - [sym_keyword_split] = ACTIONS(77), - [sym_keyword_group] = ACTIONS(77), - [sym_keyword_and] = ACTIONS(77), - [sym_keyword_or] = ACTIONS(79), - [sym_keyword_is] = ACTIONS(77), - [sym_keyword_not] = ACTIONS(79), - [sym_keyword_contains] = ACTIONS(77), - [sym_keyword_contains_not] = ACTIONS(77), - [sym_keyword_contains_all] = ACTIONS(77), - [sym_keyword_contains_any] = ACTIONS(77), - [sym_keyword_contains_none] = ACTIONS(77), - [sym_keyword_inside] = ACTIONS(77), - [sym_keyword_in] = ACTIONS(79), - [sym_keyword_not_inside] = ACTIONS(77), - [sym_keyword_all_inside] = ACTIONS(77), - [sym_keyword_any_inside] = ACTIONS(77), - [sym_keyword_none_inside] = ACTIONS(77), - [sym_keyword_outside] = ACTIONS(77), - [sym_keyword_intersects] = ACTIONS(77), - [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_RPAREN] = ACTIONS(77), - [anon_sym_RBRACE] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_EQ] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_AT] = ACTIONS(79), - [anon_sym_LT_PIPE] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_QMARK_QMARK] = ACTIONS(77), - [anon_sym_QMARK_COLON] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_QMARK_EQ] = ACTIONS(77), - [anon_sym_STAR_EQ] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG_TILDE] = ACTIONS(77), - [anon_sym_STAR_TILDE] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_PLUS_EQ] = ACTIONS(77), - [anon_sym_DASH_EQ] = ACTIONS(77), - [anon_sym_u00d7] = ACTIONS(77), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_u00f7] = ACTIONS(77), - [anon_sym_STAR_STAR] = ACTIONS(77), - [anon_sym_u220b] = ACTIONS(77), - [anon_sym_u220c] = ACTIONS(77), - [anon_sym_u2287] = ACTIONS(77), - [anon_sym_u2283] = ACTIONS(77), - [anon_sym_u2285] = ACTIONS(77), - [anon_sym_u2208] = ACTIONS(77), - [anon_sym_u2209] = ACTIONS(77), - [anon_sym_u2286] = ACTIONS(77), - [anon_sym_u2282] = ACTIONS(77), - [anon_sym_u2284] = ACTIONS(77), - [anon_sym_AT_AT] = ACTIONS(77), - }, - [425] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), - [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(214), - [sym_keyword_as] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [426] = { - [sym_operator] = STATE(757), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_explain] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_fetch] = ACTIONS(652), - [sym_keyword_limit] = ACTIONS(652), - [sym_keyword_order] = ACTIONS(652), - [sym_keyword_where] = ACTIONS(652), - [sym_keyword_split] = ACTIONS(652), - [sym_keyword_group] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(654), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [427] = { - [ts_builtin_sym_end] = ACTIONS(148), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(148), - [sym_keyword_as] = ACTIONS(148), - [sym_keyword_where] = ACTIONS(148), - [sym_keyword_group] = ACTIONS(148), - [sym_keyword_and] = ACTIONS(148), - [sym_keyword_or] = ACTIONS(148), - [sym_keyword_is] = ACTIONS(148), - [sym_keyword_not] = ACTIONS(150), - [sym_keyword_contains] = ACTIONS(148), - [sym_keyword_contains_not] = ACTIONS(148), - [sym_keyword_contains_all] = ACTIONS(148), - [sym_keyword_contains_any] = ACTIONS(148), - [sym_keyword_contains_none] = ACTIONS(148), - [sym_keyword_inside] = ACTIONS(148), - [sym_keyword_in] = ACTIONS(150), - [sym_keyword_not_inside] = ACTIONS(148), - [sym_keyword_all_inside] = ACTIONS(148), - [sym_keyword_any_inside] = ACTIONS(148), - [sym_keyword_none_inside] = ACTIONS(148), - [sym_keyword_outside] = ACTIONS(148), - [sym_keyword_intersects] = ACTIONS(148), - [sym_keyword_drop] = ACTIONS(148), - [sym_keyword_schemafull] = ACTIONS(148), - [sym_keyword_schemaless] = ACTIONS(148), - [sym_keyword_changefeed] = ACTIONS(148), - [sym_keyword_type] = ACTIONS(148), - [sym_keyword_permissions] = ACTIONS(148), - [sym_keyword_for] = ACTIONS(148), - [sym_keyword_comment] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_EQ] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(150), - [anon_sym_LT_PIPE] = ACTIONS(148), - [anon_sym_AMP_AMP] = ACTIONS(148), - [anon_sym_PIPE_PIPE] = ACTIONS(148), - [anon_sym_QMARK_QMARK] = ACTIONS(148), - [anon_sym_QMARK_COLON] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_QMARK_EQ] = ACTIONS(148), - [anon_sym_STAR_EQ] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_STAR_TILDE] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(148), - [anon_sym_DASH_EQ] = ACTIONS(148), - [anon_sym_u00d7] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(150), - [anon_sym_u00f7] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_u220b] = ACTIONS(148), - [anon_sym_u220c] = ACTIONS(148), - [anon_sym_u2287] = ACTIONS(148), - [anon_sym_u2283] = ACTIONS(148), - [anon_sym_u2285] = ACTIONS(148), - [anon_sym_u2208] = ACTIONS(148), - [anon_sym_u2209] = ACTIONS(148), - [anon_sym_u2286] = ACTIONS(148), - [anon_sym_u2282] = ACTIONS(148), - [anon_sym_u2284] = ACTIONS(148), - [anon_sym_AT_AT] = ACTIONS(148), - }, - [428] = { - [ts_builtin_sym_end] = ACTIONS(156), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(156), - [sym_keyword_as] = ACTIONS(156), - [sym_keyword_where] = ACTIONS(156), - [sym_keyword_group] = ACTIONS(156), - [sym_keyword_and] = ACTIONS(156), - [sym_keyword_or] = ACTIONS(156), - [sym_keyword_is] = ACTIONS(156), - [sym_keyword_not] = ACTIONS(158), - [sym_keyword_contains] = ACTIONS(156), - [sym_keyword_contains_not] = ACTIONS(156), - [sym_keyword_contains_all] = ACTIONS(156), - [sym_keyword_contains_any] = ACTIONS(156), - [sym_keyword_contains_none] = ACTIONS(156), - [sym_keyword_inside] = ACTIONS(156), - [sym_keyword_in] = ACTIONS(158), - [sym_keyword_not_inside] = ACTIONS(156), - [sym_keyword_all_inside] = ACTIONS(156), - [sym_keyword_any_inside] = ACTIONS(156), - [sym_keyword_none_inside] = ACTIONS(156), - [sym_keyword_outside] = ACTIONS(156), - [sym_keyword_intersects] = ACTIONS(156), - [sym_keyword_drop] = ACTIONS(156), - [sym_keyword_schemafull] = ACTIONS(156), - [sym_keyword_schemaless] = ACTIONS(156), - [sym_keyword_changefeed] = ACTIONS(156), - [sym_keyword_type] = ACTIONS(156), - [sym_keyword_permissions] = ACTIONS(156), - [sym_keyword_for] = ACTIONS(156), - [sym_keyword_comment] = ACTIONS(156), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(158), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(158), - [anon_sym_LT_PIPE] = ACTIONS(156), - [anon_sym_AMP_AMP] = ACTIONS(156), - [anon_sym_PIPE_PIPE] = ACTIONS(156), - [anon_sym_QMARK_QMARK] = ACTIONS(156), - [anon_sym_QMARK_COLON] = ACTIONS(156), - [anon_sym_BANG_EQ] = ACTIONS(156), - [anon_sym_EQ_EQ] = ACTIONS(156), - [anon_sym_QMARK_EQ] = ACTIONS(156), - [anon_sym_STAR_EQ] = ACTIONS(156), - [anon_sym_TILDE] = ACTIONS(156), - [anon_sym_BANG_TILDE] = ACTIONS(156), - [anon_sym_STAR_TILDE] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(156), - [anon_sym_DASH_EQ] = ACTIONS(156), - [anon_sym_u00d7] = ACTIONS(156), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_u00f7] = ACTIONS(156), - [anon_sym_STAR_STAR] = ACTIONS(156), - [anon_sym_u220b] = ACTIONS(156), - [anon_sym_u220c] = ACTIONS(156), - [anon_sym_u2287] = ACTIONS(156), - [anon_sym_u2283] = ACTIONS(156), - [anon_sym_u2285] = ACTIONS(156), - [anon_sym_u2208] = ACTIONS(156), - [anon_sym_u2209] = ACTIONS(156), - [anon_sym_u2286] = ACTIONS(156), - [anon_sym_u2282] = ACTIONS(156), - [anon_sym_u2284] = ACTIONS(156), - [anon_sym_AT_AT] = ACTIONS(156), - }, - [429] = { - [ts_builtin_sym_end] = ACTIONS(180), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_as] = ACTIONS(180), - [sym_keyword_where] = ACTIONS(180), - [sym_keyword_group] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(180), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [sym_keyword_drop] = ACTIONS(180), - [sym_keyword_schemafull] = ACTIONS(180), - [sym_keyword_schemaless] = ACTIONS(180), - [sym_keyword_changefeed] = ACTIONS(180), - [sym_keyword_type] = ACTIONS(180), - [sym_keyword_permissions] = ACTIONS(180), - [sym_keyword_for] = ACTIONS(180), - [sym_keyword_comment] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), - }, - [430] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_keyword_as] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [431] = { - [sym_operator] = STATE(703), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_value] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_flexible] = ACTIONS(652), - [sym_keyword_readonly] = ACTIONS(652), - [sym_keyword_type] = ACTIONS(652), - [sym_keyword_default] = ACTIONS(652), - [sym_keyword_assert] = ACTIONS(652), - [sym_keyword_permissions] = ACTIONS(652), - [sym_keyword_for] = ACTIONS(652), - [sym_keyword_comment] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), }, - [432] = { - [sym_operator] = STATE(737), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(656), - [sym_keyword_return] = ACTIONS(656), - [sym_keyword_parallel] = ACTIONS(656), - [sym_keyword_timeout] = ACTIONS(656), - [sym_keyword_where] = ACTIONS(656), + [421] = { + [sym_where_clause] = STATE(1124), + [sym_timeout_clause] = STATE(1209), + [sym_parallel_clause] = STATE(1328), + [sym_return_clause] = STATE(1118), + [sym_operator] = STATE(672), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(953), + [ts_builtin_sym_end] = ACTIONS(664), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(664), + [sym_keyword_return] = ACTIONS(403), + [sym_keyword_parallel] = ACTIONS(295), + [sym_keyword_timeout] = ACTIONS(297), + [sym_keyword_where] = ACTIONS(405), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -51632,12 +50897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_content] = ACTIONS(656), - [sym_keyword_merge] = ACTIONS(656), - [sym_keyword_patch] = ACTIONS(656), - [sym_keyword_set] = ACTIONS(656), - [sym_keyword_unset] = ACTIONS(656), - [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(674), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -51677,516 +50937,876 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [433] = { - [sym_operator] = STATE(661), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_as] = ACTIONS(652), - [sym_keyword_group] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_drop] = ACTIONS(652), - [sym_keyword_schemafull] = ACTIONS(652), - [sym_keyword_schemaless] = ACTIONS(652), - [sym_keyword_changefeed] = ACTIONS(652), - [sym_keyword_type] = ACTIONS(652), - [sym_keyword_permissions] = ACTIONS(652), - [sym_keyword_comment] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [422] = { + [sym_operator] = STATE(763), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(660), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(660), + [sym_keyword_explain] = ACTIONS(660), + [sym_keyword_parallel] = ACTIONS(660), + [sym_keyword_timeout] = ACTIONS(660), + [sym_keyword_fetch] = ACTIONS(660), + [sym_keyword_limit] = ACTIONS(660), + [sym_keyword_order] = ACTIONS(660), + [sym_keyword_where] = ACTIONS(660), + [sym_keyword_split] = ACTIONS(660), + [sym_keyword_group] = ACTIONS(660), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(315), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), }, - [434] = { - [ts_builtin_sym_end] = ACTIONS(77), + [423] = { + [ts_builtin_sym_end] = ACTIONS(61), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(77), - [sym_keyword_as] = ACTIONS(77), - [sym_keyword_where] = ACTIONS(77), - [sym_keyword_group] = ACTIONS(77), - [sym_keyword_and] = ACTIONS(77), - [sym_keyword_or] = ACTIONS(77), - [sym_keyword_is] = ACTIONS(77), - [sym_keyword_not] = ACTIONS(79), - [sym_keyword_contains] = ACTIONS(77), - [sym_keyword_contains_not] = ACTIONS(77), - [sym_keyword_contains_all] = ACTIONS(77), - [sym_keyword_contains_any] = ACTIONS(77), - [sym_keyword_contains_none] = ACTIONS(77), - [sym_keyword_inside] = ACTIONS(77), - [sym_keyword_in] = ACTIONS(79), - [sym_keyword_not_inside] = ACTIONS(77), - [sym_keyword_all_inside] = ACTIONS(77), - [sym_keyword_any_inside] = ACTIONS(77), - [sym_keyword_none_inside] = ACTIONS(77), - [sym_keyword_outside] = ACTIONS(77), - [sym_keyword_intersects] = ACTIONS(77), - [sym_keyword_drop] = ACTIONS(77), - [sym_keyword_schemafull] = ACTIONS(77), - [sym_keyword_schemaless] = ACTIONS(77), - [sym_keyword_changefeed] = ACTIONS(77), - [sym_keyword_type] = ACTIONS(77), - [sym_keyword_permissions] = ACTIONS(77), - [sym_keyword_for] = ACTIONS(77), - [sym_keyword_comment] = ACTIONS(77), - [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_EQ] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_AT] = ACTIONS(79), - [anon_sym_LT_PIPE] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_QMARK_QMARK] = ACTIONS(77), - [anon_sym_QMARK_COLON] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_QMARK_EQ] = ACTIONS(77), - [anon_sym_STAR_EQ] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG_TILDE] = ACTIONS(77), - [anon_sym_STAR_TILDE] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_PLUS_EQ] = ACTIONS(77), - [anon_sym_DASH_EQ] = ACTIONS(77), - [anon_sym_u00d7] = ACTIONS(77), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_u00f7] = ACTIONS(77), - [anon_sym_STAR_STAR] = ACTIONS(77), - [anon_sym_u220b] = ACTIONS(77), - [anon_sym_u220c] = ACTIONS(77), - [anon_sym_u2287] = ACTIONS(77), - [anon_sym_u2283] = ACTIONS(77), - [anon_sym_u2285] = ACTIONS(77), - [anon_sym_u2208] = ACTIONS(77), - [anon_sym_u2209] = ACTIONS(77), - [anon_sym_u2286] = ACTIONS(77), - [anon_sym_u2282] = ACTIONS(77), - [anon_sym_u2284] = ACTIONS(77), - [anon_sym_AT_AT] = ACTIONS(77), + [sym_semi_colon] = ACTIONS(61), + [sym_keyword_as] = ACTIONS(61), + [sym_keyword_where] = ACTIONS(61), + [sym_keyword_group] = ACTIONS(61), + [sym_keyword_and] = ACTIONS(61), + [sym_keyword_or] = ACTIONS(61), + [sym_keyword_is] = ACTIONS(61), + [sym_keyword_not] = ACTIONS(63), + [sym_keyword_contains] = ACTIONS(61), + [sym_keyword_contains_not] = ACTIONS(61), + [sym_keyword_contains_all] = ACTIONS(61), + [sym_keyword_contains_any] = ACTIONS(61), + [sym_keyword_contains_none] = ACTIONS(61), + [sym_keyword_inside] = ACTIONS(61), + [sym_keyword_in] = ACTIONS(63), + [sym_keyword_not_inside] = ACTIONS(61), + [sym_keyword_all_inside] = ACTIONS(61), + [sym_keyword_any_inside] = ACTIONS(61), + [sym_keyword_none_inside] = ACTIONS(61), + [sym_keyword_outside] = ACTIONS(61), + [sym_keyword_intersects] = ACTIONS(61), + [sym_keyword_drop] = ACTIONS(61), + [sym_keyword_schemafull] = ACTIONS(61), + [sym_keyword_schemaless] = ACTIONS(61), + [sym_keyword_changefeed] = ACTIONS(61), + [sym_keyword_type] = ACTIONS(61), + [sym_keyword_permissions] = ACTIONS(61), + [sym_keyword_for] = ACTIONS(61), + [sym_keyword_comment] = ACTIONS(61), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_LT_PIPE] = ACTIONS(61), + [anon_sym_AMP_AMP] = ACTIONS(61), + [anon_sym_PIPE_PIPE] = ACTIONS(61), + [anon_sym_QMARK_QMARK] = ACTIONS(61), + [anon_sym_QMARK_COLON] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(61), + [anon_sym_EQ_EQ] = ACTIONS(61), + [anon_sym_QMARK_EQ] = ACTIONS(61), + [anon_sym_STAR_EQ] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_BANG_TILDE] = ACTIONS(61), + [anon_sym_STAR_TILDE] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(61), + [anon_sym_GT_EQ] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_PLUS_EQ] = ACTIONS(61), + [anon_sym_DASH_EQ] = ACTIONS(61), + [anon_sym_u00d7] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_u00f7] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(61), + [anon_sym_u220b] = ACTIONS(61), + [anon_sym_u220c] = ACTIONS(61), + [anon_sym_u2287] = ACTIONS(61), + [anon_sym_u2283] = ACTIONS(61), + [anon_sym_u2285] = ACTIONS(61), + [anon_sym_u2208] = ACTIONS(61), + [anon_sym_u2209] = ACTIONS(61), + [anon_sym_u2286] = ACTIONS(61), + [anon_sym_u2282] = ACTIONS(61), + [anon_sym_u2284] = ACTIONS(61), + [anon_sym_AT_AT] = ACTIONS(61), }, - [435] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), + [424] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_keyword_as] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [425] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), [sym_comment] = ACTIONS(3), - [sym_keyword_as] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [sym_keyword_as] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_RPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [436] = { - [ts_builtin_sym_end] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(233), - [sym_keyword_as] = ACTIONS(233), - [sym_keyword_where] = ACTIONS(233), - [sym_keyword_group] = ACTIONS(233), - [sym_keyword_and] = ACTIONS(233), - [sym_keyword_or] = ACTIONS(233), - [sym_keyword_is] = ACTIONS(233), - [sym_keyword_not] = ACTIONS(235), - [sym_keyword_contains] = ACTIONS(233), - [sym_keyword_contains_not] = ACTIONS(233), - [sym_keyword_contains_all] = ACTIONS(233), - [sym_keyword_contains_any] = ACTIONS(233), - [sym_keyword_contains_none] = ACTIONS(233), - [sym_keyword_inside] = ACTIONS(233), - [sym_keyword_in] = ACTIONS(235), - [sym_keyword_not_inside] = ACTIONS(233), - [sym_keyword_all_inside] = ACTIONS(233), - [sym_keyword_any_inside] = ACTIONS(233), - [sym_keyword_none_inside] = ACTIONS(233), - [sym_keyword_outside] = ACTIONS(233), - [sym_keyword_intersects] = ACTIONS(233), - [sym_keyword_drop] = ACTIONS(233), - [sym_keyword_schemafull] = ACTIONS(233), - [sym_keyword_schemaless] = ACTIONS(233), - [sym_keyword_changefeed] = ACTIONS(233), - [sym_keyword_type] = ACTIONS(233), - [sym_keyword_permissions] = ACTIONS(233), - [sym_keyword_for] = ACTIONS(233), - [sym_keyword_comment] = ACTIONS(233), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(235), - [anon_sym_LT_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_QMARK_QMARK] = ACTIONS(233), - [anon_sym_QMARK_COLON] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_QMARK_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_TILDE] = ACTIONS(233), - [anon_sym_BANG_TILDE] = ACTIONS(233), - [anon_sym_STAR_TILDE] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_u00d7] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(235), - [anon_sym_u00f7] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_u220b] = ACTIONS(233), - [anon_sym_u220c] = ACTIONS(233), - [anon_sym_u2287] = ACTIONS(233), - [anon_sym_u2283] = ACTIONS(233), - [anon_sym_u2285] = ACTIONS(233), - [anon_sym_u2208] = ACTIONS(233), - [anon_sym_u2209] = ACTIONS(233), - [anon_sym_u2286] = ACTIONS(233), - [anon_sym_u2282] = ACTIONS(233), - [anon_sym_u2284] = ACTIONS(233), - [anon_sym_AT_AT] = ACTIONS(233), + [426] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), + [sym_comment] = ACTIONS(3), + [sym_keyword_from] = ACTIONS(202), + [sym_keyword_as] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [437] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(50), - [ts_builtin_sym_end] = ACTIONS(160), + [427] = { + [sym_operator] = STATE(726), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(160), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_COMMA] = ACTIONS(160), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_as] = ACTIONS(644), + [sym_keyword_group] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_drop] = ACTIONS(644), + [sym_keyword_schemafull] = ACTIONS(644), + [sym_keyword_schemaless] = ACTIONS(644), + [sym_keyword_changefeed] = ACTIONS(644), + [sym_keyword_type] = ACTIONS(644), + [sym_keyword_permissions] = ACTIONS(644), + [sym_keyword_comment] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [428] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(349), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [429] = { + [sym_operator] = STATE(717), + [sym_binary_operator] = STATE(779), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_value] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_flexible] = ACTIONS(644), + [sym_keyword_readonly] = ACTIONS(644), + [sym_keyword_type] = ACTIONS(644), + [sym_keyword_default] = ACTIONS(644), + [sym_keyword_assert] = ACTIONS(644), + [sym_keyword_permissions] = ACTIONS(644), + [sym_keyword_for] = ACTIONS(644), + [sym_keyword_comment] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [430] = { + [ts_builtin_sym_end] = ACTIONS(148), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(148), + [sym_keyword_as] = ACTIONS(148), + [sym_keyword_where] = ACTIONS(148), + [sym_keyword_group] = ACTIONS(148), + [sym_keyword_and] = ACTIONS(148), + [sym_keyword_or] = ACTIONS(148), + [sym_keyword_is] = ACTIONS(148), + [sym_keyword_not] = ACTIONS(150), + [sym_keyword_contains] = ACTIONS(148), + [sym_keyword_contains_not] = ACTIONS(148), + [sym_keyword_contains_all] = ACTIONS(148), + [sym_keyword_contains_any] = ACTIONS(148), + [sym_keyword_contains_none] = ACTIONS(148), + [sym_keyword_inside] = ACTIONS(148), + [sym_keyword_in] = ACTIONS(150), + [sym_keyword_not_inside] = ACTIONS(148), + [sym_keyword_all_inside] = ACTIONS(148), + [sym_keyword_any_inside] = ACTIONS(148), + [sym_keyword_none_inside] = ACTIONS(148), + [sym_keyword_outside] = ACTIONS(148), + [sym_keyword_intersects] = ACTIONS(148), + [sym_keyword_drop] = ACTIONS(148), + [sym_keyword_schemafull] = ACTIONS(148), + [sym_keyword_schemaless] = ACTIONS(148), + [sym_keyword_changefeed] = ACTIONS(148), + [sym_keyword_type] = ACTIONS(148), + [sym_keyword_permissions] = ACTIONS(148), + [sym_keyword_for] = ACTIONS(148), + [sym_keyword_comment] = ACTIONS(148), + [anon_sym_COMMA] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_LT] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(150), + [anon_sym_EQ] = ACTIONS(150), + [anon_sym_DASH] = ACTIONS(150), + [anon_sym_AT] = ACTIONS(150), + [anon_sym_LT_PIPE] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [anon_sym_QMARK_QMARK] = ACTIONS(148), + [anon_sym_QMARK_COLON] = ACTIONS(148), + [anon_sym_BANG_EQ] = ACTIONS(148), + [anon_sym_EQ_EQ] = ACTIONS(148), + [anon_sym_QMARK_EQ] = ACTIONS(148), + [anon_sym_STAR_EQ] = ACTIONS(148), + [anon_sym_TILDE] = ACTIONS(148), + [anon_sym_BANG_TILDE] = ACTIONS(148), + [anon_sym_STAR_TILDE] = ACTIONS(148), + [anon_sym_LT_EQ] = ACTIONS(148), + [anon_sym_GT_EQ] = ACTIONS(148), + [anon_sym_PLUS] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(148), + [anon_sym_DASH_EQ] = ACTIONS(148), + [anon_sym_u00d7] = ACTIONS(148), + [anon_sym_SLASH] = ACTIONS(150), + [anon_sym_u00f7] = ACTIONS(148), + [anon_sym_STAR_STAR] = ACTIONS(148), + [anon_sym_u220b] = ACTIONS(148), + [anon_sym_u220c] = ACTIONS(148), + [anon_sym_u2287] = ACTIONS(148), + [anon_sym_u2283] = ACTIONS(148), + [anon_sym_u2285] = ACTIONS(148), + [anon_sym_u2208] = ACTIONS(148), + [anon_sym_u2209] = ACTIONS(148), + [anon_sym_u2286] = ACTIONS(148), + [anon_sym_u2282] = ACTIONS(148), + [anon_sym_u2284] = ACTIONS(148), + [anon_sym_AT_AT] = ACTIONS(148), }, - [438] = { - [sym_operator] = STATE(675), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_as] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_drop] = ACTIONS(652), - [sym_keyword_schemafull] = ACTIONS(652), - [sym_keyword_schemaless] = ACTIONS(652), - [sym_keyword_changefeed] = ACTIONS(652), - [sym_keyword_type] = ACTIONS(652), - [sym_keyword_permissions] = ACTIONS(652), - [sym_keyword_for] = ACTIONS(652), - [sym_keyword_comment] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [431] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_keyword_from] = ACTIONS(351), + [sym_keyword_as] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(349), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, - [439] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), + [432] = { + [sym_where_clause] = STATE(1146), + [sym_timeout_clause] = STATE(1247), + [sym_parallel_clause] = STATE(1423), + [sym_return_clause] = STATE(1145), + [sym_operator] = STATE(672), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(984), + [ts_builtin_sym_end] = ACTIONS(670), [sym_comment] = ACTIONS(3), - [sym_keyword_as] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(670), + [sym_keyword_return] = ACTIONS(403), + [sym_keyword_parallel] = ACTIONS(295), + [sym_keyword_timeout] = ACTIONS(297), + [sym_keyword_where] = ACTIONS(405), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(313), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), }, - [440] = { - [sym_operator] = STATE(703), - [sym_binary_operator] = STATE(783), + [433] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(241), + [sym_keyword_explain] = ACTIONS(241), + [sym_keyword_parallel] = ACTIONS(241), + [sym_keyword_timeout] = ACTIONS(241), + [sym_keyword_fetch] = ACTIONS(241), + [sym_keyword_limit] = ACTIONS(241), + [sym_keyword_order] = ACTIONS(241), + [sym_keyword_with] = ACTIONS(241), + [sym_keyword_where] = ACTIONS(241), + [sym_keyword_split] = ACTIONS(241), + [sym_keyword_group] = ACTIONS(241), + [sym_keyword_and] = ACTIONS(241), + [sym_keyword_or] = ACTIONS(243), + [sym_keyword_is] = ACTIONS(241), + [sym_keyword_not] = ACTIONS(243), + [sym_keyword_contains] = ACTIONS(241), + [sym_keyword_contains_not] = ACTIONS(241), + [sym_keyword_contains_all] = ACTIONS(241), + [sym_keyword_contains_any] = ACTIONS(241), + [sym_keyword_contains_none] = ACTIONS(241), + [sym_keyword_inside] = ACTIONS(241), + [sym_keyword_in] = ACTIONS(243), + [sym_keyword_not_inside] = ACTIONS(241), + [sym_keyword_all_inside] = ACTIONS(241), + [sym_keyword_any_inside] = ACTIONS(241), + [sym_keyword_none_inside] = ACTIONS(241), + [sym_keyword_outside] = ACTIONS(241), + [sym_keyword_intersects] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(243), + [anon_sym_LT_PIPE] = ACTIONS(241), + [anon_sym_AMP_AMP] = ACTIONS(241), + [anon_sym_PIPE_PIPE] = ACTIONS(241), + [anon_sym_QMARK_QMARK] = ACTIONS(241), + [anon_sym_QMARK_COLON] = ACTIONS(241), + [anon_sym_BANG_EQ] = ACTIONS(241), + [anon_sym_EQ_EQ] = ACTIONS(241), + [anon_sym_QMARK_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_BANG_TILDE] = ACTIONS(241), + [anon_sym_STAR_TILDE] = ACTIONS(241), + [anon_sym_LT_EQ] = ACTIONS(241), + [anon_sym_GT_EQ] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_u00d7] = ACTIONS(241), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_u00f7] = ACTIONS(241), + [anon_sym_STAR_STAR] = ACTIONS(241), + [anon_sym_u220b] = ACTIONS(241), + [anon_sym_u220c] = ACTIONS(241), + [anon_sym_u2287] = ACTIONS(241), + [anon_sym_u2283] = ACTIONS(241), + [anon_sym_u2285] = ACTIONS(241), + [anon_sym_u2208] = ACTIONS(241), + [anon_sym_u2209] = ACTIONS(241), + [anon_sym_u2286] = ACTIONS(241), + [anon_sym_u2282] = ACTIONS(241), + [anon_sym_u2284] = ACTIONS(241), + [anon_sym_AT_AT] = ACTIONS(241), + }, + [434] = { + [sym_operator] = STATE(732), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(672), - [sym_keyword_value] = ACTIONS(672), + [sym_keyword_as] = ACTIONS(672), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -52204,11 +51824,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_flexible] = ACTIONS(672), - [sym_keyword_readonly] = ACTIONS(672), + [sym_keyword_drop] = ACTIONS(672), + [sym_keyword_schemafull] = ACTIONS(672), + [sym_keyword_schemaless] = ACTIONS(672), + [sym_keyword_changefeed] = ACTIONS(672), [sym_keyword_type] = ACTIONS(672), - [sym_keyword_default] = ACTIONS(672), - [sym_keyword_assert] = ACTIONS(672), [sym_keyword_permissions] = ACTIONS(672), [sym_keyword_for] = ACTIONS(672), [sym_keyword_comment] = ACTIONS(672), @@ -52253,444 +51873,588 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [441] = { + [435] = { + [sym_operator] = STATE(732), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(237), - [sym_keyword_explain] = ACTIONS(237), - [sym_keyword_parallel] = ACTIONS(237), - [sym_keyword_timeout] = ACTIONS(237), - [sym_keyword_fetch] = ACTIONS(237), - [sym_keyword_limit] = ACTIONS(237), - [sym_keyword_order] = ACTIONS(237), - [sym_keyword_with] = ACTIONS(237), - [sym_keyword_where] = ACTIONS(237), - [sym_keyword_split] = ACTIONS(237), - [sym_keyword_group] = ACTIONS(237), - [sym_keyword_and] = ACTIONS(237), - [sym_keyword_or] = ACTIONS(239), - [sym_keyword_is] = ACTIONS(237), - [sym_keyword_not] = ACTIONS(239), - [sym_keyword_contains] = ACTIONS(237), - [sym_keyword_contains_not] = ACTIONS(237), - [sym_keyword_contains_all] = ACTIONS(237), - [sym_keyword_contains_any] = ACTIONS(237), - [sym_keyword_contains_none] = ACTIONS(237), - [sym_keyword_inside] = ACTIONS(237), - [sym_keyword_in] = ACTIONS(239), - [sym_keyword_not_inside] = ACTIONS(237), - [sym_keyword_all_inside] = ACTIONS(237), - [sym_keyword_any_inside] = ACTIONS(237), - [sym_keyword_none_inside] = ACTIONS(237), - [sym_keyword_outside] = ACTIONS(237), - [sym_keyword_intersects] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_LT_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_QMARK_QMARK] = ACTIONS(237), - [anon_sym_QMARK_COLON] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_QMARK_EQ] = ACTIONS(237), - [anon_sym_STAR_EQ] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG_TILDE] = ACTIONS(237), - [anon_sym_STAR_TILDE] = ACTIONS(237), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(237), - [anon_sym_DASH_EQ] = ACTIONS(237), - [anon_sym_u00d7] = ACTIONS(237), - [anon_sym_SLASH] = ACTIONS(239), - [anon_sym_u00f7] = ACTIONS(237), - [anon_sym_STAR_STAR] = ACTIONS(237), - [anon_sym_u220b] = ACTIONS(237), - [anon_sym_u220c] = ACTIONS(237), - [anon_sym_u2287] = ACTIONS(237), - [anon_sym_u2283] = ACTIONS(237), - [anon_sym_u2285] = ACTIONS(237), - [anon_sym_u2208] = ACTIONS(237), - [anon_sym_u2209] = ACTIONS(237), - [anon_sym_u2286] = ACTIONS(237), - [anon_sym_u2282] = ACTIONS(237), - [anon_sym_u2284] = ACTIONS(237), - [anon_sym_AT_AT] = ACTIONS(237), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_as] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_drop] = ACTIONS(644), + [sym_keyword_schemafull] = ACTIONS(644), + [sym_keyword_schemaless] = ACTIONS(644), + [sym_keyword_changefeed] = ACTIONS(644), + [sym_keyword_type] = ACTIONS(644), + [sym_keyword_permissions] = ACTIONS(644), + [sym_keyword_for] = ACTIONS(644), + [sym_keyword_comment] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), }, - [442] = { - [sym_operator] = STATE(737), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_return] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_where] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_content] = ACTIONS(652), - [sym_keyword_merge] = ACTIONS(652), - [sym_keyword_patch] = ACTIONS(652), - [sym_keyword_set] = ACTIONS(652), - [sym_keyword_unset] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [436] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(200), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(200), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(200), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, - [443] = { + [437] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(249), - [sym_keyword_explain] = ACTIONS(249), - [sym_keyword_parallel] = ACTIONS(249), - [sym_keyword_timeout] = ACTIONS(249), - [sym_keyword_fetch] = ACTIONS(249), - [sym_keyword_limit] = ACTIONS(249), - [sym_keyword_order] = ACTIONS(249), - [sym_keyword_with] = ACTIONS(249), - [sym_keyword_where] = ACTIONS(249), - [sym_keyword_split] = ACTIONS(249), - [sym_keyword_group] = ACTIONS(249), - [sym_keyword_and] = ACTIONS(249), - [sym_keyword_or] = ACTIONS(251), - [sym_keyword_is] = ACTIONS(249), - [sym_keyword_not] = ACTIONS(251), - [sym_keyword_contains] = ACTIONS(249), - [sym_keyword_contains_not] = ACTIONS(249), - [sym_keyword_contains_all] = ACTIONS(249), - [sym_keyword_contains_any] = ACTIONS(249), - [sym_keyword_contains_none] = ACTIONS(249), - [sym_keyword_inside] = ACTIONS(249), - [sym_keyword_in] = ACTIONS(251), - [sym_keyword_not_inside] = ACTIONS(249), - [sym_keyword_all_inside] = ACTIONS(249), - [sym_keyword_any_inside] = ACTIONS(249), - [sym_keyword_none_inside] = ACTIONS(249), - [sym_keyword_outside] = ACTIONS(249), - [sym_keyword_intersects] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_RBRACE] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(251), - [anon_sym_LT_PIPE] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_QMARK_QMARK] = ACTIONS(249), - [anon_sym_QMARK_COLON] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_QMARK_EQ] = ACTIONS(249), - [anon_sym_STAR_EQ] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG_TILDE] = ACTIONS(249), - [anon_sym_STAR_TILDE] = ACTIONS(249), - [anon_sym_LT_EQ] = ACTIONS(249), - [anon_sym_GT_EQ] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_PLUS_EQ] = ACTIONS(249), - [anon_sym_DASH_EQ] = ACTIONS(249), - [anon_sym_u00d7] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(251), - [anon_sym_u00f7] = ACTIONS(249), - [anon_sym_STAR_STAR] = ACTIONS(249), - [anon_sym_u220b] = ACTIONS(249), - [anon_sym_u220c] = ACTIONS(249), - [anon_sym_u2287] = ACTIONS(249), - [anon_sym_u2283] = ACTIONS(249), - [anon_sym_u2285] = ACTIONS(249), - [anon_sym_u2208] = ACTIONS(249), - [anon_sym_u2209] = ACTIONS(249), - [anon_sym_u2286] = ACTIONS(249), - [anon_sym_u2282] = ACTIONS(249), - [anon_sym_u2284] = ACTIONS(249), - [anon_sym_AT_AT] = ACTIONS(249), + [sym_semi_colon] = ACTIONS(221), + [sym_keyword_explain] = ACTIONS(221), + [sym_keyword_parallel] = ACTIONS(221), + [sym_keyword_timeout] = ACTIONS(221), + [sym_keyword_fetch] = ACTIONS(221), + [sym_keyword_limit] = ACTIONS(221), + [sym_keyword_order] = ACTIONS(221), + [sym_keyword_with] = ACTIONS(221), + [sym_keyword_where] = ACTIONS(221), + [sym_keyword_split] = ACTIONS(221), + [sym_keyword_group] = ACTIONS(221), + [sym_keyword_and] = ACTIONS(221), + [sym_keyword_or] = ACTIONS(223), + [sym_keyword_is] = ACTIONS(221), + [sym_keyword_not] = ACTIONS(223), + [sym_keyword_contains] = ACTIONS(221), + [sym_keyword_contains_not] = ACTIONS(221), + [sym_keyword_contains_all] = ACTIONS(221), + [sym_keyword_contains_any] = ACTIONS(221), + [sym_keyword_contains_none] = ACTIONS(221), + [sym_keyword_inside] = ACTIONS(221), + [sym_keyword_in] = ACTIONS(223), + [sym_keyword_not_inside] = ACTIONS(221), + [sym_keyword_all_inside] = ACTIONS(221), + [sym_keyword_any_inside] = ACTIONS(221), + [sym_keyword_none_inside] = ACTIONS(221), + [sym_keyword_outside] = ACTIONS(221), + [sym_keyword_intersects] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(221), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(223), + [anon_sym_GT] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_LT_PIPE] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_QMARK_QMARK] = ACTIONS(221), + [anon_sym_QMARK_COLON] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_QMARK_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(221), + [anon_sym_BANG_TILDE] = ACTIONS(221), + [anon_sym_STAR_TILDE] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_u00d7] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(223), + [anon_sym_u00f7] = ACTIONS(221), + [anon_sym_STAR_STAR] = ACTIONS(221), + [anon_sym_u220b] = ACTIONS(221), + [anon_sym_u220c] = ACTIONS(221), + [anon_sym_u2287] = ACTIONS(221), + [anon_sym_u2283] = ACTIONS(221), + [anon_sym_u2285] = ACTIONS(221), + [anon_sym_u2208] = ACTIONS(221), + [anon_sym_u2209] = ACTIONS(221), + [anon_sym_u2286] = ACTIONS(221), + [anon_sym_u2282] = ACTIONS(221), + [anon_sym_u2284] = ACTIONS(221), + [anon_sym_AT_AT] = ACTIONS(221), }, - [444] = { + [438] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_explain] = ACTIONS(180), - [sym_keyword_parallel] = ACTIONS(180), - [sym_keyword_timeout] = ACTIONS(180), - [sym_keyword_fetch] = ACTIONS(180), - [sym_keyword_limit] = ACTIONS(180), - [sym_keyword_order] = ACTIONS(180), - [sym_keyword_with] = ACTIONS(180), - [sym_keyword_where] = ACTIONS(180), - [sym_keyword_split] = ACTIONS(180), - [sym_keyword_group] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(182), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_RPAREN] = ACTIONS(180), - [anon_sym_RBRACE] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), + [sym_keyword_as] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_RPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [445] = { - [ts_builtin_sym_end] = ACTIONS(249), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(249), - [sym_keyword_as] = ACTIONS(249), - [sym_keyword_where] = ACTIONS(249), - [sym_keyword_group] = ACTIONS(249), - [sym_keyword_and] = ACTIONS(249), - [sym_keyword_or] = ACTIONS(249), - [sym_keyword_is] = ACTIONS(249), - [sym_keyword_not] = ACTIONS(251), - [sym_keyword_contains] = ACTIONS(249), - [sym_keyword_contains_not] = ACTIONS(249), - [sym_keyword_contains_all] = ACTIONS(249), - [sym_keyword_contains_any] = ACTIONS(249), - [sym_keyword_contains_none] = ACTIONS(249), - [sym_keyword_inside] = ACTIONS(249), - [sym_keyword_in] = ACTIONS(251), - [sym_keyword_not_inside] = ACTIONS(249), - [sym_keyword_all_inside] = ACTIONS(249), - [sym_keyword_any_inside] = ACTIONS(249), - [sym_keyword_none_inside] = ACTIONS(249), - [sym_keyword_outside] = ACTIONS(249), - [sym_keyword_intersects] = ACTIONS(249), - [sym_keyword_drop] = ACTIONS(249), - [sym_keyword_schemafull] = ACTIONS(249), - [sym_keyword_schemaless] = ACTIONS(249), - [sym_keyword_changefeed] = ACTIONS(249), - [sym_keyword_type] = ACTIONS(249), - [sym_keyword_permissions] = ACTIONS(249), - [sym_keyword_for] = ACTIONS(249), - [sym_keyword_comment] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(251), - [anon_sym_LT_PIPE] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_QMARK_QMARK] = ACTIONS(249), - [anon_sym_QMARK_COLON] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_QMARK_EQ] = ACTIONS(249), - [anon_sym_STAR_EQ] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG_TILDE] = ACTIONS(249), - [anon_sym_STAR_TILDE] = ACTIONS(249), - [anon_sym_LT_EQ] = ACTIONS(249), - [anon_sym_GT_EQ] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_PLUS_EQ] = ACTIONS(249), - [anon_sym_DASH_EQ] = ACTIONS(249), - [anon_sym_u00d7] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(251), - [anon_sym_u00f7] = ACTIONS(249), - [anon_sym_STAR_STAR] = ACTIONS(249), - [anon_sym_u220b] = ACTIONS(249), - [anon_sym_u220c] = ACTIONS(249), - [anon_sym_u2287] = ACTIONS(249), - [anon_sym_u2283] = ACTIONS(249), - [anon_sym_u2285] = ACTIONS(249), - [anon_sym_u2208] = ACTIONS(249), - [anon_sym_u2209] = ACTIONS(249), - [anon_sym_u2286] = ACTIONS(249), - [anon_sym_u2282] = ACTIONS(249), - [anon_sym_u2284] = ACTIONS(249), - [anon_sym_AT_AT] = ACTIONS(249), + [439] = { + [sym_array] = STATE(41), + [sym_object] = STATE(41), + [sym_record_id_value] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(140), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(140), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(426), + [sym_record_id_ident] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [446] = { - [ts_builtin_sym_end] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(237), - [sym_keyword_as] = ACTIONS(237), - [sym_keyword_where] = ACTIONS(237), - [sym_keyword_group] = ACTIONS(237), - [sym_keyword_and] = ACTIONS(237), - [sym_keyword_or] = ACTIONS(237), - [sym_keyword_is] = ACTIONS(237), - [sym_keyword_not] = ACTIONS(239), - [sym_keyword_contains] = ACTIONS(237), - [sym_keyword_contains_not] = ACTIONS(237), - [sym_keyword_contains_all] = ACTIONS(237), - [sym_keyword_contains_any] = ACTIONS(237), - [sym_keyword_contains_none] = ACTIONS(237), - [sym_keyword_inside] = ACTIONS(237), - [sym_keyword_in] = ACTIONS(239), - [sym_keyword_not_inside] = ACTIONS(237), - [sym_keyword_all_inside] = ACTIONS(237), - [sym_keyword_any_inside] = ACTIONS(237), - [sym_keyword_none_inside] = ACTIONS(237), - [sym_keyword_outside] = ACTIONS(237), - [sym_keyword_intersects] = ACTIONS(237), - [sym_keyword_drop] = ACTIONS(237), - [sym_keyword_schemafull] = ACTIONS(237), - [sym_keyword_schemaless] = ACTIONS(237), - [sym_keyword_changefeed] = ACTIONS(237), - [sym_keyword_type] = ACTIONS(237), - [sym_keyword_permissions] = ACTIONS(237), - [sym_keyword_for] = ACTIONS(237), - [sym_keyword_comment] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_LT_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_QMARK_QMARK] = ACTIONS(237), - [anon_sym_QMARK_COLON] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_QMARK_EQ] = ACTIONS(237), - [anon_sym_STAR_EQ] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG_TILDE] = ACTIONS(237), - [anon_sym_STAR_TILDE] = ACTIONS(237), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(237), - [anon_sym_DASH_EQ] = ACTIONS(237), - [anon_sym_u00d7] = ACTIONS(237), - [anon_sym_SLASH] = ACTIONS(239), - [anon_sym_u00f7] = ACTIONS(237), - [anon_sym_STAR_STAR] = ACTIONS(237), - [anon_sym_u220b] = ACTIONS(237), - [anon_sym_u220c] = ACTIONS(237), - [anon_sym_u2287] = ACTIONS(237), - [anon_sym_u2283] = ACTIONS(237), - [anon_sym_u2285] = ACTIONS(237), - [anon_sym_u2208] = ACTIONS(237), - [anon_sym_u2209] = ACTIONS(237), - [anon_sym_u2286] = ACTIONS(237), - [anon_sym_u2282] = ACTIONS(237), - [anon_sym_u2284] = ACTIONS(237), - [anon_sym_AT_AT] = ACTIONS(237), + [440] = { + [ts_builtin_sym_end] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(229), + [sym_keyword_as] = ACTIONS(229), + [sym_keyword_where] = ACTIONS(229), + [sym_keyword_group] = ACTIONS(229), + [sym_keyword_and] = ACTIONS(229), + [sym_keyword_or] = ACTIONS(229), + [sym_keyword_is] = ACTIONS(229), + [sym_keyword_not] = ACTIONS(231), + [sym_keyword_contains] = ACTIONS(229), + [sym_keyword_contains_not] = ACTIONS(229), + [sym_keyword_contains_all] = ACTIONS(229), + [sym_keyword_contains_any] = ACTIONS(229), + [sym_keyword_contains_none] = ACTIONS(229), + [sym_keyword_inside] = ACTIONS(229), + [sym_keyword_in] = ACTIONS(231), + [sym_keyword_not_inside] = ACTIONS(229), + [sym_keyword_all_inside] = ACTIONS(229), + [sym_keyword_any_inside] = ACTIONS(229), + [sym_keyword_none_inside] = ACTIONS(229), + [sym_keyword_outside] = ACTIONS(229), + [sym_keyword_intersects] = ACTIONS(229), + [sym_keyword_drop] = ACTIONS(229), + [sym_keyword_schemafull] = ACTIONS(229), + [sym_keyword_schemaless] = ACTIONS(229), + [sym_keyword_changefeed] = ACTIONS(229), + [sym_keyword_type] = ACTIONS(229), + [sym_keyword_permissions] = ACTIONS(229), + [sym_keyword_for] = ACTIONS(229), + [sym_keyword_comment] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_PIPE] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_QMARK_QMARK] = ACTIONS(229), + [anon_sym_QMARK_COLON] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(229), + [anon_sym_EQ_EQ] = ACTIONS(229), + [anon_sym_QMARK_EQ] = ACTIONS(229), + [anon_sym_STAR_EQ] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(229), + [anon_sym_BANG_TILDE] = ACTIONS(229), + [anon_sym_STAR_TILDE] = ACTIONS(229), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_GT_EQ] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_PLUS_EQ] = ACTIONS(229), + [anon_sym_DASH_EQ] = ACTIONS(229), + [anon_sym_u00d7] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_u00f7] = ACTIONS(229), + [anon_sym_STAR_STAR] = ACTIONS(229), + [anon_sym_u220b] = ACTIONS(229), + [anon_sym_u220c] = ACTIONS(229), + [anon_sym_u2287] = ACTIONS(229), + [anon_sym_u2283] = ACTIONS(229), + [anon_sym_u2285] = ACTIONS(229), + [anon_sym_u2208] = ACTIONS(229), + [anon_sym_u2209] = ACTIONS(229), + [anon_sym_u2286] = ACTIONS(229), + [anon_sym_u2282] = ACTIONS(229), + [anon_sym_u2284] = ACTIONS(229), + [anon_sym_AT_AT] = ACTIONS(229), + }, + [441] = { + [ts_builtin_sym_end] = ACTIONS(188), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(188), + [sym_keyword_as] = ACTIONS(188), + [sym_keyword_where] = ACTIONS(188), + [sym_keyword_group] = ACTIONS(188), + [sym_keyword_and] = ACTIONS(188), + [sym_keyword_or] = ACTIONS(188), + [sym_keyword_is] = ACTIONS(188), + [sym_keyword_not] = ACTIONS(190), + [sym_keyword_contains] = ACTIONS(188), + [sym_keyword_contains_not] = ACTIONS(188), + [sym_keyword_contains_all] = ACTIONS(188), + [sym_keyword_contains_any] = ACTIONS(188), + [sym_keyword_contains_none] = ACTIONS(188), + [sym_keyword_inside] = ACTIONS(188), + [sym_keyword_in] = ACTIONS(190), + [sym_keyword_not_inside] = ACTIONS(188), + [sym_keyword_all_inside] = ACTIONS(188), + [sym_keyword_any_inside] = ACTIONS(188), + [sym_keyword_none_inside] = ACTIONS(188), + [sym_keyword_outside] = ACTIONS(188), + [sym_keyword_intersects] = ACTIONS(188), + [sym_keyword_drop] = ACTIONS(188), + [sym_keyword_schemafull] = ACTIONS(188), + [sym_keyword_schemaless] = ACTIONS(188), + [sym_keyword_changefeed] = ACTIONS(188), + [sym_keyword_type] = ACTIONS(188), + [sym_keyword_permissions] = ACTIONS(188), + [sym_keyword_for] = ACTIONS(188), + [sym_keyword_comment] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_LT_PIPE] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_QMARK_QMARK] = ACTIONS(188), + [anon_sym_QMARK_COLON] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_QMARK_EQ] = ACTIONS(188), + [anon_sym_STAR_EQ] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_BANG_TILDE] = ACTIONS(188), + [anon_sym_STAR_TILDE] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_u00d7] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_u00f7] = ACTIONS(188), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_u220b] = ACTIONS(188), + [anon_sym_u220c] = ACTIONS(188), + [anon_sym_u2287] = ACTIONS(188), + [anon_sym_u2283] = ACTIONS(188), + [anon_sym_u2285] = ACTIONS(188), + [anon_sym_u2208] = ACTIONS(188), + [anon_sym_u2209] = ACTIONS(188), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), + }, + [442] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(61), + [sym_keyword_explain] = ACTIONS(61), + [sym_keyword_parallel] = ACTIONS(61), + [sym_keyword_timeout] = ACTIONS(61), + [sym_keyword_fetch] = ACTIONS(61), + [sym_keyword_limit] = ACTIONS(61), + [sym_keyword_order] = ACTIONS(61), + [sym_keyword_with] = ACTIONS(61), + [sym_keyword_where] = ACTIONS(61), + [sym_keyword_split] = ACTIONS(61), + [sym_keyword_group] = ACTIONS(61), + [sym_keyword_and] = ACTIONS(61), + [sym_keyword_or] = ACTIONS(63), + [sym_keyword_is] = ACTIONS(61), + [sym_keyword_not] = ACTIONS(63), + [sym_keyword_contains] = ACTIONS(61), + [sym_keyword_contains_not] = ACTIONS(61), + [sym_keyword_contains_all] = ACTIONS(61), + [sym_keyword_contains_any] = ACTIONS(61), + [sym_keyword_contains_none] = ACTIONS(61), + [sym_keyword_inside] = ACTIONS(61), + [sym_keyword_in] = ACTIONS(63), + [sym_keyword_not_inside] = ACTIONS(61), + [sym_keyword_all_inside] = ACTIONS(61), + [sym_keyword_any_inside] = ACTIONS(61), + [sym_keyword_none_inside] = ACTIONS(61), + [sym_keyword_outside] = ACTIONS(61), + [sym_keyword_intersects] = ACTIONS(61), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(61), + [anon_sym_RBRACE] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_LT_PIPE] = ACTIONS(61), + [anon_sym_AMP_AMP] = ACTIONS(61), + [anon_sym_PIPE_PIPE] = ACTIONS(61), + [anon_sym_QMARK_QMARK] = ACTIONS(61), + [anon_sym_QMARK_COLON] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(61), + [anon_sym_EQ_EQ] = ACTIONS(61), + [anon_sym_QMARK_EQ] = ACTIONS(61), + [anon_sym_STAR_EQ] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_BANG_TILDE] = ACTIONS(61), + [anon_sym_STAR_TILDE] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(61), + [anon_sym_GT_EQ] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_PLUS_EQ] = ACTIONS(61), + [anon_sym_DASH_EQ] = ACTIONS(61), + [anon_sym_u00d7] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_u00f7] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(61), + [anon_sym_u220b] = ACTIONS(61), + [anon_sym_u220c] = ACTIONS(61), + [anon_sym_u2287] = ACTIONS(61), + [anon_sym_u2283] = ACTIONS(61), + [anon_sym_u2285] = ACTIONS(61), + [anon_sym_u2208] = ACTIONS(61), + [anon_sym_u2209] = ACTIONS(61), + [anon_sym_u2286] = ACTIONS(61), + [anon_sym_u2282] = ACTIONS(61), + [anon_sym_u2284] = ACTIONS(61), + [anon_sym_AT_AT] = ACTIONS(61), }, - [447] = { - [sym_operator] = STATE(675), - [sym_binary_operator] = STATE(783), + [443] = { + [sym_operator] = STATE(717), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(672), - [sym_keyword_as] = ACTIONS(672), + [sym_keyword_value] = ACTIONS(672), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -52708,11 +52472,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_drop] = ACTIONS(672), - [sym_keyword_schemafull] = ACTIONS(672), - [sym_keyword_schemaless] = ACTIONS(672), - [sym_keyword_changefeed] = ACTIONS(672), + [sym_keyword_flexible] = ACTIONS(672), + [sym_keyword_readonly] = ACTIONS(672), [sym_keyword_type] = ACTIONS(672), + [sym_keyword_default] = ACTIONS(672), + [sym_keyword_assert] = ACTIONS(672), [sym_keyword_permissions] = ACTIONS(672), [sym_keyword_for] = ACTIONS(672), [sym_keyword_comment] = ACTIONS(672), @@ -52757,6 +52521,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, + [444] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(148), + [sym_keyword_explain] = ACTIONS(148), + [sym_keyword_parallel] = ACTIONS(148), + [sym_keyword_timeout] = ACTIONS(148), + [sym_keyword_fetch] = ACTIONS(148), + [sym_keyword_limit] = ACTIONS(148), + [sym_keyword_order] = ACTIONS(148), + [sym_keyword_with] = ACTIONS(148), + [sym_keyword_where] = ACTIONS(148), + [sym_keyword_split] = ACTIONS(148), + [sym_keyword_group] = ACTIONS(148), + [sym_keyword_and] = ACTIONS(148), + [sym_keyword_or] = ACTIONS(150), + [sym_keyword_is] = ACTIONS(148), + [sym_keyword_not] = ACTIONS(150), + [sym_keyword_contains] = ACTIONS(148), + [sym_keyword_contains_not] = ACTIONS(148), + [sym_keyword_contains_all] = ACTIONS(148), + [sym_keyword_contains_any] = ACTIONS(148), + [sym_keyword_contains_none] = ACTIONS(148), + [sym_keyword_inside] = ACTIONS(148), + [sym_keyword_in] = ACTIONS(150), + [sym_keyword_not_inside] = ACTIONS(148), + [sym_keyword_all_inside] = ACTIONS(148), + [sym_keyword_any_inside] = ACTIONS(148), + [sym_keyword_none_inside] = ACTIONS(148), + [sym_keyword_outside] = ACTIONS(148), + [sym_keyword_intersects] = ACTIONS(148), + [anon_sym_COMMA] = ACTIONS(148), + [anon_sym_RPAREN] = ACTIONS(148), + [anon_sym_RBRACE] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_LT] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(150), + [anon_sym_EQ] = ACTIONS(150), + [anon_sym_DASH] = ACTIONS(150), + [anon_sym_AT] = ACTIONS(150), + [anon_sym_LT_PIPE] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [anon_sym_QMARK_QMARK] = ACTIONS(148), + [anon_sym_QMARK_COLON] = ACTIONS(148), + [anon_sym_BANG_EQ] = ACTIONS(148), + [anon_sym_EQ_EQ] = ACTIONS(148), + [anon_sym_QMARK_EQ] = ACTIONS(148), + [anon_sym_STAR_EQ] = ACTIONS(148), + [anon_sym_TILDE] = ACTIONS(148), + [anon_sym_BANG_TILDE] = ACTIONS(148), + [anon_sym_STAR_TILDE] = ACTIONS(148), + [anon_sym_LT_EQ] = ACTIONS(148), + [anon_sym_GT_EQ] = ACTIONS(148), + [anon_sym_PLUS] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(148), + [anon_sym_DASH_EQ] = ACTIONS(148), + [anon_sym_u00d7] = ACTIONS(148), + [anon_sym_SLASH] = ACTIONS(150), + [anon_sym_u00f7] = ACTIONS(148), + [anon_sym_STAR_STAR] = ACTIONS(148), + [anon_sym_u220b] = ACTIONS(148), + [anon_sym_u220c] = ACTIONS(148), + [anon_sym_u2287] = ACTIONS(148), + [anon_sym_u2283] = ACTIONS(148), + [anon_sym_u2285] = ACTIONS(148), + [anon_sym_u2208] = ACTIONS(148), + [anon_sym_u2209] = ACTIONS(148), + [anon_sym_u2286] = ACTIONS(148), + [anon_sym_u2282] = ACTIONS(148), + [anon_sym_u2284] = ACTIONS(148), + [anon_sym_AT_AT] = ACTIONS(148), + }, + [445] = { + [ts_builtin_sym_end] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(225), + [sym_keyword_as] = ACTIONS(225), + [sym_keyword_where] = ACTIONS(225), + [sym_keyword_group] = ACTIONS(225), + [sym_keyword_and] = ACTIONS(225), + [sym_keyword_or] = ACTIONS(225), + [sym_keyword_is] = ACTIONS(225), + [sym_keyword_not] = ACTIONS(227), + [sym_keyword_contains] = ACTIONS(225), + [sym_keyword_contains_not] = ACTIONS(225), + [sym_keyword_contains_all] = ACTIONS(225), + [sym_keyword_contains_any] = ACTIONS(225), + [sym_keyword_contains_none] = ACTIONS(225), + [sym_keyword_inside] = ACTIONS(225), + [sym_keyword_in] = ACTIONS(227), + [sym_keyword_not_inside] = ACTIONS(225), + [sym_keyword_all_inside] = ACTIONS(225), + [sym_keyword_any_inside] = ACTIONS(225), + [sym_keyword_none_inside] = ACTIONS(225), + [sym_keyword_outside] = ACTIONS(225), + [sym_keyword_intersects] = ACTIONS(225), + [sym_keyword_drop] = ACTIONS(225), + [sym_keyword_schemafull] = ACTIONS(225), + [sym_keyword_schemaless] = ACTIONS(225), + [sym_keyword_changefeed] = ACTIONS(225), + [sym_keyword_type] = ACTIONS(225), + [sym_keyword_permissions] = ACTIONS(225), + [sym_keyword_for] = ACTIONS(225), + [sym_keyword_comment] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_AT] = ACTIONS(227), + [anon_sym_LT_PIPE] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_QMARK_QMARK] = ACTIONS(225), + [anon_sym_QMARK_COLON] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [anon_sym_QMARK_EQ] = ACTIONS(225), + [anon_sym_STAR_EQ] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_BANG_TILDE] = ACTIONS(225), + [anon_sym_STAR_TILDE] = ACTIONS(225), + [anon_sym_LT_EQ] = ACTIONS(225), + [anon_sym_GT_EQ] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_PLUS_EQ] = ACTIONS(225), + [anon_sym_DASH_EQ] = ACTIONS(225), + [anon_sym_u00d7] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_u00f7] = ACTIONS(225), + [anon_sym_STAR_STAR] = ACTIONS(225), + [anon_sym_u220b] = ACTIONS(225), + [anon_sym_u220c] = ACTIONS(225), + [anon_sym_u2287] = ACTIONS(225), + [anon_sym_u2283] = ACTIONS(225), + [anon_sym_u2285] = ACTIONS(225), + [anon_sym_u2208] = ACTIONS(225), + [anon_sym_u2209] = ACTIONS(225), + [anon_sym_u2286] = ACTIONS(225), + [anon_sym_u2282] = ACTIONS(225), + [anon_sym_u2284] = ACTIONS(225), + [anon_sym_AT_AT] = ACTIONS(225), + }, + [446] = { + [ts_builtin_sym_end] = ACTIONS(168), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(168), + [sym_keyword_as] = ACTIONS(168), + [sym_keyword_where] = ACTIONS(168), + [sym_keyword_group] = ACTIONS(168), + [sym_keyword_and] = ACTIONS(168), + [sym_keyword_or] = ACTIONS(168), + [sym_keyword_is] = ACTIONS(168), + [sym_keyword_not] = ACTIONS(170), + [sym_keyword_contains] = ACTIONS(168), + [sym_keyword_contains_not] = ACTIONS(168), + [sym_keyword_contains_all] = ACTIONS(168), + [sym_keyword_contains_any] = ACTIONS(168), + [sym_keyword_contains_none] = ACTIONS(168), + [sym_keyword_inside] = ACTIONS(168), + [sym_keyword_in] = ACTIONS(170), + [sym_keyword_not_inside] = ACTIONS(168), + [sym_keyword_all_inside] = ACTIONS(168), + [sym_keyword_any_inside] = ACTIONS(168), + [sym_keyword_none_inside] = ACTIONS(168), + [sym_keyword_outside] = ACTIONS(168), + [sym_keyword_intersects] = ACTIONS(168), + [sym_keyword_drop] = ACTIONS(168), + [sym_keyword_schemafull] = ACTIONS(168), + [sym_keyword_schemaless] = ACTIONS(168), + [sym_keyword_changefeed] = ACTIONS(168), + [sym_keyword_type] = ACTIONS(168), + [sym_keyword_permissions] = ACTIONS(168), + [sym_keyword_for] = ACTIONS(168), + [sym_keyword_comment] = ACTIONS(168), + [anon_sym_COMMA] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(170), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_GT] = ACTIONS(170), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(170), + [anon_sym_LT_PIPE] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(168), + [anon_sym_QMARK_QMARK] = ACTIONS(168), + [anon_sym_QMARK_COLON] = ACTIONS(168), + [anon_sym_BANG_EQ] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(168), + [anon_sym_QMARK_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_BANG_TILDE] = ACTIONS(168), + [anon_sym_STAR_TILDE] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(168), + [anon_sym_GT_EQ] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_u00d7] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_u00f7] = ACTIONS(168), + [anon_sym_STAR_STAR] = ACTIONS(168), + [anon_sym_u220b] = ACTIONS(168), + [anon_sym_u220c] = ACTIONS(168), + [anon_sym_u2287] = ACTIONS(168), + [anon_sym_u2283] = ACTIONS(168), + [anon_sym_u2285] = ACTIONS(168), + [anon_sym_u2208] = ACTIONS(168), + [anon_sym_u2209] = ACTIONS(168), + [anon_sym_u2286] = ACTIONS(168), + [anon_sym_u2282] = ACTIONS(168), + [anon_sym_u2284] = ACTIONS(168), + [anon_sym_AT_AT] = ACTIONS(168), + }, + [447] = { + [ts_builtin_sym_end] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(241), + [sym_keyword_as] = ACTIONS(241), + [sym_keyword_where] = ACTIONS(241), + [sym_keyword_group] = ACTIONS(241), + [sym_keyword_and] = ACTIONS(241), + [sym_keyword_or] = ACTIONS(241), + [sym_keyword_is] = ACTIONS(241), + [sym_keyword_not] = ACTIONS(243), + [sym_keyword_contains] = ACTIONS(241), + [sym_keyword_contains_not] = ACTIONS(241), + [sym_keyword_contains_all] = ACTIONS(241), + [sym_keyword_contains_any] = ACTIONS(241), + [sym_keyword_contains_none] = ACTIONS(241), + [sym_keyword_inside] = ACTIONS(241), + [sym_keyword_in] = ACTIONS(243), + [sym_keyword_not_inside] = ACTIONS(241), + [sym_keyword_all_inside] = ACTIONS(241), + [sym_keyword_any_inside] = ACTIONS(241), + [sym_keyword_none_inside] = ACTIONS(241), + [sym_keyword_outside] = ACTIONS(241), + [sym_keyword_intersects] = ACTIONS(241), + [sym_keyword_drop] = ACTIONS(241), + [sym_keyword_schemafull] = ACTIONS(241), + [sym_keyword_schemaless] = ACTIONS(241), + [sym_keyword_changefeed] = ACTIONS(241), + [sym_keyword_type] = ACTIONS(241), + [sym_keyword_permissions] = ACTIONS(241), + [sym_keyword_for] = ACTIONS(241), + [sym_keyword_comment] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(243), + [anon_sym_LT_PIPE] = ACTIONS(241), + [anon_sym_AMP_AMP] = ACTIONS(241), + [anon_sym_PIPE_PIPE] = ACTIONS(241), + [anon_sym_QMARK_QMARK] = ACTIONS(241), + [anon_sym_QMARK_COLON] = ACTIONS(241), + [anon_sym_BANG_EQ] = ACTIONS(241), + [anon_sym_EQ_EQ] = ACTIONS(241), + [anon_sym_QMARK_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_BANG_TILDE] = ACTIONS(241), + [anon_sym_STAR_TILDE] = ACTIONS(241), + [anon_sym_LT_EQ] = ACTIONS(241), + [anon_sym_GT_EQ] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_u00d7] = ACTIONS(241), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_u00f7] = ACTIONS(241), + [anon_sym_STAR_STAR] = ACTIONS(241), + [anon_sym_u220b] = ACTIONS(241), + [anon_sym_u220c] = ACTIONS(241), + [anon_sym_u2287] = ACTIONS(241), + [anon_sym_u2283] = ACTIONS(241), + [anon_sym_u2285] = ACTIONS(241), + [anon_sym_u2208] = ACTIONS(241), + [anon_sym_u2209] = ACTIONS(241), + [anon_sym_u2286] = ACTIONS(241), + [anon_sym_u2282] = ACTIONS(241), + [anon_sym_u2284] = ACTIONS(241), + [anon_sym_AT_AT] = ACTIONS(241), + }, [448] = { [ts_builtin_sym_end] = ACTIONS(257), [sym_comment] = ACTIONS(3), @@ -52830,78 +52882,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(257), }, [449] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(212), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(212), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_COMMA] = ACTIONS(212), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_semi_colon] = ACTIONS(229), + [sym_keyword_explain] = ACTIONS(229), + [sym_keyword_parallel] = ACTIONS(229), + [sym_keyword_timeout] = ACTIONS(229), + [sym_keyword_fetch] = ACTIONS(229), + [sym_keyword_limit] = ACTIONS(229), + [sym_keyword_order] = ACTIONS(229), + [sym_keyword_with] = ACTIONS(229), + [sym_keyword_where] = ACTIONS(229), + [sym_keyword_split] = ACTIONS(229), + [sym_keyword_group] = ACTIONS(229), + [sym_keyword_and] = ACTIONS(229), + [sym_keyword_or] = ACTIONS(231), + [sym_keyword_is] = ACTIONS(229), + [sym_keyword_not] = ACTIONS(231), + [sym_keyword_contains] = ACTIONS(229), + [sym_keyword_contains_not] = ACTIONS(229), + [sym_keyword_contains_all] = ACTIONS(229), + [sym_keyword_contains_any] = ACTIONS(229), + [sym_keyword_contains_none] = ACTIONS(229), + [sym_keyword_inside] = ACTIONS(229), + [sym_keyword_in] = ACTIONS(231), + [sym_keyword_not_inside] = ACTIONS(229), + [sym_keyword_all_inside] = ACTIONS(229), + [sym_keyword_any_inside] = ACTIONS(229), + [sym_keyword_none_inside] = ACTIONS(229), + [sym_keyword_outside] = ACTIONS(229), + [sym_keyword_intersects] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_RPAREN] = ACTIONS(229), + [anon_sym_RBRACE] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_PIPE] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_QMARK_QMARK] = ACTIONS(229), + [anon_sym_QMARK_COLON] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(229), + [anon_sym_EQ_EQ] = ACTIONS(229), + [anon_sym_QMARK_EQ] = ACTIONS(229), + [anon_sym_STAR_EQ] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(229), + [anon_sym_BANG_TILDE] = ACTIONS(229), + [anon_sym_STAR_TILDE] = ACTIONS(229), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_GT_EQ] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_PLUS_EQ] = ACTIONS(229), + [anon_sym_DASH_EQ] = ACTIONS(229), + [anon_sym_u00d7] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_u00f7] = ACTIONS(229), + [anon_sym_STAR_STAR] = ACTIONS(229), + [anon_sym_u220b] = ACTIONS(229), + [anon_sym_u220c] = ACTIONS(229), + [anon_sym_u2287] = ACTIONS(229), + [anon_sym_u2283] = ACTIONS(229), + [anon_sym_u2285] = ACTIONS(229), + [anon_sym_u2208] = ACTIONS(229), + [anon_sym_u2209] = ACTIONS(229), + [anon_sym_u2286] = ACTIONS(229), + [anon_sym_u2282] = ACTIONS(229), + [anon_sym_u2284] = ACTIONS(229), + [anon_sym_AT_AT] = ACTIONS(229), }, [450] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(188), + [sym_keyword_explain] = ACTIONS(188), + [sym_keyword_parallel] = ACTIONS(188), + [sym_keyword_timeout] = ACTIONS(188), + [sym_keyword_fetch] = ACTIONS(188), + [sym_keyword_limit] = ACTIONS(188), + [sym_keyword_order] = ACTIONS(188), + [sym_keyword_with] = ACTIONS(188), + [sym_keyword_where] = ACTIONS(188), + [sym_keyword_split] = ACTIONS(188), + [sym_keyword_group] = ACTIONS(188), + [sym_keyword_and] = ACTIONS(188), + [sym_keyword_or] = ACTIONS(190), + [sym_keyword_is] = ACTIONS(188), + [sym_keyword_not] = ACTIONS(190), + [sym_keyword_contains] = ACTIONS(188), + [sym_keyword_contains_not] = ACTIONS(188), + [sym_keyword_contains_all] = ACTIONS(188), + [sym_keyword_contains_any] = ACTIONS(188), + [sym_keyword_contains_none] = ACTIONS(188), + [sym_keyword_inside] = ACTIONS(188), + [sym_keyword_in] = ACTIONS(190), + [sym_keyword_not_inside] = ACTIONS(188), + [sym_keyword_all_inside] = ACTIONS(188), + [sym_keyword_any_inside] = ACTIONS(188), + [sym_keyword_none_inside] = ACTIONS(188), + [sym_keyword_outside] = ACTIONS(188), + [sym_keyword_intersects] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_RPAREN] = ACTIONS(188), + [anon_sym_RBRACE] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_LT_PIPE] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_QMARK_QMARK] = ACTIONS(188), + [anon_sym_QMARK_COLON] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_QMARK_EQ] = ACTIONS(188), + [anon_sym_STAR_EQ] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_BANG_TILDE] = ACTIONS(188), + [anon_sym_STAR_TILDE] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_u00d7] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_u00f7] = ACTIONS(188), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_u220b] = ACTIONS(188), + [anon_sym_u220c] = ACTIONS(188), + [anon_sym_u2287] = ACTIONS(188), + [anon_sym_u2283] = ACTIONS(188), + [anon_sym_u2285] = ACTIONS(188), + [anon_sym_u2208] = ACTIONS(188), + [anon_sym_u2209] = ACTIONS(188), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), + }, + [451] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(225), + [sym_keyword_explain] = ACTIONS(225), + [sym_keyword_parallel] = ACTIONS(225), + [sym_keyword_timeout] = ACTIONS(225), + [sym_keyword_fetch] = ACTIONS(225), + [sym_keyword_limit] = ACTIONS(225), + [sym_keyword_order] = ACTIONS(225), + [sym_keyword_with] = ACTIONS(225), + [sym_keyword_where] = ACTIONS(225), + [sym_keyword_split] = ACTIONS(225), + [sym_keyword_group] = ACTIONS(225), + [sym_keyword_and] = ACTIONS(225), + [sym_keyword_or] = ACTIONS(227), + [sym_keyword_is] = ACTIONS(225), + [sym_keyword_not] = ACTIONS(227), + [sym_keyword_contains] = ACTIONS(225), + [sym_keyword_contains_not] = ACTIONS(225), + [sym_keyword_contains_all] = ACTIONS(225), + [sym_keyword_contains_any] = ACTIONS(225), + [sym_keyword_contains_none] = ACTIONS(225), + [sym_keyword_inside] = ACTIONS(225), + [sym_keyword_in] = ACTIONS(227), + [sym_keyword_not_inside] = ACTIONS(225), + [sym_keyword_all_inside] = ACTIONS(225), + [sym_keyword_any_inside] = ACTIONS(225), + [sym_keyword_none_inside] = ACTIONS(225), + [sym_keyword_outside] = ACTIONS(225), + [sym_keyword_intersects] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_AT] = ACTIONS(227), + [anon_sym_LT_PIPE] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_QMARK_QMARK] = ACTIONS(225), + [anon_sym_QMARK_COLON] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [anon_sym_QMARK_EQ] = ACTIONS(225), + [anon_sym_STAR_EQ] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_BANG_TILDE] = ACTIONS(225), + [anon_sym_STAR_TILDE] = ACTIONS(225), + [anon_sym_LT_EQ] = ACTIONS(225), + [anon_sym_GT_EQ] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_PLUS_EQ] = ACTIONS(225), + [anon_sym_DASH_EQ] = ACTIONS(225), + [anon_sym_u00d7] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_u00f7] = ACTIONS(225), + [anon_sym_STAR_STAR] = ACTIONS(225), + [anon_sym_u220b] = ACTIONS(225), + [anon_sym_u220c] = ACTIONS(225), + [anon_sym_u2287] = ACTIONS(225), + [anon_sym_u2283] = ACTIONS(225), + [anon_sym_u2285] = ACTIONS(225), + [anon_sym_u2208] = ACTIONS(225), + [anon_sym_u2209] = ACTIONS(225), + [anon_sym_u2286] = ACTIONS(225), + [anon_sym_u2282] = ACTIONS(225), + [anon_sym_u2284] = ACTIONS(225), + [anon_sym_AT_AT] = ACTIONS(225), + }, + [452] = { [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(257), [sym_keyword_explain] = ACTIONS(257), @@ -52973,239 +53169,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(257), [anon_sym_AT_AT] = ACTIONS(257), }, - [451] = { - [sym_array] = STATE(45), - [sym_object] = STATE(45), - [sym_record_id_value] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(341), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(341), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(43), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(383), - [sym_record_id_ident] = ACTIONS(383), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [453] = { + [sym_operator] = STATE(763), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_explain] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_fetch] = ACTIONS(644), + [sym_keyword_limit] = ACTIONS(644), + [sym_keyword_order] = ACTIONS(644), + [sym_keyword_where] = ACTIONS(644), + [sym_keyword_split] = ACTIONS(644), + [sym_keyword_group] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(646), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), }, - [452] = { + [454] = { + [sym_operator] = STATE(736), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(148), - [sym_keyword_explain] = ACTIONS(148), - [sym_keyword_parallel] = ACTIONS(148), - [sym_keyword_timeout] = ACTIONS(148), - [sym_keyword_fetch] = ACTIONS(148), - [sym_keyword_limit] = ACTIONS(148), - [sym_keyword_order] = ACTIONS(148), - [sym_keyword_with] = ACTIONS(148), - [sym_keyword_where] = ACTIONS(148), - [sym_keyword_split] = ACTIONS(148), - [sym_keyword_group] = ACTIONS(148), - [sym_keyword_and] = ACTIONS(148), - [sym_keyword_or] = ACTIONS(150), - [sym_keyword_is] = ACTIONS(148), - [sym_keyword_not] = ACTIONS(150), - [sym_keyword_contains] = ACTIONS(148), - [sym_keyword_contains_not] = ACTIONS(148), - [sym_keyword_contains_all] = ACTIONS(148), - [sym_keyword_contains_any] = ACTIONS(148), - [sym_keyword_contains_none] = ACTIONS(148), - [sym_keyword_inside] = ACTIONS(148), - [sym_keyword_in] = ACTIONS(150), - [sym_keyword_not_inside] = ACTIONS(148), - [sym_keyword_all_inside] = ACTIONS(148), - [sym_keyword_any_inside] = ACTIONS(148), - [sym_keyword_none_inside] = ACTIONS(148), - [sym_keyword_outside] = ACTIONS(148), - [sym_keyword_intersects] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_RPAREN] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_EQ] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(150), - [anon_sym_LT_PIPE] = ACTIONS(148), - [anon_sym_AMP_AMP] = ACTIONS(148), - [anon_sym_PIPE_PIPE] = ACTIONS(148), - [anon_sym_QMARK_QMARK] = ACTIONS(148), - [anon_sym_QMARK_COLON] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_QMARK_EQ] = ACTIONS(148), - [anon_sym_STAR_EQ] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_STAR_TILDE] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(148), - [anon_sym_DASH_EQ] = ACTIONS(148), - [anon_sym_u00d7] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(150), - [anon_sym_u00f7] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_u220b] = ACTIONS(148), - [anon_sym_u220c] = ACTIONS(148), - [anon_sym_u2287] = ACTIONS(148), - [anon_sym_u2283] = ACTIONS(148), - [anon_sym_u2285] = ACTIONS(148), - [anon_sym_u2208] = ACTIONS(148), - [anon_sym_u2209] = ACTIONS(148), - [anon_sym_u2286] = ACTIONS(148), - [anon_sym_u2282] = ACTIONS(148), - [anon_sym_u2284] = ACTIONS(148), - [anon_sym_AT_AT] = ACTIONS(148), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_return] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_where] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_content] = ACTIONS(644), + [sym_keyword_merge] = ACTIONS(644), + [sym_keyword_patch] = ACTIONS(644), + [sym_keyword_set] = ACTIONS(644), + [sym_keyword_unset] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [455] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_keyword_from] = ACTIONS(142), + [sym_keyword_as] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_COMMA] = ACTIONS(140), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), + }, + [456] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_return] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [453] = { - [sym_where_clause] = STATE(1164), - [sym_timeout_clause] = STATE(1209), - [sym_parallel_clause] = STATE(1350), - [sym_return_clause] = STATE(1165), - [sym_operator] = STATE(751), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(986), - [ts_builtin_sym_end] = ACTIONS(670), + [457] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(670), - [sym_keyword_return] = ACTIONS(406), - [sym_keyword_parallel] = ACTIONS(295), - [sym_keyword_timeout] = ACTIONS(297), - [sym_keyword_where] = ACTIONS(408), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [sym_keyword_then] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LPAREN] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(140), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, - [454] = { - [sym_operator] = STATE(757), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(656), - [sym_keyword_explain] = ACTIONS(656), - [sym_keyword_parallel] = ACTIONS(656), - [sym_keyword_timeout] = ACTIONS(656), - [sym_keyword_fetch] = ACTIONS(656), - [sym_keyword_limit] = ACTIONS(656), - [sym_keyword_order] = ACTIONS(656), - [sym_keyword_where] = ACTIONS(656), - [sym_keyword_split] = ACTIONS(656), - [sym_keyword_group] = ACTIONS(656), + [458] = { + [ts_builtin_sym_end] = ACTIONS(221), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(221), + [sym_keyword_explain] = ACTIONS(221), + [sym_keyword_parallel] = ACTIONS(221), + [sym_keyword_timeout] = ACTIONS(221), + [sym_keyword_fetch] = ACTIONS(221), + [sym_keyword_limit] = ACTIONS(221), + [sym_keyword_order] = ACTIONS(221), + [sym_keyword_with] = ACTIONS(221), + [sym_keyword_where] = ACTIONS(221), + [sym_keyword_split] = ACTIONS(221), + [sym_keyword_group] = ACTIONS(221), + [sym_keyword_and] = ACTIONS(221), + [sym_keyword_or] = ACTIONS(223), + [sym_keyword_is] = ACTIONS(221), + [sym_keyword_not] = ACTIONS(223), + [sym_keyword_contains] = ACTIONS(221), + [sym_keyword_contains_not] = ACTIONS(221), + [sym_keyword_contains_all] = ACTIONS(221), + [sym_keyword_contains_any] = ACTIONS(221), + [sym_keyword_contains_none] = ACTIONS(221), + [sym_keyword_inside] = ACTIONS(221), + [sym_keyword_in] = ACTIONS(223), + [sym_keyword_not_inside] = ACTIONS(221), + [sym_keyword_all_inside] = ACTIONS(221), + [sym_keyword_any_inside] = ACTIONS(221), + [sym_keyword_none_inside] = ACTIONS(221), + [sym_keyword_outside] = ACTIONS(221), + [sym_keyword_intersects] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(223), + [anon_sym_GT] = ACTIONS(223), + [anon_sym_EQ] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_LT_PIPE] = ACTIONS(221), + [anon_sym_AMP_AMP] = ACTIONS(221), + [anon_sym_PIPE_PIPE] = ACTIONS(221), + [anon_sym_QMARK_QMARK] = ACTIONS(221), + [anon_sym_QMARK_COLON] = ACTIONS(221), + [anon_sym_BANG_EQ] = ACTIONS(221), + [anon_sym_EQ_EQ] = ACTIONS(221), + [anon_sym_QMARK_EQ] = ACTIONS(221), + [anon_sym_STAR_EQ] = ACTIONS(221), + [anon_sym_TILDE] = ACTIONS(221), + [anon_sym_BANG_TILDE] = ACTIONS(221), + [anon_sym_STAR_TILDE] = ACTIONS(221), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_GT_EQ] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_PLUS_EQ] = ACTIONS(221), + [anon_sym_DASH_EQ] = ACTIONS(221), + [anon_sym_u00d7] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(223), + [anon_sym_u00f7] = ACTIONS(221), + [anon_sym_STAR_STAR] = ACTIONS(221), + [anon_sym_u220b] = ACTIONS(221), + [anon_sym_u220c] = ACTIONS(221), + [anon_sym_u2287] = ACTIONS(221), + [anon_sym_u2283] = ACTIONS(221), + [anon_sym_u2285] = ACTIONS(221), + [anon_sym_u2208] = ACTIONS(221), + [anon_sym_u2209] = ACTIONS(221), + [anon_sym_u2286] = ACTIONS(221), + [anon_sym_u2282] = ACTIONS(221), + [anon_sym_u2284] = ACTIONS(221), + [anon_sym_AT_AT] = ACTIONS(221), + }, + [459] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), + [sym_comment] = ACTIONS(3), + [sym_keyword_if] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_variable_name] = ACTIONS(200), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [460] = { + [sym_operator] = STATE(712), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(672), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(672), + [sym_keyword_as] = ACTIONS(672), + [sym_keyword_group] = ACTIONS(672), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(315), + [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -53221,7 +53695,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(656), + [sym_keyword_drop] = ACTIONS(672), + [sym_keyword_schemafull] = ACTIONS(672), + [sym_keyword_schemaless] = ACTIONS(672), + [sym_keyword_changefeed] = ACTIONS(672), + [sym_keyword_type] = ACTIONS(672), + [sym_keyword_permissions] = ACTIONS(672), + [sym_keyword_comment] = ACTIONS(672), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -53261,295 +53741,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [455] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(253), - [sym_keyword_explain] = ACTIONS(253), - [sym_keyword_parallel] = ACTIONS(253), - [sym_keyword_timeout] = ACTIONS(253), - [sym_keyword_fetch] = ACTIONS(253), - [sym_keyword_limit] = ACTIONS(253), - [sym_keyword_order] = ACTIONS(253), - [sym_keyword_with] = ACTIONS(253), - [sym_keyword_where] = ACTIONS(253), - [sym_keyword_split] = ACTIONS(253), - [sym_keyword_group] = ACTIONS(253), - [sym_keyword_and] = ACTIONS(253), - [sym_keyword_or] = ACTIONS(255), - [sym_keyword_is] = ACTIONS(253), - [sym_keyword_not] = ACTIONS(255), - [sym_keyword_contains] = ACTIONS(253), - [sym_keyword_contains_not] = ACTIONS(253), - [sym_keyword_contains_all] = ACTIONS(253), - [sym_keyword_contains_any] = ACTIONS(253), - [sym_keyword_contains_none] = ACTIONS(253), - [sym_keyword_inside] = ACTIONS(253), - [sym_keyword_in] = ACTIONS(255), - [sym_keyword_not_inside] = ACTIONS(253), - [sym_keyword_all_inside] = ACTIONS(253), - [sym_keyword_any_inside] = ACTIONS(253), - [sym_keyword_none_inside] = ACTIONS(253), - [sym_keyword_outside] = ACTIONS(253), - [sym_keyword_intersects] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_RPAREN] = ACTIONS(253), - [anon_sym_RBRACE] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(255), - [anon_sym_LT] = ACTIONS(255), - [anon_sym_GT] = ACTIONS(255), - [anon_sym_EQ] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_PIPE] = ACTIONS(253), - [anon_sym_AMP_AMP] = ACTIONS(253), - [anon_sym_PIPE_PIPE] = ACTIONS(253), - [anon_sym_QMARK_QMARK] = ACTIONS(253), - [anon_sym_QMARK_COLON] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_QMARK_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_BANG_TILDE] = ACTIONS(253), - [anon_sym_STAR_TILDE] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_u00d7] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(255), - [anon_sym_u00f7] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(253), - [anon_sym_u220b] = ACTIONS(253), - [anon_sym_u220c] = ACTIONS(253), - [anon_sym_u2287] = ACTIONS(253), - [anon_sym_u2283] = ACTIONS(253), - [anon_sym_u2285] = ACTIONS(253), - [anon_sym_u2208] = ACTIONS(253), - [anon_sym_u2209] = ACTIONS(253), - [anon_sym_u2286] = ACTIONS(253), - [anon_sym_u2282] = ACTIONS(253), - [anon_sym_u2284] = ACTIONS(253), - [anon_sym_AT_AT] = ACTIONS(253), - }, - [456] = { - [ts_builtin_sym_end] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(253), - [sym_keyword_as] = ACTIONS(253), - [sym_keyword_where] = ACTIONS(253), - [sym_keyword_group] = ACTIONS(253), - [sym_keyword_and] = ACTIONS(253), - [sym_keyword_or] = ACTIONS(253), - [sym_keyword_is] = ACTIONS(253), - [sym_keyword_not] = ACTIONS(255), - [sym_keyword_contains] = ACTIONS(253), - [sym_keyword_contains_not] = ACTIONS(253), - [sym_keyword_contains_all] = ACTIONS(253), - [sym_keyword_contains_any] = ACTIONS(253), - [sym_keyword_contains_none] = ACTIONS(253), - [sym_keyword_inside] = ACTIONS(253), - [sym_keyword_in] = ACTIONS(255), - [sym_keyword_not_inside] = ACTIONS(253), - [sym_keyword_all_inside] = ACTIONS(253), - [sym_keyword_any_inside] = ACTIONS(253), - [sym_keyword_none_inside] = ACTIONS(253), - [sym_keyword_outside] = ACTIONS(253), - [sym_keyword_intersects] = ACTIONS(253), - [sym_keyword_drop] = ACTIONS(253), - [sym_keyword_schemafull] = ACTIONS(253), - [sym_keyword_schemaless] = ACTIONS(253), - [sym_keyword_changefeed] = ACTIONS(253), - [sym_keyword_type] = ACTIONS(253), - [sym_keyword_permissions] = ACTIONS(253), - [sym_keyword_for] = ACTIONS(253), - [sym_keyword_comment] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(255), - [anon_sym_LT] = ACTIONS(255), - [anon_sym_GT] = ACTIONS(255), - [anon_sym_EQ] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_PIPE] = ACTIONS(253), - [anon_sym_AMP_AMP] = ACTIONS(253), - [anon_sym_PIPE_PIPE] = ACTIONS(253), - [anon_sym_QMARK_QMARK] = ACTIONS(253), - [anon_sym_QMARK_COLON] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_QMARK_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_BANG_TILDE] = ACTIONS(253), - [anon_sym_STAR_TILDE] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_u00d7] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(255), - [anon_sym_u00f7] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(253), - [anon_sym_u220b] = ACTIONS(253), - [anon_sym_u220c] = ACTIONS(253), - [anon_sym_u2287] = ACTIONS(253), - [anon_sym_u2283] = ACTIONS(253), - [anon_sym_u2285] = ACTIONS(253), - [anon_sym_u2208] = ACTIONS(253), - [anon_sym_u2209] = ACTIONS(253), - [anon_sym_u2286] = ACTIONS(253), - [anon_sym_u2282] = ACTIONS(253), - [anon_sym_u2284] = ACTIONS(253), - [anon_sym_AT_AT] = ACTIONS(253), - }, - [457] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), - [sym_comment] = ACTIONS(3), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [sym_keyword_then] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(160), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [458] = { - [ts_builtin_sym_end] = ACTIONS(148), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(148), - [sym_keyword_explain] = ACTIONS(148), - [sym_keyword_parallel] = ACTIONS(148), - [sym_keyword_timeout] = ACTIONS(148), - [sym_keyword_fetch] = ACTIONS(148), - [sym_keyword_limit] = ACTIONS(148), - [sym_keyword_order] = ACTIONS(148), - [sym_keyword_with] = ACTIONS(148), - [sym_keyword_where] = ACTIONS(148), - [sym_keyword_split] = ACTIONS(148), - [sym_keyword_group] = ACTIONS(148), - [sym_keyword_and] = ACTIONS(148), - [sym_keyword_or] = ACTIONS(150), - [sym_keyword_is] = ACTIONS(148), - [sym_keyword_not] = ACTIONS(150), - [sym_keyword_contains] = ACTIONS(148), - [sym_keyword_contains_not] = ACTIONS(148), - [sym_keyword_contains_all] = ACTIONS(148), - [sym_keyword_contains_any] = ACTIONS(148), - [sym_keyword_contains_none] = ACTIONS(148), - [sym_keyword_inside] = ACTIONS(148), - [sym_keyword_in] = ACTIONS(150), - [sym_keyword_not_inside] = ACTIONS(148), - [sym_keyword_all_inside] = ACTIONS(148), - [sym_keyword_any_inside] = ACTIONS(148), - [sym_keyword_none_inside] = ACTIONS(148), - [sym_keyword_outside] = ACTIONS(148), - [sym_keyword_intersects] = ACTIONS(148), - [anon_sym_COMMA] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(150), - [anon_sym_LT] = ACTIONS(150), - [anon_sym_GT] = ACTIONS(150), - [anon_sym_EQ] = ACTIONS(150), - [anon_sym_DASH] = ACTIONS(150), - [anon_sym_AT] = ACTIONS(150), - [anon_sym_LT_PIPE] = ACTIONS(148), - [anon_sym_AMP_AMP] = ACTIONS(148), - [anon_sym_PIPE_PIPE] = ACTIONS(148), - [anon_sym_QMARK_QMARK] = ACTIONS(148), - [anon_sym_QMARK_COLON] = ACTIONS(148), - [anon_sym_BANG_EQ] = ACTIONS(148), - [anon_sym_EQ_EQ] = ACTIONS(148), - [anon_sym_QMARK_EQ] = ACTIONS(148), - [anon_sym_STAR_EQ] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(148), - [anon_sym_BANG_TILDE] = ACTIONS(148), - [anon_sym_STAR_TILDE] = ACTIONS(148), - [anon_sym_LT_EQ] = ACTIONS(148), - [anon_sym_GT_EQ] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(150), - [anon_sym_PLUS_EQ] = ACTIONS(148), - [anon_sym_DASH_EQ] = ACTIONS(148), - [anon_sym_u00d7] = ACTIONS(148), - [anon_sym_SLASH] = ACTIONS(150), - [anon_sym_u00f7] = ACTIONS(148), - [anon_sym_STAR_STAR] = ACTIONS(148), - [anon_sym_u220b] = ACTIONS(148), - [anon_sym_u220c] = ACTIONS(148), - [anon_sym_u2287] = ACTIONS(148), - [anon_sym_u2283] = ACTIONS(148), - [anon_sym_u2285] = ACTIONS(148), - [anon_sym_u2208] = ACTIONS(148), - [anon_sym_u2209] = ACTIONS(148), - [anon_sym_u2286] = ACTIONS(148), - [anon_sym_u2282] = ACTIONS(148), - [anon_sym_u2284] = ACTIONS(148), - [anon_sym_AT_AT] = ACTIONS(148), + [461] = { + [ts_builtin_sym_end] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(229), + [sym_keyword_explain] = ACTIONS(229), + [sym_keyword_parallel] = ACTIONS(229), + [sym_keyword_timeout] = ACTIONS(229), + [sym_keyword_fetch] = ACTIONS(229), + [sym_keyword_limit] = ACTIONS(229), + [sym_keyword_order] = ACTIONS(229), + [sym_keyword_with] = ACTIONS(229), + [sym_keyword_where] = ACTIONS(229), + [sym_keyword_split] = ACTIONS(229), + [sym_keyword_group] = ACTIONS(229), + [sym_keyword_and] = ACTIONS(229), + [sym_keyword_or] = ACTIONS(231), + [sym_keyword_is] = ACTIONS(229), + [sym_keyword_not] = ACTIONS(231), + [sym_keyword_contains] = ACTIONS(229), + [sym_keyword_contains_not] = ACTIONS(229), + [sym_keyword_contains_all] = ACTIONS(229), + [sym_keyword_contains_any] = ACTIONS(229), + [sym_keyword_contains_none] = ACTIONS(229), + [sym_keyword_inside] = ACTIONS(229), + [sym_keyword_in] = ACTIONS(231), + [sym_keyword_not_inside] = ACTIONS(229), + [sym_keyword_all_inside] = ACTIONS(229), + [sym_keyword_any_inside] = ACTIONS(229), + [sym_keyword_none_inside] = ACTIONS(229), + [sym_keyword_outside] = ACTIONS(229), + [sym_keyword_intersects] = ACTIONS(229), + [anon_sym_COMMA] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(231), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_GT] = ACTIONS(231), + [anon_sym_EQ] = ACTIONS(231), + [anon_sym_DASH] = ACTIONS(231), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_PIPE] = ACTIONS(229), + [anon_sym_AMP_AMP] = ACTIONS(229), + [anon_sym_PIPE_PIPE] = ACTIONS(229), + [anon_sym_QMARK_QMARK] = ACTIONS(229), + [anon_sym_QMARK_COLON] = ACTIONS(229), + [anon_sym_BANG_EQ] = ACTIONS(229), + [anon_sym_EQ_EQ] = ACTIONS(229), + [anon_sym_QMARK_EQ] = ACTIONS(229), + [anon_sym_STAR_EQ] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(229), + [anon_sym_BANG_TILDE] = ACTIONS(229), + [anon_sym_STAR_TILDE] = ACTIONS(229), + [anon_sym_LT_EQ] = ACTIONS(229), + [anon_sym_GT_EQ] = ACTIONS(229), + [anon_sym_PLUS] = ACTIONS(231), + [anon_sym_PLUS_EQ] = ACTIONS(229), + [anon_sym_DASH_EQ] = ACTIONS(229), + [anon_sym_u00d7] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(231), + [anon_sym_u00f7] = ACTIONS(229), + [anon_sym_STAR_STAR] = ACTIONS(229), + [anon_sym_u220b] = ACTIONS(229), + [anon_sym_u220c] = ACTIONS(229), + [anon_sym_u2287] = ACTIONS(229), + [anon_sym_u2283] = ACTIONS(229), + [anon_sym_u2285] = ACTIONS(229), + [anon_sym_u2208] = ACTIONS(229), + [anon_sym_u2209] = ACTIONS(229), + [anon_sym_u2286] = ACTIONS(229), + [anon_sym_u2282] = ACTIONS(229), + [anon_sym_u2284] = ACTIONS(229), + [anon_sym_AT_AT] = ACTIONS(229), }, - [459] = { - [sym_operator] = STATE(659), - [sym_binary_operator] = STATE(783), + [462] = { + [sym_operator] = STATE(729), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(678), [sym_keyword_value] = ACTIONS(678), @@ -53618,83 +53883,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [460] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), - [sym_comment] = ACTIONS(3), - [sym_keyword_if] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), - [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), - [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), - [anon_sym_DASH_GT] = ACTIONS(160), - [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(162), - [anon_sym_LT_DASH_GT] = ACTIONS(160), - [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(162), - [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_variable_name] = ACTIONS(160), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(162), - [anon_sym_AT] = ACTIONS(162), - [anon_sym_LT_PIPE] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [anon_sym_QMARK_QMARK] = ACTIONS(160), - [anon_sym_QMARK_COLON] = ACTIONS(160), - [anon_sym_BANG_EQ] = ACTIONS(160), - [anon_sym_EQ_EQ] = ACTIONS(160), - [anon_sym_QMARK_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_TILDE] = ACTIONS(160), - [anon_sym_BANG_TILDE] = ACTIONS(160), - [anon_sym_STAR_TILDE] = ACTIONS(160), - [anon_sym_LT_EQ] = ACTIONS(160), - [anon_sym_GT_EQ] = ACTIONS(160), - [anon_sym_PLUS] = ACTIONS(162), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_u00d7] = ACTIONS(160), - [anon_sym_SLASH] = ACTIONS(162), - [anon_sym_u00f7] = ACTIONS(160), - [anon_sym_STAR_STAR] = ACTIONS(160), - [anon_sym_u220b] = ACTIONS(160), - [anon_sym_u220c] = ACTIONS(160), - [anon_sym_u2287] = ACTIONS(160), - [anon_sym_u2283] = ACTIONS(160), - [anon_sym_u2285] = ACTIONS(160), - [anon_sym_u2208] = ACTIONS(160), - [anon_sym_u2209] = ACTIONS(160), - [anon_sym_u2286] = ACTIONS(160), - [anon_sym_u2282] = ACTIONS(160), - [anon_sym_u2284] = ACTIONS(160), - [anon_sym_AT_AT] = ACTIONS(160), - }, - [461] = { - [sym_operator] = STATE(659), - [sym_binary_operator] = STATE(783), + [463] = { + [sym_operator] = STATE(730), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(672), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(680), - [sym_keyword_value] = ACTIONS(680), + [sym_semi_colon] = ACTIONS(672), + [sym_keyword_as] = ACTIONS(672), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -53712,15 +53907,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_flexible] = ACTIONS(680), - [sym_keyword_readonly] = ACTIONS(680), - [sym_keyword_type] = ACTIONS(680), - [sym_keyword_default] = ACTIONS(680), - [sym_keyword_assert] = ACTIONS(680), - [sym_keyword_permissions] = ACTIONS(680), - [sym_keyword_comment] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(680), + [sym_keyword_drop] = ACTIONS(672), + [sym_keyword_schemafull] = ACTIONS(672), + [sym_keyword_schemaless] = ACTIONS(672), + [sym_keyword_changefeed] = ACTIONS(672), + [sym_keyword_type] = ACTIONS(672), + [sym_keyword_permissions] = ACTIONS(672), + [sym_keyword_for] = ACTIONS(672), + [sym_keyword_comment] = ACTIONS(672), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -53760,12 +53954,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [462] = { - [sym_operator] = STATE(659), - [sym_binary_operator] = STATE(783), + [464] = { + [ts_builtin_sym_end] = ACTIONS(188), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(188), + [sym_keyword_explain] = ACTIONS(188), + [sym_keyword_parallel] = ACTIONS(188), + [sym_keyword_timeout] = ACTIONS(188), + [sym_keyword_fetch] = ACTIONS(188), + [sym_keyword_limit] = ACTIONS(188), + [sym_keyword_order] = ACTIONS(188), + [sym_keyword_with] = ACTIONS(188), + [sym_keyword_where] = ACTIONS(188), + [sym_keyword_split] = ACTIONS(188), + [sym_keyword_group] = ACTIONS(188), + [sym_keyword_and] = ACTIONS(188), + [sym_keyword_or] = ACTIONS(190), + [sym_keyword_is] = ACTIONS(188), + [sym_keyword_not] = ACTIONS(190), + [sym_keyword_contains] = ACTIONS(188), + [sym_keyword_contains_not] = ACTIONS(188), + [sym_keyword_contains_all] = ACTIONS(188), + [sym_keyword_contains_any] = ACTIONS(188), + [sym_keyword_contains_none] = ACTIONS(188), + [sym_keyword_inside] = ACTIONS(188), + [sym_keyword_in] = ACTIONS(190), + [sym_keyword_not_inside] = ACTIONS(188), + [sym_keyword_all_inside] = ACTIONS(188), + [sym_keyword_any_inside] = ACTIONS(188), + [sym_keyword_none_inside] = ACTIONS(188), + [sym_keyword_outside] = ACTIONS(188), + [sym_keyword_intersects] = ACTIONS(188), + [anon_sym_COMMA] = ACTIONS(188), + [anon_sym_STAR] = ACTIONS(190), + [anon_sym_LT] = ACTIONS(190), + [anon_sym_GT] = ACTIONS(190), + [anon_sym_EQ] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_LT_PIPE] = ACTIONS(188), + [anon_sym_AMP_AMP] = ACTIONS(188), + [anon_sym_PIPE_PIPE] = ACTIONS(188), + [anon_sym_QMARK_QMARK] = ACTIONS(188), + [anon_sym_QMARK_COLON] = ACTIONS(188), + [anon_sym_BANG_EQ] = ACTIONS(188), + [anon_sym_EQ_EQ] = ACTIONS(188), + [anon_sym_QMARK_EQ] = ACTIONS(188), + [anon_sym_STAR_EQ] = ACTIONS(188), + [anon_sym_TILDE] = ACTIONS(188), + [anon_sym_BANG_TILDE] = ACTIONS(188), + [anon_sym_STAR_TILDE] = ACTIONS(188), + [anon_sym_LT_EQ] = ACTIONS(188), + [anon_sym_GT_EQ] = ACTIONS(188), + [anon_sym_PLUS] = ACTIONS(190), + [anon_sym_PLUS_EQ] = ACTIONS(188), + [anon_sym_DASH_EQ] = ACTIONS(188), + [anon_sym_u00d7] = ACTIONS(188), + [anon_sym_SLASH] = ACTIONS(190), + [anon_sym_u00f7] = ACTIONS(188), + [anon_sym_STAR_STAR] = ACTIONS(188), + [anon_sym_u220b] = ACTIONS(188), + [anon_sym_u220c] = ACTIONS(188), + [anon_sym_u2287] = ACTIONS(188), + [anon_sym_u2283] = ACTIONS(188), + [anon_sym_u2285] = ACTIONS(188), + [anon_sym_u2208] = ACTIONS(188), + [anon_sym_u2209] = ACTIONS(188), + [anon_sym_u2286] = ACTIONS(188), + [anon_sym_u2282] = ACTIONS(188), + [anon_sym_u2284] = ACTIONS(188), + [anon_sym_AT_AT] = ACTIONS(188), + }, + [465] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_keyword_if] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_variable_name] = ACTIONS(140), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), + }, + [466] = { + [sym_operator] = STATE(729), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(682), - [sym_keyword_value] = ACTIONS(682), + [sym_semi_colon] = ACTIONS(680), + [sym_keyword_value] = ACTIONS(680), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -53783,15 +54119,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_flexible] = ACTIONS(682), - [sym_keyword_readonly] = ACTIONS(682), - [sym_keyword_type] = ACTIONS(682), - [sym_keyword_default] = ACTIONS(682), - [sym_keyword_assert] = ACTIONS(682), - [sym_keyword_permissions] = ACTIONS(682), - [sym_keyword_comment] = ACTIONS(682), - [anon_sym_RPAREN] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(682), + [sym_keyword_flexible] = ACTIONS(680), + [sym_keyword_readonly] = ACTIONS(680), + [sym_keyword_type] = ACTIONS(680), + [sym_keyword_default] = ACTIONS(680), + [sym_keyword_assert] = ACTIONS(680), + [sym_keyword_permissions] = ACTIONS(680), + [sym_keyword_comment] = ACTIONS(680), + [anon_sym_RPAREN] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(680), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -53831,80 +54167,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [463] = { - [sym_operator] = STATE(664), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_explain] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_fetch] = ACTIONS(652), - [sym_keyword_limit] = ACTIONS(652), - [sym_keyword_order] = ACTIONS(652), - [sym_keyword_split] = ACTIONS(652), - [sym_keyword_group] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(654), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [467] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [sym_keyword_then] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), }, - [464] = { - [sym_operator] = STATE(664), - [sym_binary_operator] = STATE(783), + [468] = { + [sym_operator] = STATE(730), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_as] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_drop] = ACTIONS(644), + [sym_keyword_schemafull] = ACTIONS(644), + [sym_keyword_schemaless] = ACTIONS(644), + [sym_keyword_changefeed] = ACTIONS(644), + [sym_keyword_type] = ACTIONS(644), + [sym_keyword_permissions] = ACTIONS(644), + [sym_keyword_for] = ACTIONS(644), + [sym_keyword_comment] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [469] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), + [sym_comment] = ACTIONS(3), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [sym_keyword_then] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LPAREN] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(200), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), + }, + [470] = { + [sym_operator] = STATE(729), + [sym_binary_operator] = STATE(779), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_value] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_flexible] = ACTIONS(644), + [sym_keyword_readonly] = ACTIONS(644), + [sym_keyword_type] = ACTIONS(644), + [sym_keyword_default] = ACTIONS(644), + [sym_keyword_assert] = ACTIONS(644), + [sym_keyword_permissions] = ACTIONS(644), + [sym_keyword_comment] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [471] = { + [ts_builtin_sym_end] = ACTIONS(168), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(168), + [sym_keyword_explain] = ACTIONS(168), + [sym_keyword_parallel] = ACTIONS(168), + [sym_keyword_timeout] = ACTIONS(168), + [sym_keyword_fetch] = ACTIONS(168), + [sym_keyword_limit] = ACTIONS(168), + [sym_keyword_order] = ACTIONS(168), + [sym_keyword_with] = ACTIONS(168), + [sym_keyword_where] = ACTIONS(168), + [sym_keyword_split] = ACTIONS(168), + [sym_keyword_group] = ACTIONS(168), + [sym_keyword_and] = ACTIONS(168), + [sym_keyword_or] = ACTIONS(170), + [sym_keyword_is] = ACTIONS(168), + [sym_keyword_not] = ACTIONS(170), + [sym_keyword_contains] = ACTIONS(168), + [sym_keyword_contains_not] = ACTIONS(168), + [sym_keyword_contains_all] = ACTIONS(168), + [sym_keyword_contains_any] = ACTIONS(168), + [sym_keyword_contains_none] = ACTIONS(168), + [sym_keyword_inside] = ACTIONS(168), + [sym_keyword_in] = ACTIONS(170), + [sym_keyword_not_inside] = ACTIONS(168), + [sym_keyword_all_inside] = ACTIONS(168), + [sym_keyword_any_inside] = ACTIONS(168), + [sym_keyword_none_inside] = ACTIONS(168), + [sym_keyword_outside] = ACTIONS(168), + [sym_keyword_intersects] = ACTIONS(168), + [anon_sym_COMMA] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(170), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_GT] = ACTIONS(170), + [anon_sym_EQ] = ACTIONS(170), + [anon_sym_DASH] = ACTIONS(170), + [anon_sym_AT] = ACTIONS(170), + [anon_sym_LT_PIPE] = ACTIONS(168), + [anon_sym_AMP_AMP] = ACTIONS(168), + [anon_sym_PIPE_PIPE] = ACTIONS(168), + [anon_sym_QMARK_QMARK] = ACTIONS(168), + [anon_sym_QMARK_COLON] = ACTIONS(168), + [anon_sym_BANG_EQ] = ACTIONS(168), + [anon_sym_EQ_EQ] = ACTIONS(168), + [anon_sym_QMARK_EQ] = ACTIONS(168), + [anon_sym_STAR_EQ] = ACTIONS(168), + [anon_sym_TILDE] = ACTIONS(168), + [anon_sym_BANG_TILDE] = ACTIONS(168), + [anon_sym_STAR_TILDE] = ACTIONS(168), + [anon_sym_LT_EQ] = ACTIONS(168), + [anon_sym_GT_EQ] = ACTIONS(168), + [anon_sym_PLUS] = ACTIONS(170), + [anon_sym_PLUS_EQ] = ACTIONS(168), + [anon_sym_DASH_EQ] = ACTIONS(168), + [anon_sym_u00d7] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(170), + [anon_sym_u00f7] = ACTIONS(168), + [anon_sym_STAR_STAR] = ACTIONS(168), + [anon_sym_u220b] = ACTIONS(168), + [anon_sym_u220c] = ACTIONS(168), + [anon_sym_u2287] = ACTIONS(168), + [anon_sym_u2283] = ACTIONS(168), + [anon_sym_u2285] = ACTIONS(168), + [anon_sym_u2208] = ACTIONS(168), + [anon_sym_u2209] = ACTIONS(168), + [anon_sym_u2286] = ACTIONS(168), + [anon_sym_u2282] = ACTIONS(168), + [anon_sym_u2284] = ACTIONS(168), + [anon_sym_AT_AT] = ACTIONS(168), + }, + [472] = { + [sym_operator] = STATE(712), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_as] = ACTIONS(644), + [sym_keyword_group] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_drop] = ACTIONS(644), + [sym_keyword_schemafull] = ACTIONS(644), + [sym_keyword_schemaless] = ACTIONS(644), + [sym_keyword_changefeed] = ACTIONS(644), + [sym_keyword_type] = ACTIONS(644), + [sym_keyword_permissions] = ACTIONS(644), + [sym_keyword_comment] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [473] = { + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_keyword_if] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_variable_name] = ACTIONS(349), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [474] = { + [sym_operator] = STATE(723), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(672), [sym_keyword_explain] = ACTIONS(672), @@ -53973,433 +54735,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [465] = { - [sym_operator] = STATE(689), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_as] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_drop] = ACTIONS(652), - [sym_keyword_schemafull] = ACTIONS(652), - [sym_keyword_schemaless] = ACTIONS(652), - [sym_keyword_changefeed] = ACTIONS(652), - [sym_keyword_type] = ACTIONS(652), - [sym_keyword_permissions] = ACTIONS(652), - [sym_keyword_for] = ACTIONS(652), - [sym_keyword_comment] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [466] = { - [sym_operator] = STATE(724), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(672), + [475] = { + [ts_builtin_sym_end] = ACTIONS(61), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(672), - [sym_keyword_as] = ACTIONS(672), - [sym_keyword_group] = ACTIONS(672), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_drop] = ACTIONS(672), - [sym_keyword_schemafull] = ACTIONS(672), - [sym_keyword_schemaless] = ACTIONS(672), - [sym_keyword_changefeed] = ACTIONS(672), - [sym_keyword_type] = ACTIONS(672), - [sym_keyword_permissions] = ACTIONS(672), - [sym_keyword_comment] = ACTIONS(672), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), + [sym_semi_colon] = ACTIONS(61), + [sym_keyword_explain] = ACTIONS(61), + [sym_keyword_parallel] = ACTIONS(61), + [sym_keyword_timeout] = ACTIONS(61), + [sym_keyword_fetch] = ACTIONS(61), + [sym_keyword_limit] = ACTIONS(61), + [sym_keyword_order] = ACTIONS(61), + [sym_keyword_with] = ACTIONS(61), + [sym_keyword_where] = ACTIONS(61), + [sym_keyword_split] = ACTIONS(61), + [sym_keyword_group] = ACTIONS(61), + [sym_keyword_and] = ACTIONS(61), + [sym_keyword_or] = ACTIONS(63), + [sym_keyword_is] = ACTIONS(61), + [sym_keyword_not] = ACTIONS(63), + [sym_keyword_contains] = ACTIONS(61), + [sym_keyword_contains_not] = ACTIONS(61), + [sym_keyword_contains_all] = ACTIONS(61), + [sym_keyword_contains_any] = ACTIONS(61), + [sym_keyword_contains_none] = ACTIONS(61), + [sym_keyword_inside] = ACTIONS(61), + [sym_keyword_in] = ACTIONS(63), + [sym_keyword_not_inside] = ACTIONS(61), + [sym_keyword_all_inside] = ACTIONS(61), + [sym_keyword_any_inside] = ACTIONS(61), + [sym_keyword_none_inside] = ACTIONS(61), + [sym_keyword_outside] = ACTIONS(61), + [sym_keyword_intersects] = ACTIONS(61), + [anon_sym_COMMA] = ACTIONS(61), + [anon_sym_STAR] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_AT] = ACTIONS(63), + [anon_sym_LT_PIPE] = ACTIONS(61), + [anon_sym_AMP_AMP] = ACTIONS(61), + [anon_sym_PIPE_PIPE] = ACTIONS(61), + [anon_sym_QMARK_QMARK] = ACTIONS(61), + [anon_sym_QMARK_COLON] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(61), + [anon_sym_EQ_EQ] = ACTIONS(61), + [anon_sym_QMARK_EQ] = ACTIONS(61), + [anon_sym_STAR_EQ] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(61), + [anon_sym_BANG_TILDE] = ACTIONS(61), + [anon_sym_STAR_TILDE] = ACTIONS(61), + [anon_sym_LT_EQ] = ACTIONS(61), + [anon_sym_GT_EQ] = ACTIONS(61), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_PLUS_EQ] = ACTIONS(61), + [anon_sym_DASH_EQ] = ACTIONS(61), + [anon_sym_u00d7] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_u00f7] = ACTIONS(61), + [anon_sym_STAR_STAR] = ACTIONS(61), + [anon_sym_u220b] = ACTIONS(61), + [anon_sym_u220c] = ACTIONS(61), + [anon_sym_u2287] = ACTIONS(61), + [anon_sym_u2283] = ACTIONS(61), + [anon_sym_u2285] = ACTIONS(61), + [anon_sym_u2208] = ACTIONS(61), + [anon_sym_u2209] = ACTIONS(61), + [anon_sym_u2286] = ACTIONS(61), + [anon_sym_u2282] = ACTIONS(61), + [anon_sym_u2284] = ACTIONS(61), + [anon_sym_AT_AT] = ACTIONS(61), }, - [467] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), + [476] = { [sym_comment] = ACTIONS(3), - [sym_keyword_if] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_variable_name] = ACTIONS(212), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [468] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [sym_keyword_then] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_return] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [469] = { - [ts_builtin_sym_end] = ACTIONS(192), + [477] = { + [sym_operator] = STATE(723), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_return] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(684), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_explain] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_fetch] = ACTIONS(644), + [sym_keyword_limit] = ACTIONS(644), + [sym_keyword_order] = ACTIONS(644), + [sym_keyword_split] = ACTIONS(644), + [sym_keyword_group] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(646), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), }, - [470] = { - [ts_builtin_sym_end] = ACTIONS(156), + [478] = { + [ts_builtin_sym_end] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(241), + [sym_keyword_explain] = ACTIONS(241), + [sym_keyword_parallel] = ACTIONS(241), + [sym_keyword_timeout] = ACTIONS(241), + [sym_keyword_fetch] = ACTIONS(241), + [sym_keyword_limit] = ACTIONS(241), + [sym_keyword_order] = ACTIONS(241), + [sym_keyword_with] = ACTIONS(241), + [sym_keyword_where] = ACTIONS(241), + [sym_keyword_split] = ACTIONS(241), + [sym_keyword_group] = ACTIONS(241), + [sym_keyword_and] = ACTIONS(241), + [sym_keyword_or] = ACTIONS(243), + [sym_keyword_is] = ACTIONS(241), + [sym_keyword_not] = ACTIONS(243), + [sym_keyword_contains] = ACTIONS(241), + [sym_keyword_contains_not] = ACTIONS(241), + [sym_keyword_contains_all] = ACTIONS(241), + [sym_keyword_contains_any] = ACTIONS(241), + [sym_keyword_contains_none] = ACTIONS(241), + [sym_keyword_inside] = ACTIONS(241), + [sym_keyword_in] = ACTIONS(243), + [sym_keyword_not_inside] = ACTIONS(241), + [sym_keyword_all_inside] = ACTIONS(241), + [sym_keyword_any_inside] = ACTIONS(241), + [sym_keyword_none_inside] = ACTIONS(241), + [sym_keyword_outside] = ACTIONS(241), + [sym_keyword_intersects] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(241), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(243), + [anon_sym_DASH] = ACTIONS(243), + [anon_sym_AT] = ACTIONS(243), + [anon_sym_LT_PIPE] = ACTIONS(241), + [anon_sym_AMP_AMP] = ACTIONS(241), + [anon_sym_PIPE_PIPE] = ACTIONS(241), + [anon_sym_QMARK_QMARK] = ACTIONS(241), + [anon_sym_QMARK_COLON] = ACTIONS(241), + [anon_sym_BANG_EQ] = ACTIONS(241), + [anon_sym_EQ_EQ] = ACTIONS(241), + [anon_sym_QMARK_EQ] = ACTIONS(241), + [anon_sym_STAR_EQ] = ACTIONS(241), + [anon_sym_TILDE] = ACTIONS(241), + [anon_sym_BANG_TILDE] = ACTIONS(241), + [anon_sym_STAR_TILDE] = ACTIONS(241), + [anon_sym_LT_EQ] = ACTIONS(241), + [anon_sym_GT_EQ] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(243), + [anon_sym_PLUS_EQ] = ACTIONS(241), + [anon_sym_DASH_EQ] = ACTIONS(241), + [anon_sym_u00d7] = ACTIONS(241), + [anon_sym_SLASH] = ACTIONS(243), + [anon_sym_u00f7] = ACTIONS(241), + [anon_sym_STAR_STAR] = ACTIONS(241), + [anon_sym_u220b] = ACTIONS(241), + [anon_sym_u220c] = ACTIONS(241), + [anon_sym_u2287] = ACTIONS(241), + [anon_sym_u2283] = ACTIONS(241), + [anon_sym_u2285] = ACTIONS(241), + [anon_sym_u2208] = ACTIONS(241), + [anon_sym_u2209] = ACTIONS(241), + [anon_sym_u2286] = ACTIONS(241), + [anon_sym_u2282] = ACTIONS(241), + [anon_sym_u2284] = ACTIONS(241), + [anon_sym_AT_AT] = ACTIONS(241), + }, + [479] = { + [ts_builtin_sym_end] = ACTIONS(148), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(156), - [sym_keyword_explain] = ACTIONS(156), - [sym_keyword_parallel] = ACTIONS(156), - [sym_keyword_timeout] = ACTIONS(156), - [sym_keyword_fetch] = ACTIONS(156), - [sym_keyword_limit] = ACTIONS(156), - [sym_keyword_order] = ACTIONS(156), - [sym_keyword_with] = ACTIONS(156), - [sym_keyword_where] = ACTIONS(156), - [sym_keyword_split] = ACTIONS(156), - [sym_keyword_group] = ACTIONS(156), - [sym_keyword_and] = ACTIONS(156), - [sym_keyword_or] = ACTIONS(158), - [sym_keyword_is] = ACTIONS(156), - [sym_keyword_not] = ACTIONS(158), - [sym_keyword_contains] = ACTIONS(156), - [sym_keyword_contains_not] = ACTIONS(156), - [sym_keyword_contains_all] = ACTIONS(156), - [sym_keyword_contains_any] = ACTIONS(156), - [sym_keyword_contains_none] = ACTIONS(156), - [sym_keyword_inside] = ACTIONS(156), - [sym_keyword_in] = ACTIONS(158), - [sym_keyword_not_inside] = ACTIONS(156), - [sym_keyword_all_inside] = ACTIONS(156), - [sym_keyword_any_inside] = ACTIONS(156), - [sym_keyword_none_inside] = ACTIONS(156), - [sym_keyword_outside] = ACTIONS(156), - [sym_keyword_intersects] = ACTIONS(156), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(158), - [anon_sym_GT] = ACTIONS(158), - [anon_sym_EQ] = ACTIONS(158), - [anon_sym_DASH] = ACTIONS(158), - [anon_sym_AT] = ACTIONS(158), - [anon_sym_LT_PIPE] = ACTIONS(156), - [anon_sym_AMP_AMP] = ACTIONS(156), - [anon_sym_PIPE_PIPE] = ACTIONS(156), - [anon_sym_QMARK_QMARK] = ACTIONS(156), - [anon_sym_QMARK_COLON] = ACTIONS(156), - [anon_sym_BANG_EQ] = ACTIONS(156), - [anon_sym_EQ_EQ] = ACTIONS(156), - [anon_sym_QMARK_EQ] = ACTIONS(156), - [anon_sym_STAR_EQ] = ACTIONS(156), - [anon_sym_TILDE] = ACTIONS(156), - [anon_sym_BANG_TILDE] = ACTIONS(156), - [anon_sym_STAR_TILDE] = ACTIONS(156), - [anon_sym_LT_EQ] = ACTIONS(156), - [anon_sym_GT_EQ] = ACTIONS(156), - [anon_sym_PLUS] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(156), - [anon_sym_DASH_EQ] = ACTIONS(156), - [anon_sym_u00d7] = ACTIONS(156), - [anon_sym_SLASH] = ACTIONS(158), - [anon_sym_u00f7] = ACTIONS(156), - [anon_sym_STAR_STAR] = ACTIONS(156), - [anon_sym_u220b] = ACTIONS(156), - [anon_sym_u220c] = ACTIONS(156), - [anon_sym_u2287] = ACTIONS(156), - [anon_sym_u2283] = ACTIONS(156), - [anon_sym_u2285] = ACTIONS(156), - [anon_sym_u2208] = ACTIONS(156), - [anon_sym_u2209] = ACTIONS(156), - [anon_sym_u2286] = ACTIONS(156), - [anon_sym_u2282] = ACTIONS(156), - [anon_sym_u2284] = ACTIONS(156), - [anon_sym_AT_AT] = ACTIONS(156), + [sym_semi_colon] = ACTIONS(148), + [sym_keyword_explain] = ACTIONS(148), + [sym_keyword_parallel] = ACTIONS(148), + [sym_keyword_timeout] = ACTIONS(148), + [sym_keyword_fetch] = ACTIONS(148), + [sym_keyword_limit] = ACTIONS(148), + [sym_keyword_order] = ACTIONS(148), + [sym_keyword_with] = ACTIONS(148), + [sym_keyword_where] = ACTIONS(148), + [sym_keyword_split] = ACTIONS(148), + [sym_keyword_group] = ACTIONS(148), + [sym_keyword_and] = ACTIONS(148), + [sym_keyword_or] = ACTIONS(150), + [sym_keyword_is] = ACTIONS(148), + [sym_keyword_not] = ACTIONS(150), + [sym_keyword_contains] = ACTIONS(148), + [sym_keyword_contains_not] = ACTIONS(148), + [sym_keyword_contains_all] = ACTIONS(148), + [sym_keyword_contains_any] = ACTIONS(148), + [sym_keyword_contains_none] = ACTIONS(148), + [sym_keyword_inside] = ACTIONS(148), + [sym_keyword_in] = ACTIONS(150), + [sym_keyword_not_inside] = ACTIONS(148), + [sym_keyword_all_inside] = ACTIONS(148), + [sym_keyword_any_inside] = ACTIONS(148), + [sym_keyword_none_inside] = ACTIONS(148), + [sym_keyword_outside] = ACTIONS(148), + [sym_keyword_intersects] = ACTIONS(148), + [anon_sym_COMMA] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(150), + [anon_sym_LT] = ACTIONS(150), + [anon_sym_GT] = ACTIONS(150), + [anon_sym_EQ] = ACTIONS(150), + [anon_sym_DASH] = ACTIONS(150), + [anon_sym_AT] = ACTIONS(150), + [anon_sym_LT_PIPE] = ACTIONS(148), + [anon_sym_AMP_AMP] = ACTIONS(148), + [anon_sym_PIPE_PIPE] = ACTIONS(148), + [anon_sym_QMARK_QMARK] = ACTIONS(148), + [anon_sym_QMARK_COLON] = ACTIONS(148), + [anon_sym_BANG_EQ] = ACTIONS(148), + [anon_sym_EQ_EQ] = ACTIONS(148), + [anon_sym_QMARK_EQ] = ACTIONS(148), + [anon_sym_STAR_EQ] = ACTIONS(148), + [anon_sym_TILDE] = ACTIONS(148), + [anon_sym_BANG_TILDE] = ACTIONS(148), + [anon_sym_STAR_TILDE] = ACTIONS(148), + [anon_sym_LT_EQ] = ACTIONS(148), + [anon_sym_GT_EQ] = ACTIONS(148), + [anon_sym_PLUS] = ACTIONS(150), + [anon_sym_PLUS_EQ] = ACTIONS(148), + [anon_sym_DASH_EQ] = ACTIONS(148), + [anon_sym_u00d7] = ACTIONS(148), + [anon_sym_SLASH] = ACTIONS(150), + [anon_sym_u00f7] = ACTIONS(148), + [anon_sym_STAR_STAR] = ACTIONS(148), + [anon_sym_u220b] = ACTIONS(148), + [anon_sym_u220c] = ACTIONS(148), + [anon_sym_u2287] = ACTIONS(148), + [anon_sym_u2283] = ACTIONS(148), + [anon_sym_u2285] = ACTIONS(148), + [anon_sym_u2208] = ACTIONS(148), + [anon_sym_u2209] = ACTIONS(148), + [anon_sym_u2286] = ACTIONS(148), + [anon_sym_u2282] = ACTIONS(148), + [anon_sym_u2284] = ACTIONS(148), + [anon_sym_AT_AT] = ACTIONS(148), }, - [471] = { + [480] = { [ts_builtin_sym_end] = ACTIONS(257), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(257), @@ -54470,439 +55161,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(257), [anon_sym_AT_AT] = ACTIONS(257), }, - [472] = { - [sym_operator] = STATE(701), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_value] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_flexible] = ACTIONS(652), - [sym_keyword_readonly] = ACTIONS(652), - [sym_keyword_type] = ACTIONS(652), - [sym_keyword_default] = ACTIONS(652), - [sym_keyword_assert] = ACTIONS(652), - [sym_keyword_permissions] = ACTIONS(652), - [sym_keyword_for] = ACTIONS(652), - [sym_keyword_comment] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [473] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_keyword_if] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_variable_name] = ACTIONS(341), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), - }, - [474] = { - [sym_operator] = STATE(724), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_as] = ACTIONS(652), - [sym_keyword_group] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_drop] = ACTIONS(652), - [sym_keyword_schemafull] = ACTIONS(652), - [sym_keyword_schemaless] = ACTIONS(652), - [sym_keyword_changefeed] = ACTIONS(652), - [sym_keyword_type] = ACTIONS(652), - [sym_keyword_permissions] = ACTIONS(652), - [sym_keyword_comment] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [475] = { - [sym_operator] = STATE(659), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_value] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_flexible] = ACTIONS(652), - [sym_keyword_readonly] = ACTIONS(652), - [sym_keyword_type] = ACTIONS(652), - [sym_keyword_default] = ACTIONS(652), - [sym_keyword_assert] = ACTIONS(652), - [sym_keyword_permissions] = ACTIONS(652), - [sym_keyword_comment] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [476] = { - [ts_builtin_sym_end] = ACTIONS(253), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(253), - [sym_keyword_explain] = ACTIONS(253), - [sym_keyword_parallel] = ACTIONS(253), - [sym_keyword_timeout] = ACTIONS(253), - [sym_keyword_fetch] = ACTIONS(253), - [sym_keyword_limit] = ACTIONS(253), - [sym_keyword_order] = ACTIONS(253), - [sym_keyword_with] = ACTIONS(253), - [sym_keyword_where] = ACTIONS(253), - [sym_keyword_split] = ACTIONS(253), - [sym_keyword_group] = ACTIONS(253), - [sym_keyword_and] = ACTIONS(253), - [sym_keyword_or] = ACTIONS(255), - [sym_keyword_is] = ACTIONS(253), - [sym_keyword_not] = ACTIONS(255), - [sym_keyword_contains] = ACTIONS(253), - [sym_keyword_contains_not] = ACTIONS(253), - [sym_keyword_contains_all] = ACTIONS(253), - [sym_keyword_contains_any] = ACTIONS(253), - [sym_keyword_contains_none] = ACTIONS(253), - [sym_keyword_inside] = ACTIONS(253), - [sym_keyword_in] = ACTIONS(255), - [sym_keyword_not_inside] = ACTIONS(253), - [sym_keyword_all_inside] = ACTIONS(253), - [sym_keyword_any_inside] = ACTIONS(253), - [sym_keyword_none_inside] = ACTIONS(253), - [sym_keyword_outside] = ACTIONS(253), - [sym_keyword_intersects] = ACTIONS(253), - [anon_sym_COMMA] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(255), - [anon_sym_LT] = ACTIONS(255), - [anon_sym_GT] = ACTIONS(255), - [anon_sym_EQ] = ACTIONS(255), - [anon_sym_DASH] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_LT_PIPE] = ACTIONS(253), - [anon_sym_AMP_AMP] = ACTIONS(253), - [anon_sym_PIPE_PIPE] = ACTIONS(253), - [anon_sym_QMARK_QMARK] = ACTIONS(253), - [anon_sym_QMARK_COLON] = ACTIONS(253), - [anon_sym_BANG_EQ] = ACTIONS(253), - [anon_sym_EQ_EQ] = ACTIONS(253), - [anon_sym_QMARK_EQ] = ACTIONS(253), - [anon_sym_STAR_EQ] = ACTIONS(253), - [anon_sym_TILDE] = ACTIONS(253), - [anon_sym_BANG_TILDE] = ACTIONS(253), - [anon_sym_STAR_TILDE] = ACTIONS(253), - [anon_sym_LT_EQ] = ACTIONS(253), - [anon_sym_GT_EQ] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(255), - [anon_sym_PLUS_EQ] = ACTIONS(253), - [anon_sym_DASH_EQ] = ACTIONS(253), - [anon_sym_u00d7] = ACTIONS(253), - [anon_sym_SLASH] = ACTIONS(255), - [anon_sym_u00f7] = ACTIONS(253), - [anon_sym_STAR_STAR] = ACTIONS(253), - [anon_sym_u220b] = ACTIONS(253), - [anon_sym_u220c] = ACTIONS(253), - [anon_sym_u2287] = ACTIONS(253), - [anon_sym_u2283] = ACTIONS(253), - [anon_sym_u2285] = ACTIONS(253), - [anon_sym_u2208] = ACTIONS(253), - [anon_sym_u2209] = ACTIONS(253), - [anon_sym_u2286] = ACTIONS(253), - [anon_sym_u2282] = ACTIONS(253), - [anon_sym_u2284] = ACTIONS(253), - [anon_sym_AT_AT] = ACTIONS(253), - }, - [477] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_return] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [478] = { - [sym_operator] = STATE(689), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(672), + [481] = { + [sym_operator] = STATE(729), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(672), - [sym_keyword_as] = ACTIONS(672), + [sym_semi_colon] = ACTIONS(684), + [sym_keyword_value] = ACTIONS(684), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -54920,14 +55184,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_drop] = ACTIONS(672), - [sym_keyword_schemafull] = ACTIONS(672), - [sym_keyword_schemaless] = ACTIONS(672), - [sym_keyword_changefeed] = ACTIONS(672), - [sym_keyword_type] = ACTIONS(672), - [sym_keyword_permissions] = ACTIONS(672), - [sym_keyword_for] = ACTIONS(672), - [sym_keyword_comment] = ACTIONS(672), + [sym_keyword_flexible] = ACTIONS(684), + [sym_keyword_readonly] = ACTIONS(684), + [sym_keyword_type] = ACTIONS(684), + [sym_keyword_default] = ACTIONS(684), + [sym_keyword_assert] = ACTIONS(684), + [sym_keyword_permissions] = ACTIONS(684), + [sym_keyword_comment] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(684), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -54967,80 +55232,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [479] = { - [ts_builtin_sym_end] = ACTIONS(77), + [482] = { + [sym_operator] = STATE(665), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(77), - [sym_keyword_explain] = ACTIONS(77), - [sym_keyword_parallel] = ACTIONS(77), - [sym_keyword_timeout] = ACTIONS(77), - [sym_keyword_fetch] = ACTIONS(77), - [sym_keyword_limit] = ACTIONS(77), - [sym_keyword_order] = ACTIONS(77), - [sym_keyword_with] = ACTIONS(77), - [sym_keyword_where] = ACTIONS(77), - [sym_keyword_split] = ACTIONS(77), - [sym_keyword_group] = ACTIONS(77), - [sym_keyword_and] = ACTIONS(77), - [sym_keyword_or] = ACTIONS(79), - [sym_keyword_is] = ACTIONS(77), - [sym_keyword_not] = ACTIONS(79), - [sym_keyword_contains] = ACTIONS(77), - [sym_keyword_contains_not] = ACTIONS(77), - [sym_keyword_contains_all] = ACTIONS(77), - [sym_keyword_contains_any] = ACTIONS(77), - [sym_keyword_contains_none] = ACTIONS(77), - [sym_keyword_inside] = ACTIONS(77), - [sym_keyword_in] = ACTIONS(79), - [sym_keyword_not_inside] = ACTIONS(77), - [sym_keyword_all_inside] = ACTIONS(77), - [sym_keyword_any_inside] = ACTIONS(77), - [sym_keyword_none_inside] = ACTIONS(77), - [sym_keyword_outside] = ACTIONS(77), - [sym_keyword_intersects] = ACTIONS(77), - [anon_sym_COMMA] = ACTIONS(77), - [anon_sym_STAR] = ACTIONS(79), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_EQ] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_AT] = ACTIONS(79), - [anon_sym_LT_PIPE] = ACTIONS(77), - [anon_sym_AMP_AMP] = ACTIONS(77), - [anon_sym_PIPE_PIPE] = ACTIONS(77), - [anon_sym_QMARK_QMARK] = ACTIONS(77), - [anon_sym_QMARK_COLON] = ACTIONS(77), - [anon_sym_BANG_EQ] = ACTIONS(77), - [anon_sym_EQ_EQ] = ACTIONS(77), - [anon_sym_QMARK_EQ] = ACTIONS(77), - [anon_sym_STAR_EQ] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_BANG_TILDE] = ACTIONS(77), - [anon_sym_STAR_TILDE] = ACTIONS(77), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_PLUS_EQ] = ACTIONS(77), - [anon_sym_DASH_EQ] = ACTIONS(77), - [anon_sym_u00d7] = ACTIONS(77), - [anon_sym_SLASH] = ACTIONS(79), - [anon_sym_u00f7] = ACTIONS(77), - [anon_sym_STAR_STAR] = ACTIONS(77), - [anon_sym_u220b] = ACTIONS(77), - [anon_sym_u220c] = ACTIONS(77), - [anon_sym_u2287] = ACTIONS(77), - [anon_sym_u2283] = ACTIONS(77), - [anon_sym_u2285] = ACTIONS(77), - [anon_sym_u2208] = ACTIONS(77), - [anon_sym_u2209] = ACTIONS(77), - [anon_sym_u2286] = ACTIONS(77), - [anon_sym_u2282] = ACTIONS(77), - [anon_sym_u2284] = ACTIONS(77), - [anon_sym_AT_AT] = ACTIONS(77), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_value] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_flexible] = ACTIONS(644), + [sym_keyword_readonly] = ACTIONS(644), + [sym_keyword_type] = ACTIONS(644), + [sym_keyword_default] = ACTIONS(644), + [sym_keyword_assert] = ACTIONS(644), + [sym_keyword_permissions] = ACTIONS(644), + [sym_keyword_for] = ACTIONS(644), + [sym_keyword_comment] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), }, - [480] = { - [sym_operator] = STATE(701), - [sym_binary_operator] = STATE(783), + [483] = { + [ts_builtin_sym_end] = ACTIONS(225), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(225), + [sym_keyword_explain] = ACTIONS(225), + [sym_keyword_parallel] = ACTIONS(225), + [sym_keyword_timeout] = ACTIONS(225), + [sym_keyword_fetch] = ACTIONS(225), + [sym_keyword_limit] = ACTIONS(225), + [sym_keyword_order] = ACTIONS(225), + [sym_keyword_with] = ACTIONS(225), + [sym_keyword_where] = ACTIONS(225), + [sym_keyword_split] = ACTIONS(225), + [sym_keyword_group] = ACTIONS(225), + [sym_keyword_and] = ACTIONS(225), + [sym_keyword_or] = ACTIONS(227), + [sym_keyword_is] = ACTIONS(225), + [sym_keyword_not] = ACTIONS(227), + [sym_keyword_contains] = ACTIONS(225), + [sym_keyword_contains_not] = ACTIONS(225), + [sym_keyword_contains_all] = ACTIONS(225), + [sym_keyword_contains_any] = ACTIONS(225), + [sym_keyword_contains_none] = ACTIONS(225), + [sym_keyword_inside] = ACTIONS(225), + [sym_keyword_in] = ACTIONS(227), + [sym_keyword_not_inside] = ACTIONS(225), + [sym_keyword_all_inside] = ACTIONS(225), + [sym_keyword_any_inside] = ACTIONS(225), + [sym_keyword_none_inside] = ACTIONS(225), + [sym_keyword_outside] = ACTIONS(225), + [sym_keyword_intersects] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(225), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_LT] = ACTIONS(227), + [anon_sym_GT] = ACTIONS(227), + [anon_sym_EQ] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_AT] = ACTIONS(227), + [anon_sym_LT_PIPE] = ACTIONS(225), + [anon_sym_AMP_AMP] = ACTIONS(225), + [anon_sym_PIPE_PIPE] = ACTIONS(225), + [anon_sym_QMARK_QMARK] = ACTIONS(225), + [anon_sym_QMARK_COLON] = ACTIONS(225), + [anon_sym_BANG_EQ] = ACTIONS(225), + [anon_sym_EQ_EQ] = ACTIONS(225), + [anon_sym_QMARK_EQ] = ACTIONS(225), + [anon_sym_STAR_EQ] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_BANG_TILDE] = ACTIONS(225), + [anon_sym_STAR_TILDE] = ACTIONS(225), + [anon_sym_LT_EQ] = ACTIONS(225), + [anon_sym_GT_EQ] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(227), + [anon_sym_PLUS_EQ] = ACTIONS(225), + [anon_sym_DASH_EQ] = ACTIONS(225), + [anon_sym_u00d7] = ACTIONS(225), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_u00f7] = ACTIONS(225), + [anon_sym_STAR_STAR] = ACTIONS(225), + [anon_sym_u220b] = ACTIONS(225), + [anon_sym_u220c] = ACTIONS(225), + [anon_sym_u2287] = ACTIONS(225), + [anon_sym_u2283] = ACTIONS(225), + [anon_sym_u2285] = ACTIONS(225), + [anon_sym_u2208] = ACTIONS(225), + [anon_sym_u2209] = ACTIONS(225), + [anon_sym_u2286] = ACTIONS(225), + [anon_sym_u2282] = ACTIONS(225), + [anon_sym_u2284] = ACTIONS(225), + [anon_sym_AT_AT] = ACTIONS(225), + }, + [484] = { + [sym_operator] = STATE(665), + [sym_binary_operator] = STATE(779), [ts_builtin_sym_end] = ACTIONS(672), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(672), @@ -55109,440 +55445,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [481] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), - [sym_comment] = ACTIONS(3), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [sym_keyword_then] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(212), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), - }, - [482] = { - [ts_builtin_sym_end] = ACTIONS(233), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(233), - [sym_keyword_explain] = ACTIONS(233), - [sym_keyword_parallel] = ACTIONS(233), - [sym_keyword_timeout] = ACTIONS(233), - [sym_keyword_fetch] = ACTIONS(233), - [sym_keyword_limit] = ACTIONS(233), - [sym_keyword_order] = ACTIONS(233), - [sym_keyword_with] = ACTIONS(233), - [sym_keyword_where] = ACTIONS(233), - [sym_keyword_split] = ACTIONS(233), - [sym_keyword_group] = ACTIONS(233), - [sym_keyword_and] = ACTIONS(233), - [sym_keyword_or] = ACTIONS(235), - [sym_keyword_is] = ACTIONS(233), - [sym_keyword_not] = ACTIONS(235), - [sym_keyword_contains] = ACTIONS(233), - [sym_keyword_contains_not] = ACTIONS(233), - [sym_keyword_contains_all] = ACTIONS(233), - [sym_keyword_contains_any] = ACTIONS(233), - [sym_keyword_contains_none] = ACTIONS(233), - [sym_keyword_inside] = ACTIONS(233), - [sym_keyword_in] = ACTIONS(235), - [sym_keyword_not_inside] = ACTIONS(233), - [sym_keyword_all_inside] = ACTIONS(233), - [sym_keyword_any_inside] = ACTIONS(233), - [sym_keyword_none_inside] = ACTIONS(233), - [sym_keyword_outside] = ACTIONS(233), - [sym_keyword_intersects] = ACTIONS(233), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_STAR] = ACTIONS(235), - [anon_sym_LT] = ACTIONS(235), - [anon_sym_GT] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(235), - [anon_sym_DASH] = ACTIONS(235), - [anon_sym_AT] = ACTIONS(235), - [anon_sym_LT_PIPE] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(233), - [anon_sym_PIPE_PIPE] = ACTIONS(233), - [anon_sym_QMARK_QMARK] = ACTIONS(233), - [anon_sym_QMARK_COLON] = ACTIONS(233), - [anon_sym_BANG_EQ] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(233), - [anon_sym_QMARK_EQ] = ACTIONS(233), - [anon_sym_STAR_EQ] = ACTIONS(233), - [anon_sym_TILDE] = ACTIONS(233), - [anon_sym_BANG_TILDE] = ACTIONS(233), - [anon_sym_STAR_TILDE] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(233), - [anon_sym_PLUS] = ACTIONS(235), - [anon_sym_PLUS_EQ] = ACTIONS(233), - [anon_sym_DASH_EQ] = ACTIONS(233), - [anon_sym_u00d7] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(235), - [anon_sym_u00f7] = ACTIONS(233), - [anon_sym_STAR_STAR] = ACTIONS(233), - [anon_sym_u220b] = ACTIONS(233), - [anon_sym_u220c] = ACTIONS(233), - [anon_sym_u2287] = ACTIONS(233), - [anon_sym_u2283] = ACTIONS(233), - [anon_sym_u2285] = ACTIONS(233), - [anon_sym_u2208] = ACTIONS(233), - [anon_sym_u2209] = ACTIONS(233), - [anon_sym_u2286] = ACTIONS(233), - [anon_sym_u2282] = ACTIONS(233), - [anon_sym_u2284] = ACTIONS(233), - [anon_sym_AT_AT] = ACTIONS(233), - }, - [483] = { - [ts_builtin_sym_end] = ACTIONS(180), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(180), - [sym_keyword_explain] = ACTIONS(180), - [sym_keyword_parallel] = ACTIONS(180), - [sym_keyword_timeout] = ACTIONS(180), - [sym_keyword_fetch] = ACTIONS(180), - [sym_keyword_limit] = ACTIONS(180), - [sym_keyword_order] = ACTIONS(180), - [sym_keyword_with] = ACTIONS(180), - [sym_keyword_where] = ACTIONS(180), - [sym_keyword_split] = ACTIONS(180), - [sym_keyword_group] = ACTIONS(180), - [sym_keyword_and] = ACTIONS(180), - [sym_keyword_or] = ACTIONS(182), - [sym_keyword_is] = ACTIONS(180), - [sym_keyword_not] = ACTIONS(182), - [sym_keyword_contains] = ACTIONS(180), - [sym_keyword_contains_not] = ACTIONS(180), - [sym_keyword_contains_all] = ACTIONS(180), - [sym_keyword_contains_any] = ACTIONS(180), - [sym_keyword_contains_none] = ACTIONS(180), - [sym_keyword_inside] = ACTIONS(180), - [sym_keyword_in] = ACTIONS(182), - [sym_keyword_not_inside] = ACTIONS(180), - [sym_keyword_all_inside] = ACTIONS(180), - [sym_keyword_any_inside] = ACTIONS(180), - [sym_keyword_none_inside] = ACTIONS(180), - [sym_keyword_outside] = ACTIONS(180), - [sym_keyword_intersects] = ACTIONS(180), - [anon_sym_COMMA] = ACTIONS(180), - [anon_sym_STAR] = ACTIONS(182), - [anon_sym_LT] = ACTIONS(182), - [anon_sym_GT] = ACTIONS(182), - [anon_sym_EQ] = ACTIONS(182), - [anon_sym_DASH] = ACTIONS(182), - [anon_sym_AT] = ACTIONS(182), - [anon_sym_LT_PIPE] = ACTIONS(180), - [anon_sym_AMP_AMP] = ACTIONS(180), - [anon_sym_PIPE_PIPE] = ACTIONS(180), - [anon_sym_QMARK_QMARK] = ACTIONS(180), - [anon_sym_QMARK_COLON] = ACTIONS(180), - [anon_sym_BANG_EQ] = ACTIONS(180), - [anon_sym_EQ_EQ] = ACTIONS(180), - [anon_sym_QMARK_EQ] = ACTIONS(180), - [anon_sym_STAR_EQ] = ACTIONS(180), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_BANG_TILDE] = ACTIONS(180), - [anon_sym_STAR_TILDE] = ACTIONS(180), - [anon_sym_LT_EQ] = ACTIONS(180), - [anon_sym_GT_EQ] = ACTIONS(180), - [anon_sym_PLUS] = ACTIONS(182), - [anon_sym_PLUS_EQ] = ACTIONS(180), - [anon_sym_DASH_EQ] = ACTIONS(180), - [anon_sym_u00d7] = ACTIONS(180), - [anon_sym_SLASH] = ACTIONS(182), - [anon_sym_u00f7] = ACTIONS(180), - [anon_sym_STAR_STAR] = ACTIONS(180), - [anon_sym_u220b] = ACTIONS(180), - [anon_sym_u220c] = ACTIONS(180), - [anon_sym_u2287] = ACTIONS(180), - [anon_sym_u2283] = ACTIONS(180), - [anon_sym_u2285] = ACTIONS(180), - [anon_sym_u2208] = ACTIONS(180), - [anon_sym_u2209] = ACTIONS(180), - [anon_sym_u2286] = ACTIONS(180), - [anon_sym_u2282] = ACTIONS(180), - [anon_sym_u2284] = ACTIONS(180), - [anon_sym_AT_AT] = ACTIONS(180), - }, - [484] = { - [ts_builtin_sym_end] = ACTIONS(249), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(249), - [sym_keyword_explain] = ACTIONS(249), - [sym_keyword_parallel] = ACTIONS(249), - [sym_keyword_timeout] = ACTIONS(249), - [sym_keyword_fetch] = ACTIONS(249), - [sym_keyword_limit] = ACTIONS(249), - [sym_keyword_order] = ACTIONS(249), - [sym_keyword_with] = ACTIONS(249), - [sym_keyword_where] = ACTIONS(249), - [sym_keyword_split] = ACTIONS(249), - [sym_keyword_group] = ACTIONS(249), - [sym_keyword_and] = ACTIONS(249), - [sym_keyword_or] = ACTIONS(251), - [sym_keyword_is] = ACTIONS(249), - [sym_keyword_not] = ACTIONS(251), - [sym_keyword_contains] = ACTIONS(249), - [sym_keyword_contains_not] = ACTIONS(249), - [sym_keyword_contains_all] = ACTIONS(249), - [sym_keyword_contains_any] = ACTIONS(249), - [sym_keyword_contains_none] = ACTIONS(249), - [sym_keyword_inside] = ACTIONS(249), - [sym_keyword_in] = ACTIONS(251), - [sym_keyword_not_inside] = ACTIONS(249), - [sym_keyword_all_inside] = ACTIONS(249), - [sym_keyword_any_inside] = ACTIONS(249), - [sym_keyword_none_inside] = ACTIONS(249), - [sym_keyword_outside] = ACTIONS(249), - [sym_keyword_intersects] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_EQ] = ACTIONS(251), - [anon_sym_DASH] = ACTIONS(251), - [anon_sym_AT] = ACTIONS(251), - [anon_sym_LT_PIPE] = ACTIONS(249), - [anon_sym_AMP_AMP] = ACTIONS(249), - [anon_sym_PIPE_PIPE] = ACTIONS(249), - [anon_sym_QMARK_QMARK] = ACTIONS(249), - [anon_sym_QMARK_COLON] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_QMARK_EQ] = ACTIONS(249), - [anon_sym_STAR_EQ] = ACTIONS(249), - [anon_sym_TILDE] = ACTIONS(249), - [anon_sym_BANG_TILDE] = ACTIONS(249), - [anon_sym_STAR_TILDE] = ACTIONS(249), - [anon_sym_LT_EQ] = ACTIONS(249), - [anon_sym_GT_EQ] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(251), - [anon_sym_PLUS_EQ] = ACTIONS(249), - [anon_sym_DASH_EQ] = ACTIONS(249), - [anon_sym_u00d7] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(251), - [anon_sym_u00f7] = ACTIONS(249), - [anon_sym_STAR_STAR] = ACTIONS(249), - [anon_sym_u220b] = ACTIONS(249), - [anon_sym_u220c] = ACTIONS(249), - [anon_sym_u2287] = ACTIONS(249), - [anon_sym_u2283] = ACTIONS(249), - [anon_sym_u2285] = ACTIONS(249), - [anon_sym_u2208] = ACTIONS(249), - [anon_sym_u2209] = ACTIONS(249), - [anon_sym_u2286] = ACTIONS(249), - [anon_sym_u2282] = ACTIONS(249), - [anon_sym_u2284] = ACTIONS(249), - [anon_sym_AT_AT] = ACTIONS(249), - }, [485] = { - [ts_builtin_sym_end] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(237), - [sym_keyword_explain] = ACTIONS(237), - [sym_keyword_parallel] = ACTIONS(237), - [sym_keyword_timeout] = ACTIONS(237), - [sym_keyword_fetch] = ACTIONS(237), - [sym_keyword_limit] = ACTIONS(237), - [sym_keyword_order] = ACTIONS(237), - [sym_keyword_with] = ACTIONS(237), - [sym_keyword_where] = ACTIONS(237), - [sym_keyword_split] = ACTIONS(237), - [sym_keyword_group] = ACTIONS(237), - [sym_keyword_and] = ACTIONS(237), - [sym_keyword_or] = ACTIONS(239), - [sym_keyword_is] = ACTIONS(237), - [sym_keyword_not] = ACTIONS(239), - [sym_keyword_contains] = ACTIONS(237), - [sym_keyword_contains_not] = ACTIONS(237), - [sym_keyword_contains_all] = ACTIONS(237), - [sym_keyword_contains_any] = ACTIONS(237), - [sym_keyword_contains_none] = ACTIONS(237), - [sym_keyword_inside] = ACTIONS(237), - [sym_keyword_in] = ACTIONS(239), - [sym_keyword_not_inside] = ACTIONS(237), - [sym_keyword_all_inside] = ACTIONS(237), - [sym_keyword_any_inside] = ACTIONS(237), - [sym_keyword_none_inside] = ACTIONS(237), - [sym_keyword_outside] = ACTIONS(237), - [sym_keyword_intersects] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(239), - [anon_sym_LT] = ACTIONS(239), - [anon_sym_GT] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(239), - [anon_sym_DASH] = ACTIONS(239), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_LT_PIPE] = ACTIONS(237), - [anon_sym_AMP_AMP] = ACTIONS(237), - [anon_sym_PIPE_PIPE] = ACTIONS(237), - [anon_sym_QMARK_QMARK] = ACTIONS(237), - [anon_sym_QMARK_COLON] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_QMARK_EQ] = ACTIONS(237), - [anon_sym_STAR_EQ] = ACTIONS(237), - [anon_sym_TILDE] = ACTIONS(237), - [anon_sym_BANG_TILDE] = ACTIONS(237), - [anon_sym_STAR_TILDE] = ACTIONS(237), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(239), - [anon_sym_PLUS_EQ] = ACTIONS(237), - [anon_sym_DASH_EQ] = ACTIONS(237), - [anon_sym_u00d7] = ACTIONS(237), - [anon_sym_SLASH] = ACTIONS(239), - [anon_sym_u00f7] = ACTIONS(237), - [anon_sym_STAR_STAR] = ACTIONS(237), - [anon_sym_u220b] = ACTIONS(237), - [anon_sym_u220c] = ACTIONS(237), - [anon_sym_u2287] = ACTIONS(237), - [anon_sym_u2283] = ACTIONS(237), - [anon_sym_u2285] = ACTIONS(237), - [anon_sym_u2208] = ACTIONS(237), - [anon_sym_u2209] = ACTIONS(237), - [anon_sym_u2286] = ACTIONS(237), - [anon_sym_u2282] = ACTIONS(237), - [anon_sym_u2284] = ACTIONS(237), - [anon_sym_AT_AT] = ACTIONS(237), - }, - [486] = { - [sym_operator] = STATE(672), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_value] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [sym_keyword_flexible] = ACTIONS(652), - [sym_keyword_readonly] = ACTIONS(652), - [sym_keyword_type] = ACTIONS(652), - [sym_keyword_default] = ACTIONS(652), - [sym_keyword_assert] = ACTIONS(652), - [sym_keyword_permissions] = ACTIONS(652), - [sym_keyword_comment] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [ts_builtin_sym_end] = ACTIONS(160), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_return] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(686), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [487] = { - [sym_operator] = STATE(672), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(682), + [486] = { + [sym_operator] = STATE(760), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(672), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(682), - [sym_keyword_value] = ACTIONS(682), + [sym_semi_colon] = ACTIONS(672), + [sym_keyword_explain] = ACTIONS(672), + [sym_keyword_parallel] = ACTIONS(672), + [sym_keyword_timeout] = ACTIONS(672), + [sym_keyword_fetch] = ACTIONS(672), + [sym_keyword_limit] = ACTIONS(672), + [sym_keyword_order] = ACTIONS(672), + [sym_keyword_split] = ACTIONS(672), + [sym_keyword_group] = ACTIONS(672), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(315), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -55558,13 +55547,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_flexible] = ACTIONS(682), - [sym_keyword_readonly] = ACTIONS(682), - [sym_keyword_type] = ACTIONS(682), - [sym_keyword_default] = ACTIONS(682), - [sym_keyword_assert] = ACTIONS(682), - [sym_keyword_permissions] = ACTIONS(682), - [sym_keyword_comment] = ACTIONS(682), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -55604,22 +55586,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [488] = { - [sym_operator] = STATE(696), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(672), + [487] = { + [sym_operator] = STATE(727), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(678), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(672), - [sym_keyword_explain] = ACTIONS(672), - [sym_keyword_parallel] = ACTIONS(672), - [sym_keyword_timeout] = ACTIONS(672), - [sym_keyword_fetch] = ACTIONS(672), - [sym_keyword_limit] = ACTIONS(672), - [sym_keyword_order] = ACTIONS(672), - [sym_keyword_split] = ACTIONS(672), - [sym_keyword_group] = ACTIONS(672), + [sym_semi_colon] = ACTIONS(678), + [sym_keyword_value] = ACTIONS(678), [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(315), + [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), [sym_keyword_not] = ACTIONS(319), [sym_keyword_contains] = ACTIONS(313), @@ -55635,6 +55610,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), + [sym_keyword_flexible] = ACTIONS(678), + [sym_keyword_readonly] = ACTIONS(678), + [sym_keyword_type] = ACTIONS(678), + [sym_keyword_default] = ACTIONS(678), + [sym_keyword_assert] = ACTIONS(678), + [sym_keyword_permissions] = ACTIONS(678), + [sym_keyword_comment] = ACTIONS(678), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -55674,180 +55656,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, + [488] = { + [sym_operator] = STATE(760), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_explain] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_fetch] = ACTIONS(644), + [sym_keyword_limit] = ACTIONS(644), + [sym_keyword_order] = ACTIONS(644), + [sym_keyword_split] = ACTIONS(644), + [sym_keyword_group] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(646), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, [489] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(22), - [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(343), - [sym_keyword_and] = ACTIONS(343), - [sym_keyword_or] = ACTIONS(343), - [sym_keyword_is] = ACTIONS(343), - [sym_keyword_not] = ACTIONS(343), - [sym_keyword_contains] = ACTIONS(343), - [sym_keyword_contains_not] = ACTIONS(343), - [sym_keyword_contains_all] = ACTIONS(343), - [sym_keyword_contains_any] = ACTIONS(343), - [sym_keyword_contains_none] = ACTIONS(343), - [sym_keyword_inside] = ACTIONS(343), - [sym_keyword_in] = ACTIONS(343), - [sym_keyword_not_inside] = ACTIONS(343), - [sym_keyword_all_inside] = ACTIONS(343), - [sym_keyword_any_inside] = ACTIONS(343), - [sym_keyword_none_inside] = ACTIONS(343), - [sym_keyword_outside] = ACTIONS(343), - [sym_keyword_intersects] = ACTIONS(343), - [anon_sym_DASH_GT] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(343), - [anon_sym_LT_DASH_GT] = ACTIONS(341), - [anon_sym_STAR] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_AT] = ACTIONS(343), - [anon_sym_LT_PIPE] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_QMARK_QMARK] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_QMARK_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_TILDE] = ACTIONS(341), - [anon_sym_BANG_TILDE] = ACTIONS(341), - [anon_sym_STAR_TILDE] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_u00d7] = ACTIONS(341), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_u00f7] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(341), - [anon_sym_u220b] = ACTIONS(341), - [anon_sym_u220c] = ACTIONS(341), - [anon_sym_u2287] = ACTIONS(341), - [anon_sym_u2283] = ACTIONS(341), - [anon_sym_u2285] = ACTIONS(341), - [anon_sym_u2208] = ACTIONS(341), - [anon_sym_u2209] = ACTIONS(341), - [anon_sym_u2286] = ACTIONS(341), - [anon_sym_u2282] = ACTIONS(341), - [anon_sym_u2284] = ACTIONS(341), - [anon_sym_AT_AT] = ACTIONS(341), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(38), + [sym_comment] = ACTIONS(3), + [sym_keyword_from] = ACTIONS(142), + [sym_keyword_and] = ACTIONS(142), + [sym_keyword_or] = ACTIONS(142), + [sym_keyword_is] = ACTIONS(142), + [sym_keyword_not] = ACTIONS(142), + [sym_keyword_contains] = ACTIONS(142), + [sym_keyword_contains_not] = ACTIONS(142), + [sym_keyword_contains_all] = ACTIONS(142), + [sym_keyword_contains_any] = ACTIONS(142), + [sym_keyword_contains_none] = ACTIONS(142), + [sym_keyword_inside] = ACTIONS(142), + [sym_keyword_in] = ACTIONS(142), + [sym_keyword_not_inside] = ACTIONS(142), + [sym_keyword_all_inside] = ACTIONS(142), + [sym_keyword_any_inside] = ACTIONS(142), + [sym_keyword_none_inside] = ACTIONS(142), + [sym_keyword_outside] = ACTIONS(142), + [sym_keyword_intersects] = ACTIONS(142), + [anon_sym_DASH_GT] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(142), + [anon_sym_LT_DASH_GT] = ACTIONS(140), + [anon_sym_STAR] = ACTIONS(142), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LT] = ACTIONS(142), + [anon_sym_GT] = ACTIONS(142), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(142), + [anon_sym_DASH] = ACTIONS(142), + [anon_sym_AT] = ACTIONS(142), + [anon_sym_LT_PIPE] = ACTIONS(140), + [anon_sym_AMP_AMP] = ACTIONS(140), + [anon_sym_PIPE_PIPE] = ACTIONS(140), + [anon_sym_QMARK_QMARK] = ACTIONS(140), + [anon_sym_QMARK_COLON] = ACTIONS(140), + [anon_sym_BANG_EQ] = ACTIONS(140), + [anon_sym_EQ_EQ] = ACTIONS(140), + [anon_sym_QMARK_EQ] = ACTIONS(140), + [anon_sym_STAR_EQ] = ACTIONS(140), + [anon_sym_TILDE] = ACTIONS(140), + [anon_sym_BANG_TILDE] = ACTIONS(140), + [anon_sym_STAR_TILDE] = ACTIONS(140), + [anon_sym_LT_EQ] = ACTIONS(140), + [anon_sym_GT_EQ] = ACTIONS(140), + [anon_sym_PLUS] = ACTIONS(142), + [anon_sym_PLUS_EQ] = ACTIONS(140), + [anon_sym_DASH_EQ] = ACTIONS(140), + [anon_sym_u00d7] = ACTIONS(140), + [anon_sym_SLASH] = ACTIONS(142), + [anon_sym_u00f7] = ACTIONS(140), + [anon_sym_STAR_STAR] = ACTIONS(140), + [anon_sym_u220b] = ACTIONS(140), + [anon_sym_u220c] = ACTIONS(140), + [anon_sym_u2287] = ACTIONS(140), + [anon_sym_u2283] = ACTIONS(140), + [anon_sym_u2285] = ACTIONS(140), + [anon_sym_u2208] = ACTIONS(140), + [anon_sym_u2209] = ACTIONS(140), + [anon_sym_u2286] = ACTIONS(140), + [anon_sym_u2282] = ACTIONS(140), + [anon_sym_u2284] = ACTIONS(140), + [anon_sym_AT_AT] = ACTIONS(140), }, [490] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(37), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(17), [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(214), - [sym_keyword_and] = ACTIONS(214), - [sym_keyword_or] = ACTIONS(214), - [sym_keyword_is] = ACTIONS(214), - [sym_keyword_not] = ACTIONS(214), - [sym_keyword_contains] = ACTIONS(214), - [sym_keyword_contains_not] = ACTIONS(214), - [sym_keyword_contains_all] = ACTIONS(214), - [sym_keyword_contains_any] = ACTIONS(214), - [sym_keyword_contains_none] = ACTIONS(214), - [sym_keyword_inside] = ACTIONS(214), - [sym_keyword_in] = ACTIONS(214), - [sym_keyword_not_inside] = ACTIONS(214), - [sym_keyword_all_inside] = ACTIONS(214), - [sym_keyword_any_inside] = ACTIONS(214), - [sym_keyword_none_inside] = ACTIONS(214), - [sym_keyword_outside] = ACTIONS(214), - [sym_keyword_intersects] = ACTIONS(214), - [anon_sym_DASH_GT] = ACTIONS(212), - [anon_sym_LBRACK] = ACTIONS(212), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_LT_DASH] = ACTIONS(214), - [anon_sym_LT_DASH_GT] = ACTIONS(212), - [anon_sym_STAR] = ACTIONS(214), - [anon_sym_DOT] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), - [anon_sym_EQ] = ACTIONS(214), - [anon_sym_DASH] = ACTIONS(214), - [anon_sym_AT] = ACTIONS(214), - [anon_sym_LT_PIPE] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_QMARK_QMARK] = ACTIONS(212), - [anon_sym_QMARK_COLON] = ACTIONS(212), - [anon_sym_BANG_EQ] = ACTIONS(212), - [anon_sym_EQ_EQ] = ACTIONS(212), - [anon_sym_QMARK_EQ] = ACTIONS(212), - [anon_sym_STAR_EQ] = ACTIONS(212), - [anon_sym_TILDE] = ACTIONS(212), - [anon_sym_BANG_TILDE] = ACTIONS(212), - [anon_sym_STAR_TILDE] = ACTIONS(212), - [anon_sym_LT_EQ] = ACTIONS(212), - [anon_sym_GT_EQ] = ACTIONS(212), - [anon_sym_PLUS] = ACTIONS(214), - [anon_sym_PLUS_EQ] = ACTIONS(212), - [anon_sym_DASH_EQ] = ACTIONS(212), - [anon_sym_u00d7] = ACTIONS(212), - [anon_sym_SLASH] = ACTIONS(214), - [anon_sym_u00f7] = ACTIONS(212), - [anon_sym_STAR_STAR] = ACTIONS(212), - [anon_sym_u220b] = ACTIONS(212), - [anon_sym_u220c] = ACTIONS(212), - [anon_sym_u2287] = ACTIONS(212), - [anon_sym_u2283] = ACTIONS(212), - [anon_sym_u2285] = ACTIONS(212), - [anon_sym_u2208] = ACTIONS(212), - [anon_sym_u2209] = ACTIONS(212), - [anon_sym_u2286] = ACTIONS(212), - [anon_sym_u2282] = ACTIONS(212), - [anon_sym_u2284] = ACTIONS(212), - [anon_sym_AT_AT] = ACTIONS(212), + [sym_keyword_from] = ACTIONS(202), + [sym_keyword_and] = ACTIONS(202), + [sym_keyword_or] = ACTIONS(202), + [sym_keyword_is] = ACTIONS(202), + [sym_keyword_not] = ACTIONS(202), + [sym_keyword_contains] = ACTIONS(202), + [sym_keyword_contains_not] = ACTIONS(202), + [sym_keyword_contains_all] = ACTIONS(202), + [sym_keyword_contains_any] = ACTIONS(202), + [sym_keyword_contains_none] = ACTIONS(202), + [sym_keyword_inside] = ACTIONS(202), + [sym_keyword_in] = ACTIONS(202), + [sym_keyword_not_inside] = ACTIONS(202), + [sym_keyword_all_inside] = ACTIONS(202), + [sym_keyword_any_inside] = ACTIONS(202), + [sym_keyword_none_inside] = ACTIONS(202), + [sym_keyword_outside] = ACTIONS(202), + [sym_keyword_intersects] = ACTIONS(202), + [anon_sym_DASH_GT] = ACTIONS(200), + [anon_sym_LBRACK] = ACTIONS(200), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(202), + [anon_sym_LT_DASH_GT] = ACTIONS(200), + [anon_sym_STAR] = ACTIONS(202), + [anon_sym_DOT] = ACTIONS(200), + [anon_sym_LT] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(202), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_LT_PIPE] = ACTIONS(200), + [anon_sym_AMP_AMP] = ACTIONS(200), + [anon_sym_PIPE_PIPE] = ACTIONS(200), + [anon_sym_QMARK_QMARK] = ACTIONS(200), + [anon_sym_QMARK_COLON] = ACTIONS(200), + [anon_sym_BANG_EQ] = ACTIONS(200), + [anon_sym_EQ_EQ] = ACTIONS(200), + [anon_sym_QMARK_EQ] = ACTIONS(200), + [anon_sym_STAR_EQ] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(200), + [anon_sym_BANG_TILDE] = ACTIONS(200), + [anon_sym_STAR_TILDE] = ACTIONS(200), + [anon_sym_LT_EQ] = ACTIONS(200), + [anon_sym_GT_EQ] = ACTIONS(200), + [anon_sym_PLUS] = ACTIONS(202), + [anon_sym_PLUS_EQ] = ACTIONS(200), + [anon_sym_DASH_EQ] = ACTIONS(200), + [anon_sym_u00d7] = ACTIONS(200), + [anon_sym_SLASH] = ACTIONS(202), + [anon_sym_u00f7] = ACTIONS(200), + [anon_sym_STAR_STAR] = ACTIONS(200), + [anon_sym_u220b] = ACTIONS(200), + [anon_sym_u220c] = ACTIONS(200), + [anon_sym_u2287] = ACTIONS(200), + [anon_sym_u2283] = ACTIONS(200), + [anon_sym_u2285] = ACTIONS(200), + [anon_sym_u2208] = ACTIONS(200), + [anon_sym_u2209] = ACTIONS(200), + [anon_sym_u2286] = ACTIONS(200), + [anon_sym_u2282] = ACTIONS(200), + [anon_sym_u2284] = ACTIONS(200), + [anon_sym_AT_AT] = ACTIONS(200), }, [491] = { - [sym_array] = STATE(16), - [sym_object] = STATE(16), - [sym_record_id_value] = STATE(39), + [sym_array] = STATE(9), + [sym_object] = STATE(9), + [sym_record_id_value] = STATE(35), + [sym_comment] = ACTIONS(3), + [sym_keyword_from] = ACTIONS(351), + [sym_keyword_and] = ACTIONS(351), + [sym_keyword_or] = ACTIONS(351), + [sym_keyword_is] = ACTIONS(351), + [sym_keyword_not] = ACTIONS(351), + [sym_keyword_contains] = ACTIONS(351), + [sym_keyword_contains_not] = ACTIONS(351), + [sym_keyword_contains_all] = ACTIONS(351), + [sym_keyword_contains_any] = ACTIONS(351), + [sym_keyword_contains_none] = ACTIONS(351), + [sym_keyword_inside] = ACTIONS(351), + [sym_keyword_in] = ACTIONS(351), + [sym_keyword_not_inside] = ACTIONS(351), + [sym_keyword_all_inside] = ACTIONS(351), + [sym_keyword_any_inside] = ACTIONS(351), + [sym_keyword_none_inside] = ACTIONS(351), + [sym_keyword_outside] = ACTIONS(351), + [sym_keyword_intersects] = ACTIONS(351), + [anon_sym_DASH_GT] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(349), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_LT_DASH] = ACTIONS(351), + [anon_sym_LT_DASH_GT] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(349), + [anon_sym_LT] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(351), + [sym_int] = ACTIONS(343), + [sym_record_id_ident] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_PIPE] = ACTIONS(349), + [anon_sym_AMP_AMP] = ACTIONS(349), + [anon_sym_PIPE_PIPE] = ACTIONS(349), + [anon_sym_QMARK_QMARK] = ACTIONS(349), + [anon_sym_QMARK_COLON] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_QMARK_EQ] = ACTIONS(349), + [anon_sym_STAR_EQ] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_BANG_TILDE] = ACTIONS(349), + [anon_sym_STAR_TILDE] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_PLUS_EQ] = ACTIONS(349), + [anon_sym_DASH_EQ] = ACTIONS(349), + [anon_sym_u00d7] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(351), + [anon_sym_u00f7] = ACTIONS(349), + [anon_sym_STAR_STAR] = ACTIONS(349), + [anon_sym_u220b] = ACTIONS(349), + [anon_sym_u220c] = ACTIONS(349), + [anon_sym_u2287] = ACTIONS(349), + [anon_sym_u2283] = ACTIONS(349), + [anon_sym_u2285] = ACTIONS(349), + [anon_sym_u2208] = ACTIONS(349), + [anon_sym_u2209] = ACTIONS(349), + [anon_sym_u2286] = ACTIONS(349), + [anon_sym_u2282] = ACTIONS(349), + [anon_sym_u2284] = ACTIONS(349), + [anon_sym_AT_AT] = ACTIONS(349), + }, + [492] = { + [sym_operator] = STATE(727), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(162), - [sym_keyword_and] = ACTIONS(162), - [sym_keyword_or] = ACTIONS(162), - [sym_keyword_is] = ACTIONS(162), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_value] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [sym_keyword_flexible] = ACTIONS(644), + [sym_keyword_readonly] = ACTIONS(644), + [sym_keyword_type] = ACTIONS(644), + [sym_keyword_default] = ACTIONS(644), + [sym_keyword_assert] = ACTIONS(644), + [sym_keyword_permissions] = ACTIONS(644), + [sym_keyword_comment] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [493] = { + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), [sym_keyword_not] = ACTIONS(162), - [sym_keyword_contains] = ACTIONS(162), - [sym_keyword_contains_not] = ACTIONS(162), - [sym_keyword_contains_all] = ACTIONS(162), - [sym_keyword_contains_any] = ACTIONS(162), - [sym_keyword_contains_none] = ACTIONS(162), - [sym_keyword_inside] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), [sym_keyword_in] = ACTIONS(162), - [sym_keyword_not_inside] = ACTIONS(162), - [sym_keyword_all_inside] = ACTIONS(162), - [sym_keyword_any_inside] = ACTIONS(162), - [sym_keyword_none_inside] = ACTIONS(162), - [sym_keyword_outside] = ACTIONS(162), - [sym_keyword_intersects] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), [anon_sym_DASH_GT] = ACTIONS(160), [anon_sym_LBRACK] = ACTIONS(160), - [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(160), [anon_sym_LT_DASH] = ACTIONS(162), [anon_sym_LT_DASH_GT] = ACTIONS(160), [anon_sym_STAR] = ACTIONS(162), - [anon_sym_DOT] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(162), [anon_sym_LT] = ACTIONS(162), [anon_sym_GT] = ACTIONS(162), - [sym_int] = ACTIONS(347), - [sym_record_id_ident] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(688), [anon_sym_EQ] = ACTIONS(162), [anon_sym_DASH] = ACTIONS(162), [anon_sym_AT] = ACTIONS(162), @@ -55884,359 +56076,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(160), [anon_sym_AT_AT] = ACTIONS(160), }, - [492] = { - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [493] = { - [sym_operator] = STATE(672), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(678), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(678), - [sym_keyword_value] = ACTIONS(678), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [sym_keyword_flexible] = ACTIONS(678), - [sym_keyword_readonly] = ACTIONS(678), - [sym_keyword_type] = ACTIONS(678), - [sym_keyword_default] = ACTIONS(678), - [sym_keyword_assert] = ACTIONS(678), - [sym_keyword_permissions] = ACTIONS(678), - [sym_keyword_comment] = ACTIONS(678), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), - }, [494] = { + [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(690), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [495] = { - [sym_operator] = STATE(696), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_explain] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_fetch] = ACTIONS(652), - [sym_keyword_limit] = ACTIONS(652), - [sym_keyword_order] = ACTIONS(652), - [sym_keyword_split] = ACTIONS(652), - [sym_keyword_group] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(654), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [496] = { - [ts_builtin_sym_end] = ACTIONS(192), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_return] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_return] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [497] = { - [sym_operator] = STATE(672), - [sym_binary_operator] = STATE(783), + [495] = { + [sym_operator] = STATE(727), + [sym_binary_operator] = STATE(779), [ts_builtin_sym_end] = ACTIONS(680), [sym_comment] = ACTIONS(3), [sym_semi_colon] = ACTIONS(680), @@ -56304,493 +56216,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [498] = { - [ts_builtin_sym_end] = ACTIONS(192), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_parallel] = ACTIONS(192), - [sym_keyword_timeout] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [499] = { + [496] = { + [sym_operator] = STATE(727), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(684), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_RBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(696), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(684), + [sym_keyword_value] = ACTIONS(684), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(313), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [sym_keyword_flexible] = ACTIONS(684), + [sym_keyword_readonly] = ACTIONS(684), + [sym_keyword_type] = ACTIONS(684), + [sym_keyword_default] = ACTIONS(684), + [sym_keyword_assert] = ACTIONS(684), + [sym_keyword_permissions] = ACTIONS(684), + [sym_keyword_comment] = ACTIONS(684), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), }, - [500] = { + [497] = { [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(192), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_omit] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(698), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(692), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [501] = { - [ts_builtin_sym_end] = ACTIONS(192), + [498] = { [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(700), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_RBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [502] = { - [sym_operator] = STATE(717), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_return] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_where] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [499] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_parallel] = ACTIONS(160), + [sym_keyword_timeout] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(696), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [503] = { + [500] = { [sym_comment] = ACTIONS(3), - [sym_keyword_if] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_permissions] = ACTIONS(192), - [sym_keyword_comment] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [sym_custom_function_name] = ACTIONS(192), - [anon_sym_DOT_DOT] = ACTIONS(702), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_keyword_if] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [sym_custom_function_name] = ACTIONS(160), + [anon_sym_DOT_DOT] = ACTIONS(698), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [504] = { + [501] = { + [sym_operator] = STATE(703), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_where] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(704), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(660), + [sym_keyword_return] = ACTIONS(660), + [sym_keyword_parallel] = ACTIONS(660), + [sym_keyword_timeout] = ACTIONS(660), + [sym_keyword_where] = ACTIONS(660), + [sym_keyword_and] = ACTIONS(313), + [sym_keyword_or] = ACTIONS(313), + [sym_keyword_is] = ACTIONS(317), + [sym_keyword_not] = ACTIONS(319), + [sym_keyword_contains] = ACTIONS(313), + [sym_keyword_contains_not] = ACTIONS(313), + [sym_keyword_contains_all] = ACTIONS(313), + [sym_keyword_contains_any] = ACTIONS(313), + [sym_keyword_contains_none] = ACTIONS(313), + [sym_keyword_inside] = ACTIONS(313), + [sym_keyword_in] = ACTIONS(315), + [sym_keyword_not_inside] = ACTIONS(313), + [sym_keyword_all_inside] = ACTIONS(313), + [sym_keyword_any_inside] = ACTIONS(313), + [sym_keyword_none_inside] = ACTIONS(313), + [sym_keyword_outside] = ACTIONS(313), + [sym_keyword_intersects] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(660), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(325), + [anon_sym_LT_PIPE] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_QMARK_COLON] = ACTIONS(329), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_QMARK_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_STAR_TILDE] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(329), + [anon_sym_GT_EQ] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(323), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_u00d7] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(323), + [anon_sym_u00f7] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_u220b] = ACTIONS(329), + [anon_sym_u220c] = ACTIONS(329), + [anon_sym_u2287] = ACTIONS(329), + [anon_sym_u2283] = ACTIONS(329), + [anon_sym_u2285] = ACTIONS(329), + [anon_sym_u2208] = ACTIONS(329), + [anon_sym_u2209] = ACTIONS(329), + [anon_sym_u2286] = ACTIONS(329), + [anon_sym_u2282] = ACTIONS(329), + [anon_sym_u2284] = ACTIONS(329), + [anon_sym_AT_AT] = ACTIONS(329), }, - [505] = { - [sym_operator] = STATE(717), - [sym_binary_operator] = STATE(783), + [502] = { + [sym_operator] = STATE(703), + [sym_binary_operator] = STATE(779), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(656), - [sym_keyword_return] = ACTIONS(656), - [sym_keyword_parallel] = ACTIONS(656), - [sym_keyword_timeout] = ACTIONS(656), - [sym_keyword_where] = ACTIONS(656), + [sym_semi_colon] = ACTIONS(700), + [sym_keyword_return] = ACTIONS(700), + [sym_keyword_parallel] = ACTIONS(700), + [sym_keyword_timeout] = ACTIONS(700), + [sym_keyword_where] = ACTIONS(700), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -56808,9 +56656,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(656), - [anon_sym_RPAREN] = ACTIONS(656), - [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(700), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -56850,15 +56698,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [506] = { - [sym_operator] = STATE(717), - [sym_binary_operator] = STATE(783), + [503] = { + [sym_comment] = ACTIONS(3), + [sym_keyword_as] = ACTIONS(160), + [sym_keyword_where] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(702), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), + }, + [504] = { + [sym_operator] = STATE(703), + [sym_binary_operator] = STATE(779), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_return] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_where] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, + [505] = { + [ts_builtin_sym_end] = ACTIONS(160), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_permissions] = ACTIONS(160), + [sym_keyword_comment] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(704), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), + }, + [506] = { + [sym_comment] = ACTIONS(3), + [sym_keyword_from] = ACTIONS(160), + [sym_keyword_as] = ACTIONS(160), + [sym_keyword_omit] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), + }, + [507] = { + [sym_operator] = STATE(715), + [sym_binary_operator] = STATE(779), + [aux_sym_update_statement_repeat1] = STATE(1170), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(706), - [sym_keyword_return] = ACTIONS(706), - [sym_keyword_parallel] = ACTIONS(706), - [sym_keyword_timeout] = ACTIONS(706), - [sym_keyword_where] = ACTIONS(706), + [sym_semi_colon] = ACTIONS(708), + [sym_keyword_parallel] = ACTIONS(708), + [sym_keyword_timeout] = ACTIONS(708), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -56876,9 +56995,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_RPAREN] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(708), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -56918,148 +57037,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [507] = { - [sym_comment] = ACTIONS(3), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_RPAREN] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, [508] = { - [ts_builtin_sym_end] = ACTIONS(192), + [sym_operator] = STATE(672), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(644), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(710), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_return] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_where] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), }, [509] = { - [sym_operator] = STATE(723), - [sym_binary_operator] = STATE(783), + [sym_operator] = STATE(672), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(660), [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(706), - [sym_keyword_return] = ACTIONS(706), - [sym_keyword_parallel] = ACTIONS(706), - [sym_keyword_timeout] = ACTIONS(706), + [sym_semi_colon] = ACTIONS(660), + [sym_keyword_return] = ACTIONS(660), + [sym_keyword_parallel] = ACTIONS(660), + [sym_keyword_timeout] = ACTIONS(660), + [sym_keyword_where] = ACTIONS(660), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -57077,9 +57131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(660), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -57120,147 +57172,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_AT] = ACTIONS(329), }, [510] = { - [sym_operator] = STATE(751), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_return] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_where] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), - }, - [511] = { + [ts_builtin_sym_end] = ACTIONS(160), [sym_comment] = ACTIONS(3), - [sym_keyword_from] = ACTIONS(192), - [sym_keyword_as] = ACTIONS(192), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [anon_sym_COMMA] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), + [sym_semi_colon] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [512] = { - [sym_operator] = STATE(756), - [sym_binary_operator] = STATE(783), - [aux_sym_update_statement_repeat1] = STATE(1183), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(714), - [sym_keyword_parallel] = ACTIONS(714), - [sym_keyword_timeout] = ACTIONS(714), + [511] = { + [sym_operator] = STATE(672), + [sym_binary_operator] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(700), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(700), + [sym_keyword_return] = ACTIONS(700), + [sym_keyword_parallel] = ACTIONS(700), + [sym_keyword_timeout] = ACTIONS(700), + [sym_keyword_where] = ACTIONS(700), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -57278,9 +57265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(716), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_COMMA] = ACTIONS(700), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -57320,150 +57305,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, - [513] = { + [512] = { [sym_comment] = ACTIONS(3), - [sym_keyword_and] = ACTIONS(192), - [sym_keyword_or] = ACTIONS(192), - [sym_keyword_is] = ACTIONS(192), - [sym_keyword_not] = ACTIONS(194), - [sym_keyword_contains] = ACTIONS(192), - [sym_keyword_contains_not] = ACTIONS(192), - [sym_keyword_contains_all] = ACTIONS(192), - [sym_keyword_contains_any] = ACTIONS(192), - [sym_keyword_contains_none] = ACTIONS(192), - [sym_keyword_inside] = ACTIONS(192), - [sym_keyword_in] = ACTIONS(194), - [sym_keyword_not_inside] = ACTIONS(192), - [sym_keyword_all_inside] = ACTIONS(192), - [sym_keyword_any_inside] = ACTIONS(192), - [sym_keyword_none_inside] = ACTIONS(192), - [sym_keyword_outside] = ACTIONS(192), - [sym_keyword_intersects] = ACTIONS(192), - [sym_keyword_then] = ACTIONS(192), - [anon_sym_DASH_GT] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(192), - [anon_sym_LPAREN] = ACTIONS(192), - [anon_sym_LBRACE] = ACTIONS(192), - [anon_sym_LT_DASH] = ACTIONS(194), - [anon_sym_LT_DASH_GT] = ACTIONS(192), - [anon_sym_STAR] = ACTIONS(194), - [anon_sym_DOT] = ACTIONS(194), - [anon_sym_LT] = ACTIONS(194), - [anon_sym_GT] = ACTIONS(194), - [anon_sym_DOT_DOT] = ACTIONS(718), - [anon_sym_EQ] = ACTIONS(194), - [anon_sym_DASH] = ACTIONS(194), - [anon_sym_AT] = ACTIONS(194), - [anon_sym_LT_PIPE] = ACTIONS(192), - [anon_sym_AMP_AMP] = ACTIONS(192), - [anon_sym_PIPE_PIPE] = ACTIONS(192), - [anon_sym_QMARK_QMARK] = ACTIONS(192), - [anon_sym_QMARK_COLON] = ACTIONS(192), - [anon_sym_BANG_EQ] = ACTIONS(192), - [anon_sym_EQ_EQ] = ACTIONS(192), - [anon_sym_QMARK_EQ] = ACTIONS(192), - [anon_sym_STAR_EQ] = ACTIONS(192), - [anon_sym_TILDE] = ACTIONS(192), - [anon_sym_BANG_TILDE] = ACTIONS(192), - [anon_sym_STAR_TILDE] = ACTIONS(192), - [anon_sym_LT_EQ] = ACTIONS(192), - [anon_sym_GT_EQ] = ACTIONS(192), - [anon_sym_PLUS] = ACTIONS(194), - [anon_sym_PLUS_EQ] = ACTIONS(192), - [anon_sym_DASH_EQ] = ACTIONS(192), - [anon_sym_u00d7] = ACTIONS(192), - [anon_sym_SLASH] = ACTIONS(194), - [anon_sym_u00f7] = ACTIONS(192), - [anon_sym_STAR_STAR] = ACTIONS(192), - [anon_sym_u220b] = ACTIONS(192), - [anon_sym_u220c] = ACTIONS(192), - [anon_sym_u2287] = ACTIONS(192), - [anon_sym_u2283] = ACTIONS(192), - [anon_sym_u2285] = ACTIONS(192), - [anon_sym_u2208] = ACTIONS(192), - [anon_sym_u2209] = ACTIONS(192), - [anon_sym_u2286] = ACTIONS(192), - [anon_sym_u2282] = ACTIONS(192), - [anon_sym_u2284] = ACTIONS(192), - [anon_sym_AT_AT] = ACTIONS(192), - }, - [514] = { - [sym_operator] = STATE(723), - [sym_binary_operator] = STATE(783), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(652), - [sym_keyword_return] = ACTIONS(652), - [sym_keyword_parallel] = ACTIONS(652), - [sym_keyword_timeout] = ACTIONS(652), - [sym_keyword_and] = ACTIONS(652), - [sym_keyword_or] = ACTIONS(652), - [sym_keyword_is] = ACTIONS(652), - [sym_keyword_not] = ACTIONS(654), - [sym_keyword_contains] = ACTIONS(652), - [sym_keyword_contains_not] = ACTIONS(652), - [sym_keyword_contains_all] = ACTIONS(652), - [sym_keyword_contains_any] = ACTIONS(652), - [sym_keyword_contains_none] = ACTIONS(652), - [sym_keyword_inside] = ACTIONS(652), - [sym_keyword_in] = ACTIONS(654), - [sym_keyword_not_inside] = ACTIONS(652), - [sym_keyword_all_inside] = ACTIONS(652), - [sym_keyword_any_inside] = ACTIONS(652), - [sym_keyword_none_inside] = ACTIONS(652), - [sym_keyword_outside] = ACTIONS(652), - [sym_keyword_intersects] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_STAR] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(654), - [anon_sym_GT] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_DASH] = ACTIONS(654), - [anon_sym_AT] = ACTIONS(654), - [anon_sym_LT_PIPE] = ACTIONS(652), - [anon_sym_AMP_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(652), - [anon_sym_QMARK_QMARK] = ACTIONS(652), - [anon_sym_QMARK_COLON] = ACTIONS(652), - [anon_sym_BANG_EQ] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(652), - [anon_sym_QMARK_EQ] = ACTIONS(652), - [anon_sym_STAR_EQ] = ACTIONS(652), - [anon_sym_TILDE] = ACTIONS(652), - [anon_sym_BANG_TILDE] = ACTIONS(652), - [anon_sym_STAR_TILDE] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(652), - [anon_sym_GT_EQ] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(652), - [anon_sym_DASH_EQ] = ACTIONS(652), - [anon_sym_u00d7] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(654), - [anon_sym_u00f7] = ACTIONS(652), - [anon_sym_STAR_STAR] = ACTIONS(652), - [anon_sym_u220b] = ACTIONS(652), - [anon_sym_u220c] = ACTIONS(652), - [anon_sym_u2287] = ACTIONS(652), - [anon_sym_u2283] = ACTIONS(652), - [anon_sym_u2285] = ACTIONS(652), - [anon_sym_u2208] = ACTIONS(652), - [anon_sym_u2209] = ACTIONS(652), - [anon_sym_u2286] = ACTIONS(652), - [anon_sym_u2282] = ACTIONS(652), - [anon_sym_u2284] = ACTIONS(652), - [anon_sym_AT_AT] = ACTIONS(652), + [sym_keyword_from] = ACTIONS(160), + [sym_keyword_as] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(714), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, - [515] = { - [sym_operator] = STATE(751), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(656), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(656), - [sym_keyword_return] = ACTIONS(656), - [sym_keyword_parallel] = ACTIONS(656), - [sym_keyword_timeout] = ACTIONS(656), - [sym_keyword_where] = ACTIONS(656), + [513] = { + [sym_operator] = STATE(756), + [sym_binary_operator] = STATE(779), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(700), + [sym_keyword_return] = ACTIONS(700), + [sym_keyword_parallel] = ACTIONS(700), + [sym_keyword_timeout] = ACTIONS(700), [sym_keyword_and] = ACTIONS(313), [sym_keyword_or] = ACTIONS(313), [sym_keyword_is] = ACTIONS(317), @@ -57481,7 +57397,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_keyword_none_inside] = ACTIONS(313), [sym_keyword_outside] = ACTIONS(313), [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(656), + [anon_sym_COMMA] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(700), [anon_sym_STAR] = ACTIONS(323), [anon_sym_LT] = ACTIONS(315), [anon_sym_GT] = ACTIONS(315), @@ -57521,86 +57439,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_u2284] = ACTIONS(329), [anon_sym_AT_AT] = ACTIONS(329), }, + [514] = { + [sym_comment] = ACTIONS(3), + [sym_keyword_as] = ACTIONS(160), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(716), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), + }, + [515] = { + [sym_operator] = STATE(756), + [sym_binary_operator] = STATE(779), + [sym_comment] = ACTIONS(3), + [sym_semi_colon] = ACTIONS(644), + [sym_keyword_return] = ACTIONS(644), + [sym_keyword_parallel] = ACTIONS(644), + [sym_keyword_timeout] = ACTIONS(644), + [sym_keyword_and] = ACTIONS(644), + [sym_keyword_or] = ACTIONS(644), + [sym_keyword_is] = ACTIONS(644), + [sym_keyword_not] = ACTIONS(646), + [sym_keyword_contains] = ACTIONS(644), + [sym_keyword_contains_not] = ACTIONS(644), + [sym_keyword_contains_all] = ACTIONS(644), + [sym_keyword_contains_any] = ACTIONS(644), + [sym_keyword_contains_none] = ACTIONS(644), + [sym_keyword_inside] = ACTIONS(644), + [sym_keyword_in] = ACTIONS(646), + [sym_keyword_not_inside] = ACTIONS(644), + [sym_keyword_all_inside] = ACTIONS(644), + [sym_keyword_any_inside] = ACTIONS(644), + [sym_keyword_none_inside] = ACTIONS(644), + [sym_keyword_outside] = ACTIONS(644), + [sym_keyword_intersects] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_LT_PIPE] = ACTIONS(644), + [anon_sym_AMP_AMP] = ACTIONS(644), + [anon_sym_PIPE_PIPE] = ACTIONS(644), + [anon_sym_QMARK_QMARK] = ACTIONS(644), + [anon_sym_QMARK_COLON] = ACTIONS(644), + [anon_sym_BANG_EQ] = ACTIONS(644), + [anon_sym_EQ_EQ] = ACTIONS(644), + [anon_sym_QMARK_EQ] = ACTIONS(644), + [anon_sym_STAR_EQ] = ACTIONS(644), + [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_BANG_TILDE] = ACTIONS(644), + [anon_sym_STAR_TILDE] = ACTIONS(644), + [anon_sym_LT_EQ] = ACTIONS(644), + [anon_sym_GT_EQ] = ACTIONS(644), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_PLUS_EQ] = ACTIONS(644), + [anon_sym_DASH_EQ] = ACTIONS(644), + [anon_sym_u00d7] = ACTIONS(644), + [anon_sym_SLASH] = ACTIONS(646), + [anon_sym_u00f7] = ACTIONS(644), + [anon_sym_STAR_STAR] = ACTIONS(644), + [anon_sym_u220b] = ACTIONS(644), + [anon_sym_u220c] = ACTIONS(644), + [anon_sym_u2287] = ACTIONS(644), + [anon_sym_u2283] = ACTIONS(644), + [anon_sym_u2285] = ACTIONS(644), + [anon_sym_u2208] = ACTIONS(644), + [anon_sym_u2209] = ACTIONS(644), + [anon_sym_u2286] = ACTIONS(644), + [anon_sym_u2282] = ACTIONS(644), + [anon_sym_u2284] = ACTIONS(644), + [anon_sym_AT_AT] = ACTIONS(644), + }, [516] = { - [sym_operator] = STATE(751), - [sym_binary_operator] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(706), - [sym_comment] = ACTIONS(3), - [sym_semi_colon] = ACTIONS(706), - [sym_keyword_return] = ACTIONS(706), - [sym_keyword_parallel] = ACTIONS(706), - [sym_keyword_timeout] = ACTIONS(706), - [sym_keyword_where] = ACTIONS(706), - [sym_keyword_and] = ACTIONS(313), - [sym_keyword_or] = ACTIONS(313), - [sym_keyword_is] = ACTIONS(317), - [sym_keyword_not] = ACTIONS(319), - [sym_keyword_contains] = ACTIONS(313), - [sym_keyword_contains_not] = ACTIONS(313), - [sym_keyword_contains_all] = ACTIONS(313), - [sym_keyword_contains_any] = ACTIONS(313), - [sym_keyword_contains_none] = ACTIONS(313), - [sym_keyword_inside] = ACTIONS(313), - [sym_keyword_in] = ACTIONS(315), - [sym_keyword_not_inside] = ACTIONS(313), - [sym_keyword_all_inside] = ACTIONS(313), - [sym_keyword_any_inside] = ACTIONS(313), - [sym_keyword_none_inside] = ACTIONS(313), - [sym_keyword_outside] = ACTIONS(313), - [sym_keyword_intersects] = ACTIONS(313), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(323), - [anon_sym_LT] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_DASH] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(325), - [anon_sym_LT_PIPE] = ACTIONS(327), - [anon_sym_AMP_AMP] = ACTIONS(329), - [anon_sym_PIPE_PIPE] = ACTIONS(329), - [anon_sym_QMARK_QMARK] = ACTIONS(329), - [anon_sym_QMARK_COLON] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_QMARK_EQ] = ACTIONS(329), - [anon_sym_STAR_EQ] = ACTIONS(329), - [anon_sym_TILDE] = ACTIONS(329), - [anon_sym_BANG_TILDE] = ACTIONS(329), - [anon_sym_STAR_TILDE] = ACTIONS(329), - [anon_sym_LT_EQ] = ACTIONS(329), - [anon_sym_GT_EQ] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_PLUS_EQ] = ACTIONS(329), - [anon_sym_DASH_EQ] = ACTIONS(329), - [anon_sym_u00d7] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(323), - [anon_sym_u00f7] = ACTIONS(329), - [anon_sym_STAR_STAR] = ACTIONS(329), - [anon_sym_u220b] = ACTIONS(329), - [anon_sym_u220c] = ACTIONS(329), - [anon_sym_u2287] = ACTIONS(329), - [anon_sym_u2283] = ACTIONS(329), - [anon_sym_u2285] = ACTIONS(329), - [anon_sym_u2208] = ACTIONS(329), - [anon_sym_u2209] = ACTIONS(329), - [anon_sym_u2286] = ACTIONS(329), - [anon_sym_u2282] = ACTIONS(329), - [anon_sym_u2284] = ACTIONS(329), - [anon_sym_AT_AT] = ACTIONS(329), + [sym_comment] = ACTIONS(3), + [sym_keyword_and] = ACTIONS(160), + [sym_keyword_or] = ACTIONS(160), + [sym_keyword_is] = ACTIONS(160), + [sym_keyword_not] = ACTIONS(162), + [sym_keyword_contains] = ACTIONS(160), + [sym_keyword_contains_not] = ACTIONS(160), + [sym_keyword_contains_all] = ACTIONS(160), + [sym_keyword_contains_any] = ACTIONS(160), + [sym_keyword_contains_none] = ACTIONS(160), + [sym_keyword_inside] = ACTIONS(160), + [sym_keyword_in] = ACTIONS(162), + [sym_keyword_not_inside] = ACTIONS(160), + [sym_keyword_all_inside] = ACTIONS(160), + [sym_keyword_any_inside] = ACTIONS(160), + [sym_keyword_none_inside] = ACTIONS(160), + [sym_keyword_outside] = ACTIONS(160), + [sym_keyword_intersects] = ACTIONS(160), + [sym_keyword_then] = ACTIONS(160), + [anon_sym_DASH_GT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_LBRACE] = ACTIONS(160), + [anon_sym_LT_DASH] = ACTIONS(162), + [anon_sym_LT_DASH_GT] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(162), + [anon_sym_DOT] = ACTIONS(162), + [anon_sym_LT] = ACTIONS(162), + [anon_sym_GT] = ACTIONS(162), + [anon_sym_DOT_DOT] = ACTIONS(718), + [anon_sym_EQ] = ACTIONS(162), + [anon_sym_DASH] = ACTIONS(162), + [anon_sym_AT] = ACTIONS(162), + [anon_sym_LT_PIPE] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(160), + [anon_sym_PIPE_PIPE] = ACTIONS(160), + [anon_sym_QMARK_QMARK] = ACTIONS(160), + [anon_sym_QMARK_COLON] = ACTIONS(160), + [anon_sym_BANG_EQ] = ACTIONS(160), + [anon_sym_EQ_EQ] = ACTIONS(160), + [anon_sym_QMARK_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_BANG_TILDE] = ACTIONS(160), + [anon_sym_STAR_TILDE] = ACTIONS(160), + [anon_sym_LT_EQ] = ACTIONS(160), + [anon_sym_GT_EQ] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(162), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_u00d7] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(162), + [anon_sym_u00f7] = ACTIONS(160), + [anon_sym_STAR_STAR] = ACTIONS(160), + [anon_sym_u220b] = ACTIONS(160), + [anon_sym_u220c] = ACTIONS(160), + [anon_sym_u2287] = ACTIONS(160), + [anon_sym_u2283] = ACTIONS(160), + [anon_sym_u2285] = ACTIONS(160), + [anon_sym_u2208] = ACTIONS(160), + [anon_sym_u2209] = ACTIONS(160), + [anon_sym_u2286] = ACTIONS(160), + [anon_sym_u2282] = ACTIONS(160), + [anon_sym_u2284] = ACTIONS(160), + [anon_sym_AT_AT] = ACTIONS(160), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, + [0] = 12, ACTIONS(3), 1, sym_comment, - STATE(756), 1, + ACTIONS(317), 1, + sym_keyword_is, + ACTIONS(319), 1, + sym_keyword_not, + ACTIONS(325), 1, + anon_sym_AT, + ACTIONS(327), 1, + anon_sym_LT_PIPE, + STATE(715), 1, + sym_operator, + STATE(779), 1, + sym_binary_operator, + ACTIONS(323), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(315), 5, + sym_keyword_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_DASH, + ACTIONS(660), 6, + sym_semi_colon, + sym_keyword_parallel, + sym_keyword_timeout, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(313), 14, + sym_keyword_and, + sym_keyword_or, + sym_keyword_contains, + sym_keyword_contains_not, + sym_keyword_contains_all, + sym_keyword_contains_any, + sym_keyword_contains_none, + sym_keyword_inside, + sym_keyword_not_inside, + sym_keyword_all_inside, + sym_keyword_any_inside, + sym_keyword_none_inside, + sym_keyword_outside, + sym_keyword_intersects, + ACTIONS(329), 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_QMARK_COLON, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_QMARK_EQ, + anon_sym_STAR_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_STAR_TILDE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_u00d7, + anon_sym_u00f7, + anon_sym_STAR_STAR, + anon_sym_u220b, + anon_sym_u220c, + anon_sym_u2287, + anon_sym_u2283, + anon_sym_u2285, + anon_sym_u2208, + anon_sym_u2209, + anon_sym_u2286, + anon_sym_u2282, + anon_sym_u2284, + anon_sym_AT_AT, + [89] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(654), 10, + ACTIONS(646), 11, sym_keyword_not, sym_keyword_in, + anon_sym_QMARK, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -57609,10 +57739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(652), 51, + ACTIONS(644), 50, sym_semi_colon, - sym_keyword_parallel, - sym_keyword_timeout, sym_keyword_and, sym_keyword_or, sym_keyword_is, @@ -57629,6 +57757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_outside, sym_keyword_intersects, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LT_PIPE, @@ -57661,7 +57790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [75] = 12, + [164] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -57672,27 +57801,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(723), 1, + ACTIONS(720), 1, + anon_sym_COMMA, + STATE(706), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, + STATE(1252), 1, + aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(708), 4, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_parallel, + sym_keyword_timeout, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - ACTIONS(672), 6, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - anon_sym_RPAREN, - anon_sym_RBRACE, ACTIONS(313), 14, sym_keyword_and, sym_keyword_or, @@ -57738,12 +57869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [164] = 4, + [257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(720), 1, + ACTIONS(722), 1, anon_sym_DOT_DOT, - ACTIONS(194), 12, + ACTIONS(162), 12, sym_keyword_not, sym_keyword_in, anon_sym_LT_DASH, @@ -57756,7 +57887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(192), 50, + ACTIONS(160), 50, sym_keyword_if, sym_keyword_and, sym_keyword_or, @@ -57807,14 +57938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [237] = 5, + [330] = 5, ACTIONS(3), 1, sym_comment, - STATE(676), 1, + STATE(657), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(654), 10, + ACTIONS(646), 10, sym_keyword_not, sym_keyword_in, anon_sym_STAR, @@ -57825,7 +57956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(652), 51, + ACTIONS(644), 51, ts_builtin_sym_end, sym_semi_colon, sym_keyword_return, @@ -57877,7 +58008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [312] = 14, + [405] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -57888,23 +58019,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(722), 1, - anon_sym_COMMA, - STATE(718), 1, + STATE(657), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1224), 1, - aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(714), 4, + ACTIONS(315), 5, + sym_keyword_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_DASH, + ACTIONS(700), 6, ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + anon_sym_COMMA, + ACTIONS(313), 14, + sym_keyword_and, + sym_keyword_or, + sym_keyword_contains, + sym_keyword_contains_not, + sym_keyword_contains_all, + sym_keyword_contains_any, + sym_keyword_contains_none, + sym_keyword_inside, + sym_keyword_not_inside, + sym_keyword_all_inside, + sym_keyword_any_inside, + sym_keyword_none_inside, + sym_keyword_outside, + sym_keyword_intersects, + ACTIONS(329), 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_QMARK_COLON, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_QMARK_EQ, + anon_sym_STAR_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_STAR_TILDE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_u00d7, + anon_sym_u00f7, + anon_sym_STAR_STAR, + anon_sym_u220b, + anon_sym_u220c, + anon_sym_u2287, + anon_sym_u2283, + anon_sym_u2285, + anon_sym_u2208, + anon_sym_u2209, + anon_sym_u2286, + anon_sym_u2282, + anon_sym_u2284, + anon_sym_AT_AT, + [494] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 1, + sym_keyword_is, + ACTIONS(319), 1, + sym_keyword_not, + ACTIONS(325), 1, + anon_sym_AT, + ACTIONS(327), 1, + anon_sym_LT_PIPE, + STATE(756), 1, + sym_operator, + STATE(779), 1, + sym_binary_operator, + ACTIONS(323), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(315), 5, + sym_keyword_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_DASH, + ACTIONS(672), 6, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(313), 14, + sym_keyword_and, + sym_keyword_or, + sym_keyword_contains, + sym_keyword_contains_not, + sym_keyword_contains_all, + sym_keyword_contains_any, + sym_keyword_contains_none, + sym_keyword_inside, + sym_keyword_not_inside, + sym_keyword_all_inside, + sym_keyword_any_inside, + sym_keyword_none_inside, + sym_keyword_outside, + sym_keyword_intersects, + ACTIONS(329), 29, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_QMARK_COLON, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_QMARK_EQ, + anon_sym_STAR_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_STAR_TILDE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_u00d7, + anon_sym_u00f7, + anon_sym_STAR_STAR, + anon_sym_u220b, + anon_sym_u220c, + anon_sym_u2287, + anon_sym_u2283, + anon_sym_u2285, + anon_sym_u2208, + anon_sym_u2209, + anon_sym_u2286, + anon_sym_u2282, + anon_sym_u2284, + anon_sym_AT_AT, + [583] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(715), 1, + sym_operator, + STATE(779), 1, + sym_binary_operator, + ACTIONS(646), 10, + sym_keyword_not, + sym_keyword_in, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(644), 51, sym_semi_colon, sym_keyword_parallel, sym_keyword_timeout, + sym_keyword_and, + sym_keyword_or, + sym_keyword_is, + sym_keyword_contains, + sym_keyword_contains_not, + sym_keyword_contains_all, + sym_keyword_contains_any, + sym_keyword_contains_none, + sym_keyword_inside, + sym_keyword_not_inside, + sym_keyword_all_inside, + sym_keyword_any_inside, + sym_keyword_none_inside, + sym_keyword_outside, + sym_keyword_intersects, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LT_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_QMARK_COLON, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_QMARK_EQ, + anon_sym_STAR_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_STAR_TILDE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_u00d7, + anon_sym_u00f7, + anon_sym_STAR_STAR, + anon_sym_u220b, + anon_sym_u220c, + anon_sym_u2287, + anon_sym_u2283, + anon_sym_u2285, + anon_sym_u2208, + anon_sym_u2209, + anon_sym_u2286, + anon_sym_u2282, + anon_sym_u2284, + anon_sym_AT_AT, + [658] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_COMMA, + ACTIONS(154), 11, + sym_keyword_not, + sym_keyword_in, + anon_sym_LT_DASH, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(152), 50, + sym_keyword_and, + sym_keyword_or, + sym_keyword_is, + sym_keyword_contains, + sym_keyword_contains_not, + sym_keyword_contains_all, + sym_keyword_contains_any, + sym_keyword_contains_none, + sym_keyword_inside, + sym_keyword_not_inside, + sym_keyword_all_inside, + sym_keyword_any_inside, + sym_keyword_none_inside, + sym_keyword_outside, + sym_keyword_intersects, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_LT_DASH_GT, + anon_sym_DOT, + anon_sym_LT_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_QMARK_COLON, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_QMARK_EQ, + anon_sym_STAR_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_STAR_TILDE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_u00d7, + anon_sym_u00f7, + anon_sym_STAR_STAR, + anon_sym_u220b, + anon_sym_u220c, + anon_sym_u2287, + anon_sym_u2283, + anon_sym_u2285, + anon_sym_u2208, + anon_sym_u2209, + anon_sym_u2286, + anon_sym_u2282, + anon_sym_u2284, + anon_sym_AT_AT, + [730] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 1, + sym_keyword_is, + ACTIONS(319), 1, + sym_keyword_not, + ACTIONS(325), 1, + anon_sym_AT, + ACTIONS(327), 1, + anon_sym_LT_PIPE, + ACTIONS(726), 1, + sym_keyword_then, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, + anon_sym_LBRACE, + STATE(743), 1, + sym_operator, + STATE(779), 1, + sym_binary_operator, + STATE(1174), 2, + sym_block, + sym_sub_query, + ACTIONS(323), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -57956,7 +58379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [405] = 12, + [824] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -57967,9 +58390,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(756), 1, + STATE(706), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -57981,13 +58404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - ACTIONS(656), 6, + ACTIONS(660), 5, + ts_builtin_sym_end, sym_semi_colon, sym_keyword_parallel, sym_keyword_timeout, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, ACTIONS(313), 14, sym_keyword_and, sym_keyword_or, @@ -58033,7 +58455,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [494] = 12, + [912] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(732), 1, + anon_sym_COMMA, + ACTIONS(154), 11, + sym_keyword_not, + sym_keyword_in, + anon_sym_LT_DASH, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(152), 50, + sym_keyword_and, + sym_keyword_or, + sym_keyword_is, + sym_keyword_contains, + sym_keyword_contains_not, + sym_keyword_contains_all, + sym_keyword_contains_any, + sym_keyword_contains_none, + sym_keyword_inside, + sym_keyword_not_inside, + sym_keyword_all_inside, + sym_keyword_any_inside, + sym_keyword_none_inside, + sym_keyword_outside, + sym_keyword_intersects, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_LT_DASH_GT, + anon_sym_DOT, + anon_sym_LT_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_QMARK_COLON, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_QMARK_EQ, + anon_sym_STAR_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_STAR_TILDE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_u00d7, + anon_sym_u00f7, + anon_sym_STAR_STAR, + anon_sym_u220b, + anon_sym_u220c, + anon_sym_u2287, + anon_sym_u2283, + anon_sym_u2285, + anon_sym_u2208, + anon_sym_u2209, + anon_sym_u2286, + anon_sym_u2282, + anon_sym_u2284, + anon_sym_AT_AT, + [984] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -58044,9 +58534,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(676), 1, + STATE(728), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -58058,13 +58548,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - ACTIONS(706), 6, - ts_builtin_sym_end, + ACTIONS(672), 5, sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - anon_sym_COMMA, + sym_keyword_permissions, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(313), 14, sym_keyword_and, sym_keyword_or, @@ -58110,18 +58599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [583] = 5, + [1072] = 4, ACTIONS(3), 1, sym_comment, - STATE(730), 1, - sym_operator, - STATE(783), 1, - sym_binary_operator, - ACTIONS(654), 11, + ACTIONS(734), 1, + anon_sym_DOT_DOT, + ACTIONS(162), 12, sym_keyword_not, sym_keyword_in, - anon_sym_QMARK, + anon_sym_LT_DASH, anon_sym_STAR, + anon_sym_DOT, anon_sym_LT, anon_sym_GT, anon_sym_EQ, @@ -58129,8 +58617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(652), 50, - sym_semi_colon, + ACTIONS(160), 49, + sym_keyword_from, sym_keyword_and, sym_keyword_or, sym_keyword_is, @@ -58146,11 +58634,89 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LT_DASH_GT, + anon_sym_LT_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_QMARK_COLON, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_QMARK_EQ, + anon_sym_STAR_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_STAR_TILDE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_u00d7, + anon_sym_u00f7, + anon_sym_STAR_STAR, + anon_sym_u220b, + anon_sym_u220c, + anon_sym_u2287, + anon_sym_u2283, + anon_sym_u2285, + anon_sym_u2208, + anon_sym_u2209, + anon_sym_u2286, + anon_sym_u2282, + anon_sym_u2284, + anon_sym_AT_AT, + [1144] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 1, + sym_keyword_is, + ACTIONS(319), 1, + sym_keyword_not, + ACTIONS(325), 1, + anon_sym_AT, + ACTIONS(327), 1, + anon_sym_LT_PIPE, + ACTIONS(736), 1, + sym_keyword_as, + ACTIONS(738), 1, + sym_keyword_where, + STATE(752), 1, + sym_operator, + STATE(779), 1, + sym_binary_operator, + STATE(1428), 1, + sym_where_clause, + ACTIONS(740), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LT_PIPE, + ACTIONS(323), 3, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(315), 5, + sym_keyword_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_DASH, + ACTIONS(313), 14, + sym_keyword_and, + sym_keyword_or, + sym_keyword_contains, + sym_keyword_contains_not, + sym_keyword_contains_all, + sym_keyword_contains_any, + sym_keyword_contains_none, + sym_keyword_inside, + sym_keyword_not_inside, + sym_keyword_all_inside, + sym_keyword_any_inside, + sym_keyword_none_inside, + sym_keyword_outside, + sym_keyword_intersects, + ACTIONS(329), 29, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -58180,12 +58746,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [658] = 4, + [1238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(742), 1, anon_sym_COMMA, - ACTIONS(146), 11, + ACTIONS(154), 11, sym_keyword_not, sym_keyword_in, anon_sym_LT_DASH, @@ -58197,7 +58763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(144), 50, + ACTIONS(152), 50, sym_keyword_and, sym_keyword_or, sym_keyword_is, @@ -58248,14 +58814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [730] = 5, + [1310] = 5, ACTIONS(3), 1, sym_comment, - STATE(673), 1, + STATE(728), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(654), 10, + ACTIONS(646), 10, sym_keyword_not, sym_keyword_in, anon_sym_STAR, @@ -58266,7 +58832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(652), 50, + ACTIONS(644), 50, sym_semi_colon, sym_keyword_and, sym_keyword_or, @@ -58317,40 +58883,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [804] = 12, + [1384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 1, - sym_keyword_is, - ACTIONS(319), 1, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(154), 11, sym_keyword_not, - ACTIONS(325), 1, - anon_sym_AT, - ACTIONS(327), 1, - anon_sym_LT_PIPE, - STATE(718), 1, - sym_operator, - STATE(783), 1, - sym_binary_operator, - ACTIONS(323), 3, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(315), 5, sym_keyword_in, + anon_sym_LT_DASH, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - ACTIONS(656), 5, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_parallel, - sym_keyword_timeout, - anon_sym_COMMA, - ACTIONS(313), 14, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(152), 50, sym_keyword_and, sym_keyword_or, + sym_keyword_is, sym_keyword_contains, sym_keyword_contains_not, sym_keyword_contains_all, @@ -58363,7 +58916,12 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - ACTIONS(329), 29, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_LT_DASH_GT, + anon_sym_DOT, + anon_sym_LT_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -58393,43 +58951,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [892] = 15, + [1456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 1, - sym_keyword_is, - ACTIONS(319), 1, - sym_keyword_not, - ACTIONS(325), 1, - anon_sym_AT, - ACTIONS(327), 1, - anon_sym_LT_PIPE, - ACTIONS(726), 1, - sym_keyword_then, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_LBRACE, - STATE(731), 1, + STATE(706), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1194), 2, - sym_block, - sym_sub_query, - ACTIONS(323), 3, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(315), 5, + ACTIONS(646), 10, + sym_keyword_not, sym_keyword_in, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - ACTIONS(313), 14, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(644), 50, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_parallel, + sym_keyword_timeout, sym_keyword_and, sym_keyword_or, + sym_keyword_is, sym_keyword_contains, sym_keyword_contains_not, sym_keyword_contains_all, @@ -58442,7 +58989,8 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - ACTIONS(329), 29, + anon_sym_COMMA, + anon_sym_LT_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -58472,12 +59020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [986] = 4, + [1530] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, + ACTIONS(746), 1, anon_sym_COMMA, - ACTIONS(146), 11, + ACTIONS(154), 11, sym_keyword_not, sym_keyword_in, anon_sym_LT_DASH, @@ -58489,7 +59037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(144), 50, + ACTIONS(152), 50, sym_keyword_and, sym_keyword_or, sym_keyword_is, @@ -58540,12 +59088,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1058] = 4, + [1602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(734), 1, + ACTIONS(748), 1, anon_sym_COMMA, - ACTIONS(146), 11, + ACTIONS(154), 11, sym_keyword_not, sym_keyword_in, anon_sym_LT_DASH, @@ -58557,7 +59105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(144), 50, + ACTIONS(152), 50, sym_keyword_and, sym_keyword_or, sym_keyword_is, @@ -58608,7 +59156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1130] = 12, + [1674] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -58619,9 +59167,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(676), 1, + STATE(657), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -58684,7 +59232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1218] = 12, + [1762] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -58695,26 +59243,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(673), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(700), 4, + sym_semi_colon, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - ACTIONS(672), 5, - sym_semi_colon, - sym_keyword_permissions, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, ACTIONS(313), 14, sym_keyword_and, sym_keyword_or, @@ -58760,15 +59307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1306] = 4, + [1849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(736), 1, - anon_sym_COMMA, - ACTIONS(146), 11, + STATE(716), 1, + sym_operator, + STATE(779), 1, + sym_binary_operator, + ACTIONS(646), 10, sym_keyword_not, sym_keyword_in, - anon_sym_LT_DASH, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -58777,7 +59325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(144), 50, + ACTIONS(644), 49, + sym_keyword_from, + sym_keyword_as, + sym_keyword_omit, sym_keyword_and, sym_keyword_or, sym_keyword_is, @@ -58793,11 +59344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_LT_DASH_GT, - anon_sym_DOT, + anon_sym_COMMA, anon_sym_LT_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58828,17 +59375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1378] = 4, + [1922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(738), 1, - anon_sym_DOT_DOT, - ACTIONS(194), 12, + STATE(752), 1, + sym_operator, + STATE(779), 1, + sym_binary_operator, + ACTIONS(646), 10, sym_keyword_not, sym_keyword_in, - anon_sym_LT_DASH, anon_sym_STAR, - anon_sym_DOT, anon_sym_LT, anon_sym_GT, anon_sym_EQ, @@ -58846,8 +59393,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(192), 49, - sym_keyword_from, + ACTIONS(644), 49, + sym_keyword_as, + sym_keyword_where, sym_keyword_and, sym_keyword_or, sym_keyword_is, @@ -58863,9 +59411,8 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LT_DASH_GT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LT_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -58896,95 +59443,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1450] = 4, + [1995] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(740), 1, - anon_sym_COMMA, - ACTIONS(146), 11, + ACTIONS(317), 1, + sym_keyword_is, + ACTIONS(319), 1, sym_keyword_not, - sym_keyword_in, - anon_sym_LT_DASH, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_DASH, + ACTIONS(325), 1, anon_sym_AT, + ACTIONS(327), 1, + anon_sym_LT_PIPE, + ACTIONS(752), 1, + sym_keyword_as, + STATE(716), 1, + sym_operator, + STATE(779), 1, + sym_binary_operator, + ACTIONS(323), 3, + anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(144), 50, - sym_keyword_and, - sym_keyword_or, - sym_keyword_is, - sym_keyword_contains, - sym_keyword_contains_not, - sym_keyword_contains_all, - sym_keyword_contains_any, - sym_keyword_contains_none, - sym_keyword_inside, - sym_keyword_not_inside, - sym_keyword_all_inside, - sym_keyword_any_inside, - sym_keyword_none_inside, - sym_keyword_outside, - sym_keyword_intersects, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_LT_DASH_GT, - anon_sym_DOT, - anon_sym_LT_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_QMARK_COLON, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_QMARK_EQ, - anon_sym_STAR_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_TILDE, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_u00d7, - anon_sym_u00f7, - anon_sym_STAR_STAR, - anon_sym_u220b, - anon_sym_u220c, - anon_sym_u2287, - anon_sym_u2283, - anon_sym_u2285, - anon_sym_u2208, - anon_sym_u2209, - anon_sym_u2286, - anon_sym_u2282, - anon_sym_u2284, - anon_sym_AT_AT, - [1522] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(742), 1, + ACTIONS(750), 3, + sym_keyword_from, + sym_keyword_omit, anon_sym_COMMA, - ACTIONS(146), 11, - sym_keyword_not, + ACTIONS(315), 5, sym_keyword_in, - anon_sym_LT_DASH, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(144), 50, + ACTIONS(313), 14, sym_keyword_and, sym_keyword_or, - sym_keyword_is, sym_keyword_contains, sym_keyword_contains_not, sym_keyword_contains_all, @@ -58997,12 +59489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_LT_DASH_GT, - anon_sym_DOT, - anon_sym_LT_PIPE, + ACTIONS(329), 29, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -59032,7 +59519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1594] = 15, + [2084] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -59043,23 +59530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(744), 1, - sym_keyword_as, - ACTIONS(746), 1, - sym_keyword_where, - STATE(674), 1, + STATE(738), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1466), 1, - sym_where_clause, - ACTIONS(748), 2, - anon_sym_COMMA, - anon_sym_RPAREN, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(672), 4, + sym_keyword_if, + sym_keyword_permissions, + sym_keyword_comment, + sym_custom_function_name, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -59111,32 +59594,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1688] = 5, + [2171] = 12, ACTIONS(3), 1, sym_comment, - STATE(718), 1, + ACTIONS(317), 1, + sym_keyword_is, + ACTIONS(319), 1, + sym_keyword_not, + ACTIONS(325), 1, + anon_sym_AT, + ACTIONS(327), 1, + anon_sym_LT_PIPE, + STATE(674), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(654), 10, - sym_keyword_not, - sym_keyword_in, + ACTIONS(323), 3, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(652), 50, + ACTIONS(672), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_parallel, - sym_keyword_timeout, + sym_keyword_permissions, + sym_keyword_comment, + ACTIONS(315), 5, + sym_keyword_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_DASH, + ACTIONS(313), 14, sym_keyword_and, sym_keyword_or, - sym_keyword_is, sym_keyword_contains, sym_keyword_contains_not, sym_keyword_contains_all, @@ -59149,8 +59639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - anon_sym_COMMA, - anon_sym_LT_PIPE, + ACTIONS(329), 29, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -59180,14 +59669,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1762] = 5, + [2258] = 5, ACTIONS(3), 1, sym_comment, - STATE(685), 1, + STATE(674), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(654), 10, + ACTIONS(646), 10, sym_keyword_not, sym_keyword_in, anon_sym_STAR, @@ -59198,8 +59687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(652), 49, - sym_keyword_if, + ACTIONS(644), 49, + ts_builtin_sym_end, + sym_semi_colon, sym_keyword_and, sym_keyword_or, sym_keyword_is, @@ -59217,83 +59707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_intersects, sym_keyword_permissions, sym_keyword_comment, - sym_custom_function_name, - anon_sym_LT_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_QMARK_COLON, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_QMARK_EQ, - anon_sym_STAR_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_TILDE, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_u00d7, - anon_sym_u00f7, - anon_sym_STAR_STAR, - anon_sym_u220b, - anon_sym_u220c, - anon_sym_u2287, - anon_sym_u2283, - anon_sym_u2285, - anon_sym_u2208, - anon_sym_u2209, - anon_sym_u2286, - anon_sym_u2282, - anon_sym_u2284, - anon_sym_AT_AT, - [1835] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(317), 1, - sym_keyword_is, - ACTIONS(319), 1, - sym_keyword_not, - ACTIONS(325), 1, - anon_sym_AT, - ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(730), 1, - sym_operator, - STATE(783), 1, - sym_binary_operator, - ACTIONS(323), 3, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(706), 4, - sym_semi_colon, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(315), 5, - sym_keyword_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_DASH, - ACTIONS(313), 14, - sym_keyword_and, - sym_keyword_or, - sym_keyword_contains, - sym_keyword_contains_not, - sym_keyword_contains_all, - sym_keyword_contains_any, - sym_keyword_contains_none, - sym_keyword_inside, - sym_keyword_not_inside, - sym_keyword_all_inside, - sym_keyword_any_inside, - sym_keyword_none_inside, - sym_keyword_outside, - sym_keyword_intersects, - ACTIONS(329), 29, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -59323,14 +59737,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1922] = 5, + [2331] = 5, ACTIONS(3), 1, sym_comment, - STATE(715), 1, + STATE(738), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(654), 10, + ACTIONS(646), 10, sym_keyword_not, sym_keyword_in, anon_sym_STAR, @@ -59341,9 +59755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(652), 49, - ts_builtin_sym_end, - sym_semi_colon, + ACTIONS(644), 49, + sym_keyword_if, sym_keyword_and, sym_keyword_or, sym_keyword_is, @@ -59361,6 +59774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_intersects, sym_keyword_permissions, sym_keyword_comment, + sym_custom_function_name, anon_sym_LT_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -59391,7 +59805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [1995] = 13, + [2404] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -59402,20 +59816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(752), 1, - sym_keyword_as, - STATE(681), 1, + STATE(688), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(750), 3, - sym_keyword_from, - sym_keyword_omit, + ACTIONS(672), 3, + sym_keyword_as, anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -59467,99 +59879,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [2084] = 5, + [2490] = 12, ACTIONS(3), 1, sym_comment, - STATE(674), 1, + ACTIONS(317), 1, + sym_keyword_is, + ACTIONS(319), 1, + sym_keyword_not, + ACTIONS(325), 1, + anon_sym_AT, + ACTIONS(327), 1, + anon_sym_LT_PIPE, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(654), 10, - sym_keyword_not, - sym_keyword_in, + ACTIONS(323), 3, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(652), 49, - sym_keyword_as, - sym_keyword_where, - sym_keyword_and, - sym_keyword_or, - sym_keyword_is, - sym_keyword_contains, - sym_keyword_contains_not, - sym_keyword_contains_all, - sym_keyword_contains_any, - sym_keyword_contains_none, - sym_keyword_inside, - sym_keyword_not_inside, - sym_keyword_all_inside, - sym_keyword_any_inside, - sym_keyword_none_inside, - sym_keyword_outside, - sym_keyword_intersects, + ACTIONS(660), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_LT_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_QMARK_COLON, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_QMARK_EQ, - anon_sym_STAR_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_TILDE, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_u00d7, - anon_sym_u00f7, - anon_sym_STAR_STAR, - anon_sym_u220b, - anon_sym_u220c, - anon_sym_u2287, - anon_sym_u2283, - anon_sym_u2285, - anon_sym_u2208, - anon_sym_u2209, - anon_sym_u2286, - anon_sym_u2282, - anon_sym_u2284, - anon_sym_AT_AT, - [2157] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(681), 1, - sym_operator, - STATE(783), 1, - sym_binary_operator, - ACTIONS(654), 10, - sym_keyword_not, + ACTIONS(315), 5, sym_keyword_in, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(652), 49, - sym_keyword_from, - sym_keyword_as, - sym_keyword_omit, + ACTIONS(313), 14, sym_keyword_and, sym_keyword_or, - sym_keyword_is, sym_keyword_contains, sym_keyword_contains_not, sym_keyword_contains_all, @@ -59572,8 +59923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - anon_sym_COMMA, - anon_sym_LT_PIPE, + ACTIONS(329), 29, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -59603,7 +59953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [2230] = 12, + [2576] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -59614,19 +59964,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(685), 1, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(756), 1, + anon_sym_RPAREN, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, + STATE(1533), 1, + aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(672), 4, - sym_keyword_if, - sym_keyword_permissions, - sym_keyword_comment, - sym_custom_function_name, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -59678,7 +60029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [2317] = 12, + [2666] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -59689,19 +60040,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(715), 1, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(758), 1, + anon_sym_RPAREN, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, + STATE(1515), 1, + aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(672), 4, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_permissions, - sym_keyword_comment, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -59753,7 +60105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [2404] = 13, + [2756] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -59764,15 +60116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(752), 1, - sym_keyword_as, - STATE(698), 1, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(760), 1, + anon_sym_RPAREN, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(750), 2, - sym_keyword_from, - anon_sym_COMMA, + STATE(1510), 1, + aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, @@ -59828,7 +60181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [2492] = 12, + [2846] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -59839,18 +60192,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(730), 1, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(762), 1, + anon_sym_RPAREN, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, + STATE(1509), 1, + aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(754), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -59902,38 +60257,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [2578] = 12, + [2936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 1, - sym_keyword_is, - ACTIONS(319), 1, - sym_keyword_not, - ACTIONS(325), 1, - anon_sym_AT, - ACTIONS(327), 1, - anon_sym_LT_PIPE, - STATE(714), 1, + STATE(743), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(323), 3, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(706), 3, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_COMMA, - ACTIONS(315), 5, + ACTIONS(646), 10, + sym_keyword_not, sym_keyword_in, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - ACTIONS(313), 14, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(644), 48, sym_keyword_and, sym_keyword_or, + sym_keyword_is, sym_keyword_contains, sym_keyword_contains_not, sym_keyword_contains_all, @@ -59946,7 +60291,10 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - ACTIONS(329), 29, + sym_keyword_then, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -59976,7 +60324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [2664] = 14, + [3008] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -59987,15 +60335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(758), 1, - anon_sym_RPAREN, - STATE(730), 1, + ACTIONS(764), 1, + anon_sym_RBRACK, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1439), 1, + STATE(1504), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -60052,40 +60400,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [2754] = 14, + [3098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 1, - sym_keyword_is, - ACTIONS(319), 1, - sym_keyword_not, - ACTIONS(325), 1, - anon_sym_AT, - ACTIONS(327), 1, - anon_sym_LT_PIPE, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(760), 1, - anon_sym_RPAREN, - STATE(730), 1, + STATE(739), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1498), 1, - aux_sym_update_statement_repeat1, - ACTIONS(323), 3, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(315), 5, + ACTIONS(646), 10, + sym_keyword_not, sym_keyword_in, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - ACTIONS(313), 14, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(644), 48, + sym_keyword_from, + sym_keyword_as, sym_keyword_and, sym_keyword_or, + sym_keyword_is, sym_keyword_contains, sym_keyword_contains_not, sym_keyword_contains_all, @@ -60098,7 +60436,8 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - ACTIONS(329), 29, + anon_sym_COMMA, + anon_sym_LT_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -60128,7 +60467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [2844] = 14, + [3170] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -60139,15 +60478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(762), 1, + ACTIONS(766), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1533), 1, + STATE(1544), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -60204,7 +60543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [2934] = 14, + [3260] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -60215,15 +60554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(764), 1, + ACTIONS(768), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1495), 1, + STATE(1549), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -60280,7 +60619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [3024] = 14, + [3350] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -60291,15 +60630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(766), 1, + ACTIONS(770), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1546), 1, + STATE(1487), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -60356,74 +60695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [3114] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(749), 1, - sym_operator, - STATE(783), 1, - sym_binary_operator, - ACTIONS(654), 10, - sym_keyword_not, - sym_keyword_in, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(652), 48, - sym_keyword_as, - sym_keyword_and, - sym_keyword_or, - sym_keyword_is, - sym_keyword_contains, - sym_keyword_contains_not, - sym_keyword_contains_all, - sym_keyword_contains_any, - sym_keyword_contains_none, - sym_keyword_inside, - sym_keyword_not_inside, - sym_keyword_all_inside, - sym_keyword_any_inside, - sym_keyword_none_inside, - sym_keyword_outside, - sym_keyword_intersects, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_QMARK_COLON, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_QMARK_EQ, - anon_sym_STAR_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_TILDE, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_u00d7, - anon_sym_u00f7, - anon_sym_STAR_STAR, - anon_sym_u220b, - anon_sym_u220c, - anon_sym_u2287, - anon_sym_u2283, - anon_sym_u2285, - anon_sym_u2208, - anon_sym_u2209, - anon_sym_u2286, - anon_sym_u2282, - anon_sym_u2284, - anon_sym_AT_AT, - [3186] = 14, + [3440] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -60434,15 +60706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(768), 1, - anon_sym_RPAREN, - STATE(730), 1, + ACTIONS(772), 1, + anon_sym_RBRACK, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1528), 1, + STATE(1438), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -60499,7 +60771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [3276] = 14, + [3530] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -60510,20 +60782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(770), 1, - anon_sym_RBRACK, - STATE(730), 1, + STATE(755), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1433), 1, - aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(700), 3, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_COMMA, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -60575,7 +60845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [3366] = 14, + [3616] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -60586,15 +60856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(772), 1, + ACTIONS(774), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1522), 1, + STATE(1539), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -60651,7 +60921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [3456] = 14, + [3706] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -60662,15 +60932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(774), 1, + ACTIONS(776), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1518), 1, + STATE(1434), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -60727,7 +60997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [3546] = 14, + [3796] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -60738,15 +61008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(776), 1, + ACTIONS(778), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1516), 1, + STATE(1436), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -60803,7 +61073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [3636] = 14, + [3886] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -60814,20 +61084,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(778), 1, - anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1547), 1, - aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(780), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -60879,74 +61147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [3726] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(731), 1, - sym_operator, - STATE(783), 1, - sym_binary_operator, - ACTIONS(654), 10, - sym_keyword_not, - sym_keyword_in, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(652), 48, - sym_keyword_and, - sym_keyword_or, - sym_keyword_is, - sym_keyword_contains, - sym_keyword_contains_not, - sym_keyword_contains_all, - sym_keyword_contains_any, - sym_keyword_contains_none, - sym_keyword_inside, - sym_keyword_not_inside, - sym_keyword_all_inside, - sym_keyword_any_inside, - sym_keyword_none_inside, - sym_keyword_outside, - sym_keyword_intersects, - sym_keyword_then, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_QMARK_COLON, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_QMARK_EQ, - anon_sym_STAR_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_TILDE, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_u00d7, - anon_sym_u00f7, - anon_sym_STAR_STAR, - anon_sym_u220b, - anon_sym_u220c, - anon_sym_u2287, - anon_sym_u2283, - anon_sym_u2285, - anon_sym_u2208, - anon_sym_u2209, - anon_sym_u2286, - anon_sym_u2282, - anon_sym_u2284, - anon_sym_AT_AT, - [3798] = 14, + [3972] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -60957,15 +61158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(780), 1, - anon_sym_RPAREN, - STATE(730), 1, + ACTIONS(782), 1, + anon_sym_RBRACK, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1527), 1, + STATE(1445), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -61022,40 +61223,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [3888] = 14, + [4062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 1, - sym_keyword_is, - ACTIONS(319), 1, - sym_keyword_not, - ACTIONS(325), 1, - anon_sym_AT, - ACTIONS(327), 1, - anon_sym_LT_PIPE, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(782), 1, - anon_sym_RPAREN, - STATE(730), 1, + STATE(755), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1504), 1, - aux_sym_update_statement_repeat1, - ACTIONS(323), 3, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(315), 5, + ACTIONS(646), 10, + sym_keyword_not, sym_keyword_in, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - ACTIONS(313), 14, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(644), 48, + ts_builtin_sym_end, + sym_semi_colon, sym_keyword_and, sym_keyword_or, + sym_keyword_is, sym_keyword_contains, sym_keyword_contains_not, sym_keyword_contains_all, @@ -61068,7 +61259,8 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - ACTIONS(329), 29, + anon_sym_COMMA, + anon_sym_LT_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -61098,7 +61290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [3978] = 14, + [4134] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61109,15 +61301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, ACTIONS(784), 1, - anon_sym_RPAREN, - STATE(730), 1, + anon_sym_RBRACK, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1503), 1, + STATE(1448), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -61174,7 +61366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4068] = 14, + [4224] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61185,15 +61377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, ACTIONS(786), 1, - anon_sym_RBRACK, - STATE(730), 1, + anon_sym_RPAREN, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1422), 1, + STATE(1453), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -61250,7 +61442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4158] = 14, + [4314] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61261,16 +61453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(788), 1, - anon_sym_RPAREN, - STATE(730), 1, + ACTIONS(752), 1, + sym_keyword_as, + STATE(739), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1523), 1, - aux_sym_update_statement_repeat1, + ACTIONS(750), 2, + sym_keyword_from, + anon_sym_COMMA, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, @@ -61326,14 +61517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4248] = 5, + [4402] = 5, ACTIONS(3), 1, sym_comment, - STATE(698), 1, + STATE(688), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(654), 10, + ACTIONS(646), 10, sym_keyword_not, sym_keyword_in, anon_sym_STAR, @@ -61344,8 +61535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(652), 48, - sym_keyword_from, + ACTIONS(644), 48, sym_keyword_as, sym_keyword_and, sym_keyword_or, @@ -61363,6 +61553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_outside, sym_keyword_intersects, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LT_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -61393,7 +61584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4320] = 12, + [4474] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61404,18 +61595,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(730), 1, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(788), 1, + anon_sym_RPAREN, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, + STATE(1454), 1, + aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(790), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -61467,30 +61660,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4406] = 5, + [4564] = 14, ACTIONS(3), 1, sym_comment, - STATE(714), 1, + ACTIONS(317), 1, + sym_keyword_is, + ACTIONS(319), 1, + sym_keyword_not, + ACTIONS(325), 1, + anon_sym_AT, + ACTIONS(327), 1, + anon_sym_LT_PIPE, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(790), 1, + anon_sym_RBRACK, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(654), 10, - sym_keyword_not, - sym_keyword_in, + STATE(1524), 1, + aux_sym_update_statement_repeat1, + ACTIONS(323), 3, anon_sym_STAR, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(315), 5, + sym_keyword_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(652), 48, - ts_builtin_sym_end, - sym_semi_colon, + ACTIONS(313), 14, sym_keyword_and, sym_keyword_or, - sym_keyword_is, sym_keyword_contains, sym_keyword_contains_not, sym_keyword_contains_all, @@ -61503,8 +61706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - anon_sym_COMMA, - anon_sym_LT_PIPE, + ACTIONS(329), 29, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -61534,7 +61736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4478] = 14, + [4654] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61545,15 +61747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, ACTIONS(792), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1476), 1, + STATE(1518), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -61610,7 +61812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4568] = 14, + [4744] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61621,15 +61823,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, ACTIONS(794), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1475), 1, + STATE(1537), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -61686,7 +61888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4658] = 14, + [4834] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61697,20 +61899,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(796), 1, - anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1470), 1, - aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(796), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -61762,7 +61962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4748] = 12, + [4920] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61773,18 +61973,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(749), 1, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(798), 1, + anon_sym_RPAREN, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, + STATE(1534), 1, + aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(672), 3, - sym_keyword_as, - anon_sym_COMMA, - anon_sym_RPAREN, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -61836,7 +62038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4834] = 14, + [5010] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61847,20 +62049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(798), 1, - anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1541), 1, - aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, + ACTIONS(800), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -61912,7 +62112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [4924] = 14, + [5096] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61923,15 +62123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(800), 1, + ACTIONS(802), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1474), 1, + STATE(1520), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -61988,7 +62188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5014] = 14, + [5186] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -61999,15 +62199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(802), 1, - anon_sym_RBRACK, - STATE(730), 1, + ACTIONS(804), 1, + anon_sym_RPAREN, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1436), 1, + STATE(1467), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -62064,7 +62264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5104] = 14, + [5276] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62075,15 +62275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(804), 1, - anon_sym_RPAREN, - STATE(730), 1, + ACTIONS(806), 1, + anon_sym_RBRACK, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1431), 1, + STATE(1476), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -62140,7 +62340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5194] = 14, + [5366] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62151,15 +62351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(806), 1, + ACTIONS(808), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1430), 1, + STATE(1473), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -62216,7 +62416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5284] = 12, + [5456] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62227,18 +62427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(730), 1, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(810), 1, + anon_sym_RPAREN, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, + STATE(1481), 1, + aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(656), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, ACTIONS(315), 5, sym_keyword_in, anon_sym_LT, @@ -62290,7 +62492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5370] = 14, + [5546] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62301,15 +62503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(808), 1, + ACTIONS(812), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1538), 1, + STATE(1471), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -62366,7 +62568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5460] = 14, + [5636] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62377,15 +62579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(810), 1, + ACTIONS(814), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1454), 1, + STATE(1482), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -62442,7 +62644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5550] = 14, + [5726] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62453,15 +62655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(812), 1, + ACTIONS(816), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1456), 1, + STATE(1528), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -62518,7 +62720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5640] = 14, + [5816] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62529,15 +62731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(814), 1, + ACTIONS(818), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1448), 1, + STATE(1470), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -62594,7 +62796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5730] = 14, + [5906] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62605,15 +62807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(816), 1, + ACTIONS(820), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1453), 1, + STATE(1522), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -62670,7 +62872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5820] = 14, + [5996] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62681,15 +62883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(818), 1, + ACTIONS(822), 1, anon_sym_RPAREN, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1447), 1, + STATE(1502), 1, aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, @@ -62746,7 +62948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [5910] = 14, + [6086] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62757,16 +62959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(820), 1, + ACTIONS(672), 1, anon_sym_RBRACK, - STATE(730), 1, + ACTIONS(824), 1, + anon_sym_QMARK, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - STATE(1442), 1, - aux_sym_update_statement_repeat1, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, @@ -62822,38 +63022,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6000] = 12, + [6173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 1, - sym_keyword_is, - ACTIONS(319), 1, - sym_keyword_not, - ACTIONS(325), 1, - anon_sym_AT, - ACTIONS(327), 1, - anon_sym_LT_PIPE, - STATE(730), 1, + STATE(750), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(323), 3, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(822), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(315), 5, + ACTIONS(646), 10, + sym_keyword_not, sym_keyword_in, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_DASH, - ACTIONS(313), 14, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(644), 47, + sym_keyword_if, sym_keyword_and, sym_keyword_or, + sym_keyword_is, sym_keyword_contains, sym_keyword_contains_not, sym_keyword_contains_all, @@ -62866,7 +63057,8 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_none_inside, sym_keyword_outside, sym_keyword_intersects, - ACTIONS(329), 29, + sym_variable_name, + anon_sym_LT_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -62896,7 +63088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6086] = 12, + [6244] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -62907,13 +63099,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(714), 1, + STATE(750), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(822), 2, - ts_builtin_sym_end, - sym_semi_colon, + ACTIONS(826), 2, + sym_keyword_if, + sym_variable_name, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, @@ -62969,73 +63161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6171] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(735), 1, - sym_operator, - STATE(783), 1, - sym_binary_operator, - ACTIONS(654), 10, - sym_keyword_not, - sym_keyword_in, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(652), 47, - sym_keyword_if, - sym_keyword_and, - sym_keyword_or, - sym_keyword_is, - sym_keyword_contains, - sym_keyword_contains_not, - sym_keyword_contains_all, - sym_keyword_contains_any, - sym_keyword_contains_none, - sym_keyword_inside, - sym_keyword_not_inside, - sym_keyword_all_inside, - sym_keyword_any_inside, - sym_keyword_none_inside, - sym_keyword_outside, - sym_keyword_intersects, - sym_variable_name, - anon_sym_LT_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_QMARK_COLON, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_QMARK_EQ, - anon_sym_STAR_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_TILDE, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_u00d7, - anon_sym_u00f7, - anon_sym_STAR_STAR, - anon_sym_u220b, - anon_sym_u220c, - anon_sym_u2287, - anon_sym_u2283, - anon_sym_u2285, - anon_sym_u2208, - anon_sym_u2209, - anon_sym_u2286, - anon_sym_u2282, - anon_sym_u2284, - anon_sym_AT_AT, - [6242] = 12, + [6329] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63046,13 +63172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(714), 1, + STATE(750), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(790), 2, - ts_builtin_sym_end, - sym_semi_colon, + ACTIONS(828), 2, + sym_keyword_if, + sym_variable_name, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, @@ -63108,7 +63234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6327] = 12, + [6414] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63119,11 +63245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(824), 2, + ACTIONS(830), 2, anon_sym_COMMA, anon_sym_RBRACE, ACTIONS(323), 3, @@ -63181,7 +63307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6412] = 12, + [6499] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63192,11 +63318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(714), 1, + STATE(755), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(754), 2, + ACTIONS(800), 2, ts_builtin_sym_end, sym_semi_colon, ACTIONS(323), 3, @@ -63254,7 +63380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6497] = 12, + [6584] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63265,13 +63391,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(735), 1, + STATE(755), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(826), 2, - sym_keyword_if, - sym_variable_name, + ACTIONS(780), 2, + ts_builtin_sym_end, + sym_semi_colon, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, @@ -63327,7 +63453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6582] = 13, + [6669] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63338,14 +63464,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(672), 1, - anon_sym_RBRACK, - ACTIONS(828), 1, - anon_sym_QMARK, - STATE(730), 1, + STATE(755), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, + ACTIONS(796), 2, + ts_builtin_sym_end, + sym_semi_colon, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, @@ -63401,7 +63526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6669] = 12, + [6754] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63412,13 +63537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - STATE(735), 1, + ACTIONS(832), 1, + anon_sym_RBRACK, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(830), 2, - sym_keyword_if, - sym_variable_name, ACTIONS(323), 3, anon_sym_STAR, anon_sym_PLUS, @@ -63474,7 +63598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6754] = 12, + [6838] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63485,11 +63609,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(832), 1, + ACTIONS(834), 1, anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -63546,7 +63670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6838] = 12, + [6922] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63557,11 +63681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(672), 1, - ts_builtin_sym_end, - STATE(714), 1, + ACTIONS(836), 1, + anon_sym_RBRACK, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -63618,7 +63742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [6922] = 12, + [7006] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63629,11 +63753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(834), 1, + ACTIONS(838), 1, anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -63690,7 +63814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [7006] = 12, + [7090] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63701,11 +63825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(836), 1, - anon_sym_RBRACK, - STATE(730), 1, + ACTIONS(672), 1, + ts_builtin_sym_end, + STATE(755), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -63762,7 +63886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [7090] = 12, + [7174] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63773,11 +63897,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(838), 1, + ACTIONS(840), 1, sym_keyword_from, - STATE(725), 1, + STATE(677), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -63834,7 +63958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [7174] = 12, + [7258] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63845,11 +63969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(840), 1, + ACTIONS(842), 1, anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -63906,7 +64030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [7258] = 12, + [7342] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63917,11 +64041,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(842), 1, + ACTIONS(844), 1, anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -63978,7 +64102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [7342] = 12, + [7426] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -63989,11 +64113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(844), 1, + ACTIONS(846), 1, anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -64050,7 +64174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [7426] = 12, + [7510] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -64061,11 +64185,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(846), 1, + ACTIONS(848), 1, anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -64122,7 +64246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [7510] = 12, + [7594] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(317), 1, @@ -64133,11 +64257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(327), 1, anon_sym_LT_PIPE, - ACTIONS(848), 1, + ACTIONS(850), 1, anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -64194,14 +64318,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [7594] = 5, + [7678] = 5, ACTIONS(3), 1, sym_comment, - STATE(725), 1, + STATE(677), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, - ACTIONS(654), 10, + ACTIONS(646), 10, sym_keyword_not, sym_keyword_in, anon_sym_STAR, @@ -64212,7 +64336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(652), 46, + ACTIONS(644), 46, sym_keyword_from, sym_keyword_and, sym_keyword_or, @@ -64259,78 +64383,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u2282, anon_sym_u2284, anon_sym_AT_AT, - [7664] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(317), 1, - sym_keyword_is, - ACTIONS(319), 1, - sym_keyword_not, - ACTIONS(325), 1, - anon_sym_AT, - ACTIONS(327), 1, - anon_sym_LT_PIPE, - ACTIONS(850), 1, - anon_sym_RBRACK, - STATE(730), 1, - sym_operator, - STATE(783), 1, - sym_binary_operator, - ACTIONS(323), 3, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_SLASH, - ACTIONS(315), 5, - sym_keyword_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_DASH, - ACTIONS(313), 14, - sym_keyword_and, - sym_keyword_or, - sym_keyword_contains, - sym_keyword_contains_not, - sym_keyword_contains_all, - sym_keyword_contains_any, - sym_keyword_contains_none, - sym_keyword_inside, - sym_keyword_not_inside, - sym_keyword_all_inside, - sym_keyword_any_inside, - sym_keyword_none_inside, - sym_keyword_outside, - sym_keyword_intersects, - ACTIONS(329), 29, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_QMARK_COLON, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_QMARK_EQ, - anon_sym_STAR_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_STAR_TILDE, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_u00d7, - anon_sym_u00f7, - anon_sym_STAR_STAR, - anon_sym_u220b, - anon_sym_u220c, - anon_sym_u2287, - anon_sym_u2283, - anon_sym_u2285, - anon_sym_u2208, - anon_sym_u2209, - anon_sym_u2286, - anon_sym_u2282, - anon_sym_u2284, - anon_sym_AT_AT, [7748] = 12, ACTIONS(3), 1, sym_comment, @@ -64344,9 +64396,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, ACTIONS(852), 1, anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -64416,9 +64468,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, ACTIONS(854), 1, anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -64488,9 +64540,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE, ACTIONS(856), 1, anon_sym_RBRACK, - STATE(730), 1, + STATE(691), 1, sym_operator, - STATE(783), 1, + STATE(779), 1, sym_binary_operator, ACTIONS(323), 3, anon_sym_STAR, @@ -64550,64 +64602,64 @@ static const uint16_t ts_small_parse_table[] = { [8000] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, ACTIONS(858), 1, sym_keyword_value, ACTIONS(860), 1, anon_sym_STAR, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, STATE(542), 1, sym_value, - STATE(1329), 1, + STATE(1332), 1, sym_inclusive_predicate, - STATE(1526), 1, + STATE(1521), 1, sym_predicate, - STATE(1873), 1, + STATE(1865), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -64619,62 +64671,62 @@ static const uint16_t ts_small_parse_table[] = { [8094] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, ACTIONS(860), 1, anon_sym_STAR, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(547), 1, + STATE(569), 1, sym_value, - STATE(1508), 1, + STATE(1465), 1, sym_inclusive_predicate, - STATE(1526), 1, + STATE(1521), 1, sym_predicate, - STATE(1739), 1, + STATE(1758), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -64686,62 +64738,62 @@ static const uint16_t ts_small_parse_table[] = { [8185] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, ACTIONS(860), 1, anon_sym_STAR, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(542), 1, + STATE(569), 1, sym_value, - STATE(1435), 1, + STATE(1493), 1, sym_inclusive_predicate, - STATE(1526), 1, + STATE(1521), 1, sym_predicate, - STATE(1873), 1, + STATE(1758), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -64753,62 +64805,62 @@ static const uint16_t ts_small_parse_table[] = { [8276] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, ACTIONS(860), 1, anon_sym_STAR, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(547), 1, + STATE(542), 1, sym_value, - STATE(1496), 1, + STATE(1465), 1, sym_inclusive_predicate, - STATE(1526), 1, + STATE(1521), 1, sym_predicate, - STATE(1739), 1, + STATE(1865), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -64820,62 +64872,62 @@ static const uint16_t ts_small_parse_table[] = { [8367] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, ACTIONS(860), 1, anon_sym_STAR, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(547), 1, + STATE(569), 1, sym_value, - STATE(1435), 1, - sym_inclusive_predicate, - STATE(1526), 1, + STATE(1521), 1, sym_predicate, - STATE(1739), 1, + STATE(1531), 1, + sym_inclusive_predicate, + STATE(1758), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -64887,43 +64939,43 @@ static const uint16_t ts_small_parse_table[] = { [8458] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(512), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(519), 1, sym_value, - STATE(1750), 1, + STATE(1785), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, @@ -64931,16 +64983,16 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_diff, sym_keyword_before, sym_keyword_after, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -64952,43 +65004,43 @@ static const uint16_t ts_small_parse_table[] = { [8545] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(3), 1, sym_base_value, - STATE(521), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(507), 1, sym_value, - STATE(1760), 1, + STATE(1775), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, @@ -64996,16 +65048,16 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_diff, sym_keyword_before, sym_keyword_after, - STATE(93), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65017,60 +65069,60 @@ static const uint16_t ts_small_parse_table[] = { [8632] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, ACTIONS(864), 1, - sym_keyword_where, - STATE(4), 1, + anon_sym_QMARK, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(606), 1, + STATE(531), 1, sym_value, - STATE(1668), 1, - sym_where_clause, - STATE(1769), 1, + STATE(1449), 1, + sym_graph_predicate, + STATE(1790), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65082,60 +65134,60 @@ static const uint16_t ts_small_parse_table[] = { [8720] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(866), 1, + ACTIONS(864), 1, anon_sym_QMARK, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(537), 1, + STATE(531), 1, sym_value, - STATE(1452), 1, + STATE(1503), 1, sym_graph_predicate, - STATE(1768), 1, + STATE(1790), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65147,60 +65199,190 @@ static const uint16_t ts_small_parse_table[] = { [8808] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(478), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + aux_sym_type_name_token1, ACTIONS(488), 1, + sym_decimal, + ACTIONS(490), 1, + sym_duration_part, + ACTIONS(864), 1, + anon_sym_QMARK, + STATE(3), 1, + sym_base_value, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(531), 1, + sym_value, + STATE(1475), 1, + sym_graph_predicate, + STATE(1790), 1, + sym_object_key, + ACTIONS(65), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(486), 2, + sym_int, + sym_float, + ACTIONS(456), 3, + sym_keyword_rand, + sym_custom_function_name, + sym_function_name, + ACTIONS(484), 3, + sym_string, + sym_prefixed_string, + sym_variable_name, + STATE(73), 3, + sym_function_call, + sym_binary_expression, + sym_path, + ACTIONS(458), 4, + sym_keyword_true, + sym_keyword_false, + sym_keyword_none, + sym_keyword_null, + STATE(19), 8, + sym_number, + sym_identifier, + sym_array, + sym_object, + sym_record_id, + sym_sub_query, + sym_duration, + sym_point, + [8896] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, + sym_keyword_count, + ACTIONS(476), 1, anon_sym_LBRACK, + ACTIONS(478), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + aux_sym_type_name_token1, + ACTIONS(488), 1, + sym_decimal, ACTIONS(490), 1, + sym_duration_part, + ACTIONS(866), 1, + sym_keyword_where, + STATE(3), 1, + sym_base_value, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(597), 1, + sym_value, + STATE(1622), 1, + sym_where_clause, + STATE(1791), 1, + sym_object_key, + ACTIONS(65), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(486), 2, + sym_int, + sym_float, + ACTIONS(456), 3, + sym_keyword_rand, + sym_custom_function_name, + sym_function_name, + ACTIONS(484), 3, + sym_string, + sym_prefixed_string, + sym_variable_name, + STATE(73), 3, + sym_function_call, + sym_binary_expression, + sym_path, + ACTIONS(458), 4, + sym_keyword_true, + sym_keyword_false, + sym_keyword_none, + sym_keyword_null, + STATE(19), 8, + sym_number, + sym_identifier, + sym_array, + sym_object, + sym_record_id, + sym_sub_query, + sym_duration, + sym_point, + [8984] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, + sym_keyword_count, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(864), 1, + ACTIONS(866), 1, sym_keyword_where, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(603), 1, + STATE(600), 1, sym_value, - STATE(1642), 1, + STATE(1675), 1, sym_where_clause, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65209,7 +65391,72 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [8896] = 23, + [9072] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, + sym_keyword_count, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(478), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + aux_sym_type_name_token1, + ACTIONS(488), 1, + sym_decimal, + ACTIONS(490), 1, + sym_duration_part, + ACTIONS(864), 1, + anon_sym_QMARK, + STATE(3), 1, + sym_base_value, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(531), 1, + sym_value, + STATE(1447), 1, + sym_graph_predicate, + STATE(1790), 1, + sym_object_key, + ACTIONS(65), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(486), 2, + sym_int, + sym_float, + ACTIONS(456), 3, + sym_keyword_rand, + sym_custom_function_name, + sym_function_name, + ACTIONS(484), 3, + sym_string, + sym_prefixed_string, + sym_variable_name, + STATE(73), 3, + sym_function_call, + sym_binary_expression, + sym_path, + ACTIONS(458), 4, + sym_keyword_true, + sym_keyword_false, + sym_keyword_none, + sym_keyword_null, + STATE(19), 8, + sym_number, + sym_identifier, + sym_array, + sym_object, + sym_record_id, + sym_sub_query, + sym_duration, + sym_point, + [9160] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -65230,17 +65477,17 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_by, ACTIONS(870), 1, sym_duration_part, - STATE(81), 1, - sym_base_value, - STATE(89), 1, + STATE(79), 1, sym_graph_path, + STATE(90), 1, + sym_base_value, STATE(97), 1, aux_sym_duration_repeat1, - STATE(399), 1, + STATE(401), 1, sym_value, - STATE(1087), 1, + STATE(1099), 1, sym_order_criteria, - STATE(1746), 1, + STATE(1772), 1, sym_object_key, ACTIONS(51), 2, sym_int, @@ -65256,7 +65503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, @@ -65265,7 +65512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -65274,63 +65521,63 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [8984] = 23, + [9248] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, ACTIONS(866), 1, - anon_sym_QMARK, - STATE(4), 1, + sym_keyword_where, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(537), 1, + STATE(599), 1, sym_value, - STATE(1469), 1, - sym_graph_predicate, - STATE(1768), 1, + STATE(1692), 1, + sym_where_clause, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65339,63 +65586,63 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9072] = 23, + [9336] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, ACTIONS(864), 1, - sym_keyword_where, - STATE(4), 1, + anon_sym_QMARK, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(599), 1, + STATE(531), 1, sym_value, - STATE(1613), 1, - sym_where_clause, - STATE(1769), 1, + STATE(1525), 1, + sym_graph_predicate, + STATE(1790), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65404,63 +65651,63 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9160] = 23, + [9424] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(864), 1, + ACTIONS(866), 1, sym_keyword_where, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(611), 1, + STATE(609), 1, sym_value, - STATE(1683), 1, + STATE(1686), 1, sym_where_clause, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65469,63 +65716,63 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9248] = 23, + [9512] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(237), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(872), 1, + sym_keyword_by, + ACTIONS(878), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(884), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(890), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(892), 1, sym_duration_part, - ACTIONS(866), 1, - anon_sym_QMARK, - STATE(4), 1, + STATE(69), 1, sym_base_value, - STATE(5), 1, + STATE(70), 1, sym_graph_path, - STATE(7), 1, + STATE(92), 1, aux_sym_duration_repeat1, - STATE(537), 1, + STATE(381), 1, sym_value, - STATE(1515), 1, - sym_graph_predicate, - STATE(1768), 1, + STATE(1002), 1, + sym_order_criteria, + STATE(1712), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(233), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(888), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(874), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(886), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(190), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(876), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(114), 8, sym_number, sym_identifier, sym_array, @@ -65534,63 +65781,63 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9336] = 23, + [9600] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(864), 1, + ACTIONS(866), 1, sym_keyword_where, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(602), 1, + STATE(604), 1, sym_value, - STATE(1679), 1, + STATE(1654), 1, sym_where_clause, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65599,63 +65846,63 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9424] = 23, + [9688] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, ACTIONS(866), 1, - anon_sym_QMARK, - STATE(4), 1, + sym_keyword_where, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(537), 1, + STATE(611), 1, sym_value, - STATE(1441), 1, - sym_graph_predicate, - STATE(1768), 1, + STATE(1680), 1, + sym_where_clause, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65664,63 +65911,63 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9512] = 23, + [9776] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(866), 1, + ACTIONS(864), 1, anon_sym_QMARK, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(537), 1, + STATE(531), 1, sym_value, - STATE(1549), 1, + STATE(1432), 1, sym_graph_predicate, - STATE(1768), 1, + STATE(1790), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65729,63 +65976,63 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9600] = 23, + [9864] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, ACTIONS(864), 1, - sym_keyword_where, - STATE(4), 1, + anon_sym_QMARK, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(604), 1, + STATE(531), 1, sym_value, - STATE(1597), 1, - sym_where_clause, - STATE(1769), 1, + STATE(1586), 1, + sym_graph_predicate, + STATE(1790), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65794,63 +66041,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9688] = 23, + [9952] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(866), 1, - anon_sym_QMARK, - STATE(4), 1, + ACTIONS(894), 1, + anon_sym_RPAREN, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(537), 1, + STATE(573), 1, sym_value, - STATE(1680), 1, - sym_graph_predicate, - STATE(1768), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65859,63 +66104,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9776] = 23, + [10037] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(245), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(349), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(872), 1, - sym_keyword_by, - ACTIONS(878), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(880), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(884), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(890), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(892), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(71), 1, + ACTIONS(896), 1, + anon_sym_RBRACK, + STATE(3), 1, sym_base_value, - STATE(72), 1, + STATE(6), 1, sym_graph_path, - STATE(92), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(377), 1, + STATE(580), 1, sym_value, - STATE(1015), 1, - sym_order_criteria, - STATE(1737), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(241), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(888), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(874), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(886), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(177), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(876), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(112), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65924,63 +66167,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9864] = 23, + [10122] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(866), 1, - anon_sym_QMARK, - STATE(4), 1, + ACTIONS(898), 1, + anon_sym_RPAREN, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(537), 1, + STATE(582), 1, sym_value, - STATE(1445), 1, - sym_graph_predicate, - STATE(1768), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -65989,124 +66230,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [9952] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - sym_keyword_count, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, - anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, - aux_sym_type_name_token1, - ACTIONS(53), 1, - sym_decimal, - ACTIONS(265), 1, - anon_sym_LT_DASH, - ACTIONS(870), 1, - sym_duration_part, - STATE(81), 1, - sym_base_value, - STATE(89), 1, - sym_graph_path, - STATE(97), 1, - aux_sym_duration_repeat1, - STATE(399), 1, - sym_value, - STATE(996), 1, - sym_order_criteria, - STATE(1746), 1, - sym_object_key, - ACTIONS(51), 2, - sym_int, - sym_float, - ACTIONS(261), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(7), 3, - sym_keyword_rand, - sym_custom_function_name, - sym_function_name, - ACTIONS(49), 3, - sym_string, - sym_prefixed_string, - sym_variable_name, - STATE(93), 3, - sym_function_call, - sym_binary_expression, - sym_path, - ACTIONS(11), 4, - sym_keyword_true, - sym_keyword_false, - sym_keyword_none, - sym_keyword_null, - STATE(61), 8, - sym_number, - sym_identifier, - sym_array, - sym_object, - sym_record_id, - sym_sub_query, - sym_duration, - sym_point, - [10037] = 22, + [10207] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(894), 1, + ACTIONS(900), 1, anon_sym_RBRACK, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(566), 1, + STATE(565), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66115,61 +66293,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10122] = 22, + [10292] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(896), 1, - anon_sym_RPAREN, - STATE(4), 1, + ACTIONS(902), 1, + anon_sym_RBRACK, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(560), 1, + STATE(554), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66178,61 +66356,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10207] = 22, + [10377] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(898), 1, + ACTIONS(904), 1, anon_sym_RBRACK, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(557), 1, + STATE(567), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66241,61 +66419,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10292] = 22, + [10462] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(900), 1, + ACTIONS(906), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(565), 1, + STATE(557), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66304,61 +66482,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10377] = 22, + [10547] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(902), 1, + ACTIONS(908), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(558), 1, + STATE(587), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66367,61 +66545,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10462] = 22, + [10632] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(237), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(878), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(884), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(890), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(892), 1, sym_duration_part, - ACTIONS(904), 1, - anon_sym_RBRACK, - STATE(4), 1, + STATE(69), 1, sym_base_value, - STATE(5), 1, + STATE(70), 1, sym_graph_path, - STATE(7), 1, + STATE(92), 1, aux_sym_duration_repeat1, - STATE(561), 1, + STATE(381), 1, sym_value, - STATE(1769), 1, + STATE(1010), 1, + sym_order_criteria, + STATE(1712), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(233), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(888), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(874), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(886), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(190), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(876), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(114), 8, sym_number, sym_identifier, sym_array, @@ -66430,61 +66608,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10547] = 22, + [10717] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(245), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(349), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(878), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(880), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(884), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(890), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(892), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(71), 1, + STATE(3), 1, sym_base_value, - STATE(72), 1, + STATE(6), 1, sym_graph_path, - STATE(92), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(377), 1, + STATE(542), 1, sym_value, - STATE(1004), 1, - sym_order_criteria, - STATE(1737), 1, + STATE(1646), 1, + sym_predicate, + STATE(1865), 1, sym_object_key, - ACTIONS(241), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(888), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(874), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(886), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(177), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(876), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(112), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66493,61 +66671,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10632] = 22, + [10802] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(906), 1, - anon_sym_RPAREN, - STATE(4), 1, + ACTIONS(910), 1, + anon_sym_RBRACK, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(578), 1, + STATE(559), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66556,61 +66734,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10717] = 22, + [10887] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(237), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(878), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(884), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(890), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(892), 1, sym_duration_part, - STATE(4), 1, + STATE(69), 1, sym_base_value, - STATE(5), 1, + STATE(70), 1, sym_graph_path, - STATE(7), 1, + STATE(92), 1, aux_sym_duration_repeat1, - STATE(542), 1, + STATE(381), 1, sym_value, - STATE(1631), 1, - sym_predicate, - STATE(1873), 1, + STATE(1014), 1, + sym_order_criteria, + STATE(1712), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(233), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(888), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(874), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(886), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(190), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(876), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(114), 8, sym_number, sym_identifier, sym_array, @@ -66619,61 +66797,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10802] = 22, + [10972] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(908), 1, + ACTIONS(912), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(563), 1, + STATE(576), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66682,61 +66860,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10887] = 22, + [11057] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(910), 1, - anon_sym_RBRACK, - STATE(4), 1, + ACTIONS(914), 1, + anon_sym_RPAREN, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(573), 1, + STATE(563), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66745,61 +66923,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [10972] = 22, + [11142] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(912), 1, + ACTIONS(916), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, STATE(556), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66808,61 +66986,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11057] = 22, + [11227] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(914), 1, - anon_sym_RBRACK, - STATE(4), 1, + ACTIONS(918), 1, + anon_sym_RPAREN, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(587), 1, + STATE(568), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66871,61 +67049,124 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11142] = 22, + [11312] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(35), 1, + sym_keyword_count, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(41), 1, + anon_sym_LPAREN, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, + aux_sym_type_name_token1, + ACTIONS(53), 1, + sym_decimal, + ACTIONS(265), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(870), 1, + sym_duration_part, + STATE(79), 1, + sym_graph_path, + STATE(90), 1, + sym_base_value, + STATE(97), 1, + aux_sym_duration_repeat1, + STATE(401), 1, + sym_value, + STATE(1014), 1, + sym_order_criteria, + STATE(1772), 1, + sym_object_key, + ACTIONS(51), 2, + sym_int, + sym_float, + ACTIONS(261), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(7), 3, + sym_keyword_rand, + sym_custom_function_name, + sym_function_name, + ACTIONS(49), 3, + sym_string, + sym_prefixed_string, + sym_variable_name, + STATE(99), 3, + sym_function_call, + sym_binary_expression, + sym_path, + ACTIONS(11), 4, + sym_keyword_true, + sym_keyword_false, + sym_keyword_none, + sym_keyword_null, + STATE(57), 8, + sym_number, + sym_identifier, + sym_array, + sym_object, + sym_record_id, + sym_sub_query, + sym_duration, + sym_point, + [11397] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(916), 1, + ACTIONS(920), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, STATE(552), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66934,61 +67175,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11227] = 22, + [11482] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(918), 1, + ACTIONS(922), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(572), 1, + STATE(585), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -66997,61 +67238,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11312] = 22, + [11567] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(920), 1, - anon_sym_RPAREN, - STATE(4), 1, + ACTIONS(924), 1, + anon_sym_RBRACK, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(586), 1, + STATE(572), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -67060,61 +67301,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11397] = 22, + [11652] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(245), 1, - anon_sym_LT_DASH, - ACTIONS(349), 1, - anon_sym_LBRACE, - ACTIONS(878), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(880), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(884), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(890), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(892), 1, + ACTIONS(265), 1, + anon_sym_LT_DASH, + ACTIONS(870), 1, sym_duration_part, - STATE(71), 1, - sym_base_value, - STATE(72), 1, + STATE(79), 1, sym_graph_path, - STATE(92), 1, + STATE(90), 1, + sym_base_value, + STATE(97), 1, aux_sym_duration_repeat1, - STATE(377), 1, + STATE(401), 1, sym_value, - STATE(996), 1, + STATE(1060), 1, sym_order_criteria, - STATE(1737), 1, + STATE(1772), 1, sym_object_key, - ACTIONS(241), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(888), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(874), 3, + ACTIONS(261), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(886), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(177), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(876), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(112), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -67123,61 +67364,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11482] = 22, + [11737] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(922), 1, - anon_sym_RBRACK, - STATE(4), 1, + ACTIONS(926), 1, + anon_sym_RPAREN, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(577), 1, + STATE(561), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -67186,61 +67427,61 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11567] = 22, + [11822] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(924), 1, + ACTIONS(928), 1, anon_sym_RPAREN, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(581), 1, + STATE(579), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -67249,61 +67490,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11652] = 22, + [11907] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(55), 1, sym_duration_part, - ACTIONS(926), 1, - anon_sym_RPAREN, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(550), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(521), 1, sym_value, - STATE(1769), 1, + STATE(1783), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -67312,61 +67551,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11737] = 22, + [11989] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - ACTIONS(928), 1, - anon_sym_RPAREN, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(575), 1, + STATE(586), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -67375,61 +67612,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11822] = 22, + [12071] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(55), 1, + sym_duration_part, + ACTIONS(422), 1, + anon_sym_LBRACE, + ACTIONS(432), 1, + anon_sym_LT_DASH, + ACTIONS(934), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(936), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(938), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(940), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(946), 1, sym_decimal, - ACTIONS(265), 1, - anon_sym_LT_DASH, - ACTIONS(870), 1, - sym_duration_part, - STATE(81), 1, + STATE(51), 1, + aux_sym_duration_repeat1, + STATE(154), 1, sym_base_value, - STATE(89), 1, + STATE(159), 1, sym_graph_path, - STATE(97), 1, - aux_sym_duration_repeat1, - STATE(399), 1, + STATE(357), 1, sym_value, - STATE(1072), 1, - sym_order_criteria, - STATE(1746), 1, + STATE(1741), 1, sym_object_key, - ACTIONS(51), 2, - sym_int, - sym_float, - ACTIONS(261), 2, + ACTIONS(428), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(7), 3, + ACTIONS(944), 2, + sym_int, + sym_float, + ACTIONS(930), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(942), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(423), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(932), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(296), 8, sym_number, sym_identifier, sym_array, @@ -67438,59 +67673,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11907] = 21, + [12153] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(245), 1, - anon_sym_LT_DASH, - ACTIONS(349), 1, - anon_sym_LBRACE, - ACTIONS(878), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(880), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(884), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(890), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(892), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(71), 1, - sym_base_value, - STATE(72), 1, - sym_graph_path, - STATE(92), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(461), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(538), 1, sym_value, - STATE(1728), 1, + STATE(1783), 1, sym_object_key, - ACTIONS(241), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(888), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(874), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(886), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(177), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(876), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(112), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -67499,59 +67734,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [11989] = 21, + [12235] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(532), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(601), 1, sym_value, - STATE(1711), 1, + STATE(1851), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -67560,59 +67795,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12071] = 21, + [12317] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(245), 1, - anon_sym_LT_DASH, - ACTIONS(349), 1, - anon_sym_LBRACE, - ACTIONS(878), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(880), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(884), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(890), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(892), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(71), 1, - sym_base_value, - STATE(72), 1, - sym_graph_path, - STATE(92), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(475), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(596), 1, sym_value, - STATE(1728), 1, + STATE(1851), 1, sym_object_key, - ACTIONS(241), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(888), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(874), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(886), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(177), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(876), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(112), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -67621,59 +67856,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12153] = 21, + [12399] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(345), 1, anon_sym_LBRACE, - ACTIONS(389), 1, + ACTIONS(385), 1, anon_sym_LT_DASH, - ACTIONS(559), 1, + ACTIONS(516), 1, sym_keyword_count, - ACTIONS(561), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(563), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(565), 1, + ACTIONS(522), 1, aux_sym_type_name_token1, - ACTIONS(571), 1, + ACTIONS(528), 1, sym_decimal, - ACTIONS(573), 1, + ACTIONS(530), 1, sym_duration_part, - STATE(149), 1, + STATE(150), 1, sym_graph_path, - STATE(162), 1, + STATE(151), 1, sym_base_value, - STATE(219), 1, + STATE(222), 1, aux_sym_duration_repeat1, - STATE(394), 1, + STATE(474), 1, sym_value, - STATE(1727), 1, + STATE(1755), 1, sym_object_key, - ACTIONS(385), 2, + ACTIONS(381), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(569), 2, + ACTIONS(526), 2, sym_int, sym_float, - ACTIONS(555), 3, + ACTIONS(512), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(567), 3, + ACTIONS(524), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(424), 3, + STATE(442), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(557), 4, + ACTIONS(514), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(272), 8, + STATE(315), 8, sym_number, sym_identifier, sym_array, @@ -67682,59 +67917,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12235] = 21, + [12481] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(433), 1, + STATE(607), 1, sym_value, - STATE(1701), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -67743,59 +67978,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12317] = 21, + [12563] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(265), 1, + anon_sym_LT_DASH, + ACTIONS(870), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, + STATE(79), 1, sym_graph_path, - STATE(7), 1, + STATE(90), 1, + sym_base_value, + STATE(97), 1, aux_sym_duration_repeat1, - STATE(597), 1, + STATE(482), 1, sym_value, - STATE(1769), 1, + STATE(1735), 1, sym_object_key, - ACTIONS(81), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(261), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -67804,59 +68039,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12399] = 21, + [12645] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(326), 1, + STATE(598), 1, sym_value, - STATE(1714), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -67865,59 +68100,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12481] = 21, + [12727] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_LBRACE, - ACTIONS(389), 1, - anon_sym_LT_DASH, - ACTIONS(559), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(561), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(563), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(565), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(571), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(573), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(149), 1, + STATE(51), 1, + aux_sym_duration_repeat1, + STATE(144), 1, sym_graph_path, - STATE(162), 1, + STATE(145), 1, sym_base_value, - STATE(219), 1, - aux_sym_duration_repeat1, - STATE(463), 1, + STATE(420), 1, sym_value, - STATE(1736), 1, + STATE(1822), 1, sym_object_key, - ACTIONS(385), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(569), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(555), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(567), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(424), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(557), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(272), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -67926,59 +68161,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12563] = 21, + [12809] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(592), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(560), 1, sym_value, - STATE(1769), 1, + STATE(1851), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -67987,59 +68222,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12645] = 21, + [12891] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, - anon_sym_LBRACE, - ACTIONS(452), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(531), 1, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(533), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(535), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(537), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(543), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(545), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(194), 1, + STATE(3), 1, sym_base_value, - STATE(195), 1, + STATE(6), 1, sym_graph_path, - STATE(257), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(393), 1, + STATE(606), 1, sym_value, - STATE(1730), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(448), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(541), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(527), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(539), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(479), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(529), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(352), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -68048,59 +68283,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12727] = 21, + [12973] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_duration_part, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(420), 1, + ACTIONS(237), 1, anon_sym_LT_DASH, - ACTIONS(934), 1, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(878), 1, sym_keyword_count, - ACTIONS(936), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(938), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(940), 1, + ACTIONS(884), 1, aux_sym_type_name_token1, - ACTIONS(946), 1, + ACTIONS(890), 1, sym_decimal, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(164), 1, - sym_graph_path, - STATE(167), 1, + ACTIONS(892), 1, + sym_duration_part, + STATE(69), 1, sym_base_value, - STATE(353), 1, + STATE(70), 1, + sym_graph_path, + STATE(92), 1, + aux_sym_duration_repeat1, + STATE(462), 1, sym_value, - STATE(1721), 1, + STATE(1750), 1, sym_object_key, - ACTIONS(416), 2, + ACTIONS(233), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(944), 2, + ACTIONS(888), 2, sym_int, sym_float, - ACTIONS(930), 3, + ACTIONS(874), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(942), 3, + ACTIONS(886), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(434), 3, + STATE(190), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(932), 4, + ACTIONS(876), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(267), 8, + STATE(114), 8, sym_number, sym_identifier, sym_array, @@ -68109,59 +68344,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12809] = 21, + [13055] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(237), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(878), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(884), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(890), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(892), 1, sym_duration_part, - STATE(4), 1, + STATE(69), 1, sym_base_value, - STATE(5), 1, + STATE(70), 1, sym_graph_path, - STATE(7), 1, + STATE(92), 1, aux_sym_duration_repeat1, - STATE(600), 1, + STATE(466), 1, sym_value, - STATE(1769), 1, + STATE(1750), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(233), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(888), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(874), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(886), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(190), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(876), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(114), 8, sym_number, sym_identifier, sym_array, @@ -68170,59 +68405,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12891] = 21, + [13137] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(545), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(508), 1, sym_value, - STATE(1716), 1, + STATE(1831), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -68231,59 +68466,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [12973] = 21, + [13219] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_duration_part, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(420), 1, + ACTIONS(237), 1, anon_sym_LT_DASH, - ACTIONS(934), 1, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(878), 1, sym_keyword_count, - ACTIONS(936), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(938), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(940), 1, + ACTIONS(884), 1, aux_sym_type_name_token1, - ACTIONS(946), 1, + ACTIONS(890), 1, sym_decimal, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(164), 1, - sym_graph_path, - STATE(167), 1, + ACTIONS(892), 1, + sym_duration_part, + STATE(69), 1, sym_base_value, - STATE(478), 1, + STATE(70), 1, + sym_graph_path, + STATE(92), 1, + aux_sym_duration_repeat1, + STATE(481), 1, sym_value, - STATE(1718), 1, + STATE(1750), 1, sym_object_key, - ACTIONS(416), 2, + ACTIONS(233), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(944), 2, + ACTIONS(888), 2, sym_int, sym_float, - ACTIONS(930), 3, + ACTIONS(874), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(942), 3, + ACTIONS(886), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(434), 3, + STATE(190), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(932), 4, + ACTIONS(876), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(267), 8, + STATE(114), 8, sym_number, sym_identifier, sym_array, @@ -68292,59 +68527,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [13055] = 21, + [13301] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(551), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(545), 1, sym_value, - STATE(1769), 1, + STATE(1739), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -68353,59 +68588,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [13137] = 21, + [13383] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(265), 1, - anon_sym_LT_DASH, - ACTIONS(870), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(81), 1, + STATE(3), 1, sym_base_value, - STATE(89), 1, + STATE(6), 1, sym_graph_path, - STATE(97), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(486), 1, + STATE(575), 1, sym_value, - STATE(1740), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(51), 2, - sym_int, - sym_float, - ACTIONS(261), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(7), 3, + ACTIONS(486), 2, + sym_int, + sym_float, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -68414,59 +68649,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [13219] = 21, + [13465] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(526), 1, + STATE(558), 1, sym_value, - STATE(1711), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -68475,120 +68710,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [13301] = 21, + [13547] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, - sym_decimal, - ACTIONS(502), 1, - sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, - aux_sym_duration_repeat1, - STATE(543), 1, - sym_value, - STATE(1768), 1, - sym_object_key, - ACTIONS(81), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(498), 2, - sym_int, - sym_float, - ACTIONS(468), 3, - sym_keyword_rand, - sym_custom_function_name, - sym_function_name, - ACTIONS(496), 3, - sym_string, - sym_prefixed_string, - sym_variable_name, - STATE(78), 3, - sym_function_call, - sym_binary_expression, - sym_path, - ACTIONS(470), 4, - sym_keyword_true, - sym_keyword_false, - sym_keyword_none, - sym_keyword_null, - STATE(30), 8, - sym_number, - sym_identifier, - sym_array, - sym_object, - sym_record_id, - sym_sub_query, - sym_duration, - sym_point, - [13383] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, - sym_keyword_count, ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(490), 1, - anon_sym_LPAREN, - ACTIONS(494), 1, - aux_sym_type_name_token1, - ACTIONS(500), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(438), 1, + STATE(608), 1, sym_value, - STATE(1712), 1, + STATE(1786), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -68597,7 +68771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [13465] = 21, + [13629] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -68616,15 +68790,15 @@ static const uint16_t ts_small_parse_table[] = { sym_decimal, ACTIONS(55), 1, sym_duration_part, - STATE(52), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(158), 1, + STATE(144), 1, sym_graph_path, - STATE(159), 1, + STATE(145), 1, sym_base_value, - STATE(520), 1, + STATE(511), 1, sym_value, - STATE(1758), 1, + STATE(1831), 1, sym_object_key, ACTIONS(37), 2, anon_sym_DASH_GT, @@ -68640,7 +68814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, @@ -68649,7 +68823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -68658,59 +68832,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [13547] = 21, + [13711] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(608), 1, + STATE(434), 1, sym_value, - STATE(1769), 1, + STATE(1733), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -68719,59 +68893,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [13629] = 21, + [13793] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, + ACTIONS(55), 1, + sym_duration_part, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(452), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - ACTIONS(531), 1, + ACTIONS(934), 1, sym_keyword_count, - ACTIONS(533), 1, + ACTIONS(936), 1, anon_sym_LBRACK, - ACTIONS(535), 1, + ACTIONS(938), 1, anon_sym_LPAREN, - ACTIONS(537), 1, + ACTIONS(940), 1, aux_sym_type_name_token1, - ACTIONS(543), 1, + ACTIONS(946), 1, sym_decimal, - ACTIONS(545), 1, - sym_duration_part, - STATE(194), 1, + STATE(51), 1, + aux_sym_duration_repeat1, + STATE(154), 1, sym_base_value, - STATE(195), 1, + STATE(159), 1, sym_graph_path, - STATE(257), 1, - aux_sym_duration_repeat1, - STATE(409), 1, + STATE(463), 1, sym_value, - STATE(1763), 1, + STATE(1740), 1, sym_object_key, - ACTIONS(448), 2, + ACTIONS(428), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(541), 2, + ACTIONS(944), 2, sym_int, sym_float, - ACTIONS(527), 3, + ACTIONS(930), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(539), 3, + ACTIONS(942), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(479), 3, + STATE(423), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(529), 4, + ACTIONS(932), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(352), 8, + STATE(296), 8, sym_number, sym_identifier, sym_array, @@ -68780,59 +68954,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [13711] = 21, + [13875] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(389), 1, + STATE(388), 1, sym_value, - STATE(1714), 1, + STATE(1734), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -68841,59 +69015,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [13793] = 21, + [13957] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(377), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(452), 1, + anon_sym_LT_DASH, + ACTIONS(561), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(563), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(565), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(567), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(573), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(575), 1, sym_duration_part, - STATE(4), 1, + STATE(171), 1, sym_base_value, - STATE(5), 1, + STATE(178), 1, sym_graph_path, - STATE(7), 1, + STATE(258), 1, aux_sym_duration_repeat1, - STATE(405), 1, + STATE(409), 1, sym_value, - STATE(1764), 1, + STATE(1700), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(448), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(571), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(557), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(569), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(475), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(559), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(348), 8, sym_number, sym_identifier, sym_array, @@ -68902,120 +69076,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [13875] = 21, + [14039] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, - aux_sym_duration_repeat1, - STATE(544), 1, - sym_value, - STATE(1873), 1, - sym_object_key, - ACTIONS(81), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(498), 2, - sym_int, - sym_float, - ACTIONS(468), 3, - sym_keyword_rand, - sym_custom_function_name, - sym_function_name, - ACTIONS(496), 3, - sym_string, - sym_prefixed_string, - sym_variable_name, - STATE(78), 3, - sym_function_call, - sym_binary_expression, - sym_path, - ACTIONS(470), 4, - sym_keyword_true, - sym_keyword_false, - sym_keyword_none, - sym_keyword_null, - STATE(30), 8, - sym_number, - sym_identifier, - sym_array, - sym_object, - sym_record_id, - sym_sub_query, - sym_duration, - sym_point, - [13957] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - sym_keyword_count, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(41), 1, - anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, - aux_sym_type_name_token1, - ACTIONS(53), 1, - sym_decimal, - ACTIONS(55), 1, - sym_duration_part, - STATE(52), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, - sym_base_value, - STATE(531), 1, + STATE(416), 1, sym_value, - STATE(1758), 1, + STATE(1788), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -69024,59 +69137,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [14039] = 21, + [14121] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(245), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(349), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(878), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(880), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(884), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(890), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(892), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(71), 1, + STATE(3), 1, sym_base_value, - STATE(72), 1, + STATE(6), 1, sym_graph_path, - STATE(92), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(382), 1, + STATE(603), 1, sym_value, - STATE(1737), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(241), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(888), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(874), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(886), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(177), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(876), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(112), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -69085,59 +69198,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [14121] = 21, + [14203] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(55), 1, + sym_duration_part, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(432), 1, + anon_sym_LT_DASH, + ACTIONS(934), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(936), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(938), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(940), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(946), 1, sym_decimal, - ACTIONS(502), 1, - sym_duration_part, - STATE(4), 1, + STATE(51), 1, + aux_sym_duration_repeat1, + STATE(154), 1, sym_base_value, - STATE(5), 1, + STATE(159), 1, sym_graph_path, - STATE(7), 1, - aux_sym_duration_repeat1, - STATE(605), 1, + STATE(397), 1, sym_value, - STATE(1769), 1, + STATE(1741), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(428), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(944), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(930), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(942), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(423), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(932), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(296), 8, sym_number, sym_identifier, sym_array, @@ -69146,59 +69259,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [14203] = 21, + [14285] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(539), 1, + STATE(591), 1, sym_value, - STATE(1716), 1, + STATE(1765), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -69207,59 +69320,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [14285] = 21, + [14367] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(585), 1, + STATE(529), 1, sym_value, - STATE(1769), 1, + STATE(1731), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -69268,59 +69381,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [14367] = 21, + [14449] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(582), 1, + STATE(570), 1, sym_value, - STATE(1769), 1, + STATE(1780), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -69329,120 +69442,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [14449] = 21, + [14531] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, - aux_sym_duration_repeat1, - STATE(583), 1, - sym_value, - STATE(1769), 1, - sym_object_key, - ACTIONS(81), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(498), 2, - sym_int, - sym_float, - ACTIONS(468), 3, - sym_keyword_rand, - sym_custom_function_name, - sym_function_name, - ACTIONS(496), 3, - sym_string, - sym_prefixed_string, - sym_variable_name, - STATE(78), 3, - sym_function_call, - sym_binary_expression, - sym_path, - ACTIONS(470), 4, - sym_keyword_true, - sym_keyword_false, - sym_keyword_none, - sym_keyword_null, - STATE(30), 8, - sym_number, - sym_identifier, - sym_array, - sym_object, - sym_record_id, - sym_sub_query, - sym_duration, - sym_point, - [14531] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - sym_duration_part, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(420), 1, - anon_sym_LT_DASH, - ACTIONS(934), 1, - sym_keyword_count, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_LPAREN, - ACTIONS(940), 1, - aux_sym_type_name_token1, - ACTIONS(946), 1, - sym_decimal, - STATE(52), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(164), 1, - sym_graph_path, - STATE(167), 1, - sym_base_value, - STATE(465), 1, + STATE(526), 1, sym_value, - STATE(1718), 1, + STATE(1762), 1, sym_object_key, - ACTIONS(416), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(944), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(930), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(942), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(434), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(932), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(267), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -69454,56 +69506,56 @@ static const uint16_t ts_small_parse_table[] = { [14613] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(377), 1, anon_sym_LBRACE, - ACTIONS(389), 1, + ACTIONS(452), 1, anon_sym_LT_DASH, - ACTIONS(559), 1, - sym_keyword_count, ACTIONS(561), 1, - anon_sym_LBRACK, + sym_keyword_count, ACTIONS(563), 1, - anon_sym_LPAREN, + anon_sym_LBRACK, ACTIONS(565), 1, + anon_sym_LPAREN, + ACTIONS(567), 1, aux_sym_type_name_token1, - ACTIONS(571), 1, - sym_decimal, ACTIONS(573), 1, + sym_decimal, + ACTIONS(575), 1, sym_duration_part, - STATE(149), 1, - sym_graph_path, - STATE(162), 1, + STATE(171), 1, sym_base_value, - STATE(219), 1, + STATE(178), 1, + sym_graph_path, + STATE(258), 1, aux_sym_duration_repeat1, - STATE(391), 1, + STATE(486), 1, sym_value, - STATE(1727), 1, + STATE(1767), 1, sym_object_key, - ACTIONS(385), 2, + ACTIONS(448), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(569), 2, + ACTIONS(571), 2, sym_int, sym_float, - ACTIONS(555), 3, + ACTIONS(557), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(567), 3, + ACTIONS(569), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(424), 3, + STATE(475), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(557), 4, + ACTIONS(559), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(272), 8, + STATE(348), 8, sym_number, sym_identifier, sym_array, @@ -69515,56 +69567,56 @@ static const uint16_t ts_small_parse_table[] = { [14695] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(3), 1, sym_base_value, - STATE(515), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(518), 1, sym_value, - STATE(1788), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -69576,56 +69628,56 @@ static const uint16_t ts_small_parse_table[] = { [14777] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, - anon_sym_LBRACE, - ACTIONS(452), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(531), 1, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(533), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(535), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(537), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(543), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(545), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(194), 1, + STATE(3), 1, sym_base_value, - STATE(195), 1, + STATE(6), 1, sym_graph_path, - STATE(257), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(454), 1, + STATE(577), 1, sym_value, - STATE(1730), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(448), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(541), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(527), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(539), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(479), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(529), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(352), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -69637,56 +69689,56 @@ static const uint16_t ts_small_parse_table[] = { [14859] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(55), 1, + sym_duration_part, + ACTIONS(422), 1, + anon_sym_LBRACE, + ACTIONS(432), 1, + anon_sym_LT_DASH, + ACTIONS(934), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(936), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(938), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(940), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(946), 1, sym_decimal, - ACTIONS(55), 1, - sym_duration_part, - STATE(52), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(154), 1, sym_base_value, - STATE(516), 1, + STATE(159), 1, + sym_graph_path, + STATE(338), 1, sym_value, - STATE(1788), 1, + STATE(1741), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(428), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(944), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(930), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(942), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(423), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(932), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(296), 8, sym_number, sym_identifier, sym_array, @@ -69698,56 +69750,56 @@ static const uint16_t ts_small_parse_table[] = { [14941] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(413), 1, + STATE(513), 1, sym_value, - STATE(1764), 1, + STATE(1773), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -69759,56 +69811,56 @@ static const uint16_t ts_small_parse_table[] = { [15023] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(345), 1, + anon_sym_LBRACE, + ACTIONS(385), 1, + anon_sym_LT_DASH, + ACTIONS(516), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(522), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(528), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(530), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, + STATE(150), 1, sym_graph_path, - STATE(159), 1, + STATE(151), 1, sym_base_value, - STATE(593), 1, + STATE(222), 1, + aux_sym_duration_repeat1, + STATE(377), 1, sym_value, - STATE(1839), 1, + STATE(1781), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(381), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(526), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(512), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(524), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(442), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(514), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(315), 8, sym_number, sym_identifier, sym_array, @@ -69820,56 +69872,56 @@ static const uint16_t ts_small_parse_table[] = { [15105] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, - anon_sym_LBRACE, - ACTIONS(452), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(531), 1, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(533), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(535), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(537), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(543), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(545), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(194), 1, + STATE(3), 1, sym_base_value, - STATE(195), 1, + STATE(6), 1, sym_graph_path, - STATE(257), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(495), 1, + STATE(605), 1, sym_value, - STATE(1745), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(448), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(541), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(527), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(539), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(479), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(529), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(352), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -69881,56 +69933,56 @@ static const uint16_t ts_small_parse_table[] = { [15187] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(265), 1, + anon_sym_LT_DASH, + ACTIONS(870), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, + STATE(79), 1, sym_graph_path, - STATE(7), 1, + STATE(90), 1, + sym_base_value, + STATE(97), 1, aux_sym_duration_repeat1, - STATE(580), 1, + STATE(487), 1, sym_value, - STATE(1769), 1, + STATE(1761), 1, sym_object_key, - ACTIONS(81), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(261), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -69942,56 +69994,56 @@ static const uint16_t ts_small_parse_table[] = { [15269] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(568), 1, + STATE(543), 1, sym_value, - STATE(1739), 1, + STATE(1738), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -70003,56 +70055,56 @@ static const uint16_t ts_small_parse_table[] = { [15351] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(609), 1, + STATE(517), 1, sym_value, - STATE(1769), 1, + STATE(1775), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -70064,56 +70116,56 @@ static const uint16_t ts_small_parse_table[] = { [15433] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(377), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(452), 1, + anon_sym_LT_DASH, + ACTIONS(561), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(563), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(565), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(567), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(573), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(575), 1, sym_duration_part, - STATE(4), 1, + STATE(171), 1, sym_base_value, - STATE(5), 1, + STATE(178), 1, sym_graph_path, - STATE(7), 1, + STATE(258), 1, aux_sym_duration_repeat1, - STATE(509), 1, + STATE(415), 1, sym_value, - STATE(1749), 1, + STATE(1700), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(448), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(571), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(557), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(569), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(475), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(559), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(348), 8, sym_number, sym_identifier, sym_array, @@ -70141,15 +70193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(870), 1, sym_duration_part, - STATE(81), 1, - sym_base_value, - STATE(89), 1, + STATE(79), 1, sym_graph_path, + STATE(90), 1, + sym_base_value, STATE(97), 1, aux_sym_duration_repeat1, - STATE(472), 1, + STATE(495), 1, sym_value, - STATE(1715), 1, + STATE(1761), 1, sym_object_key, ACTIONS(51), 2, sym_int, @@ -70165,7 +70217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, @@ -70174,7 +70226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -70186,56 +70238,56 @@ static const uint16_t ts_small_parse_table[] = { [15597] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, ACTIONS(345), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(385), 1, + anon_sym_LT_DASH, + ACTIONS(516), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(522), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(528), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(530), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, + STATE(150), 1, sym_graph_path, - STATE(7), 1, + STATE(151), 1, + sym_base_value, + STATE(222), 1, aux_sym_duration_repeat1, - STATE(548), 1, + STATE(382), 1, sym_value, - STATE(1769), 1, + STATE(1781), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(381), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(526), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(512), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(524), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(442), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(514), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(315), 8, sym_number, sym_identifier, sym_array, @@ -70247,56 +70299,56 @@ static const uint16_t ts_small_parse_table[] = { [15679] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(245), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(349), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(878), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(880), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(884), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(890), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(892), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(71), 1, + STATE(3), 1, sym_base_value, - STATE(72), 1, + STATE(6), 1, sym_graph_path, - STATE(92), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(431), 1, + STATE(504), 1, sym_value, - STATE(1702), 1, + STATE(1789), 1, sym_object_key, - ACTIONS(241), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(888), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(874), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(886), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(177), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(876), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(112), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -70306,67 +70358,6 @@ static const uint16_t ts_small_parse_table[] = { sym_duration, sym_point, [15761] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - sym_duration_part, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(420), 1, - anon_sym_LT_DASH, - ACTIONS(934), 1, - sym_keyword_count, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(938), 1, - anon_sym_LPAREN, - ACTIONS(940), 1, - aux_sym_type_name_token1, - ACTIONS(946), 1, - sym_decimal, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(164), 1, - sym_graph_path, - STATE(167), 1, - sym_base_value, - STATE(345), 1, - sym_value, - STATE(1721), 1, - sym_object_key, - ACTIONS(416), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(944), 2, - sym_int, - sym_float, - ACTIONS(930), 3, - sym_keyword_rand, - sym_custom_function_name, - sym_function_name, - ACTIONS(942), 3, - sym_string, - sym_prefixed_string, - sym_variable_name, - STATE(434), 3, - sym_function_call, - sym_binary_expression, - sym_path, - ACTIONS(932), 4, - sym_keyword_true, - sym_keyword_false, - sym_keyword_none, - sym_keyword_null, - STATE(267), 8, - sym_number, - sym_identifier, - sym_array, - sym_object, - sym_record_id, - sym_sub_query, - sym_duration, - sym_point, - [15843] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -70385,15 +70376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(870), 1, sym_duration_part, - STATE(81), 1, - sym_base_value, - STATE(89), 1, + STATE(79), 1, sym_graph_path, + STATE(90), 1, + sym_base_value, STATE(97), 1, aux_sym_duration_repeat1, - STATE(487), 1, + STATE(496), 1, sym_value, - STATE(1740), 1, + STATE(1761), 1, sym_object_key, ACTIONS(51), 2, sym_int, @@ -70409,7 +70400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, @@ -70418,7 +70409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -70427,59 +70418,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [15925] = 21, + [15843] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(245), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(349), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(878), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(880), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(884), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(890), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(892), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(71), 1, + STATE(3), 1, sym_base_value, - STATE(72), 1, + STATE(6), 1, sym_graph_path, - STATE(92), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(462), 1, + STATE(548), 1, sym_value, - STATE(1728), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(241), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(888), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(874), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(886), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(177), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(876), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(112), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -70488,59 +70479,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16007] = 21, + [15925] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(390), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(535), 1, sym_value, - STATE(1714), 1, + STATE(1785), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -70549,59 +70540,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16089] = 21, + [16007] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(506), 1, + STATE(501), 1, sym_value, - STATE(1766), 1, + STATE(1789), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -70610,59 +70601,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16171] = 21, + [16089] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(245), 1, - anon_sym_LT_DASH, - ACTIONS(349), 1, - anon_sym_LBRACE, - ACTIONS(878), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(880), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(882), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(884), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(890), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(892), 1, + ACTIONS(265), 1, + anon_sym_LT_DASH, + ACTIONS(870), 1, sym_duration_part, - STATE(71), 1, - sym_base_value, - STATE(72), 1, + STATE(79), 1, sym_graph_path, - STATE(92), 1, + STATE(90), 1, + sym_base_value, + STATE(97), 1, aux_sym_duration_repeat1, - STATE(459), 1, + STATE(484), 1, sym_value, - STATE(1728), 1, + STATE(1735), 1, sym_object_key, - ACTIONS(241), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(888), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(874), 3, + ACTIONS(261), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(886), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(177), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(876), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(112), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -70671,59 +70662,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16253] = 21, + [16171] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(447), 1, + STATE(502), 1, sym_value, - STATE(1712), 1, + STATE(1789), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -70732,12 +70723,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16335] = 21, + [16253] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(245), 1, + ACTIONS(237), 1, anon_sym_LT_DASH, - ACTIONS(349), 1, + ACTIONS(353), 1, anon_sym_LBRACE, ACTIONS(878), 1, sym_keyword_count, @@ -70751,17 +70742,17 @@ static const uint16_t ts_small_parse_table[] = { sym_decimal, ACTIONS(892), 1, sym_duration_part, - STATE(71), 1, + STATE(69), 1, sym_base_value, - STATE(72), 1, + STATE(70), 1, sym_graph_path, STATE(92), 1, aux_sym_duration_repeat1, - STATE(440), 1, + STATE(386), 1, sym_value, - STATE(1702), 1, + STATE(1712), 1, sym_object_key, - ACTIONS(241), 2, + ACTIONS(233), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, ACTIONS(888), 2, @@ -70775,7 +70766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_prefixed_string, sym_variable_name, - STATE(177), 3, + STATE(190), 3, sym_function_call, sym_binary_expression, sym_path, @@ -70784,7 +70775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(112), 8, + STATE(114), 8, sym_number, sym_identifier, sym_array, @@ -70793,120 +70784,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16417] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(373), 1, - anon_sym_LBRACE, - ACTIONS(389), 1, - anon_sym_LT_DASH, - ACTIONS(559), 1, - sym_keyword_count, - ACTIONS(561), 1, - anon_sym_LBRACK, - ACTIONS(563), 1, - anon_sym_LPAREN, - ACTIONS(565), 1, - aux_sym_type_name_token1, - ACTIONS(571), 1, - sym_decimal, - ACTIONS(573), 1, - sym_duration_part, - STATE(149), 1, - sym_graph_path, - STATE(162), 1, - sym_base_value, - STATE(219), 1, - aux_sym_duration_repeat1, - STATE(385), 1, - sym_value, - STATE(1753), 1, - sym_object_key, - ACTIONS(385), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(569), 2, - sym_int, - sym_float, - ACTIONS(555), 3, - sym_keyword_rand, - sym_custom_function_name, - sym_function_name, - ACTIONS(567), 3, - sym_string, - sym_prefixed_string, - sym_variable_name, - STATE(424), 3, - sym_function_call, - sym_binary_expression, - sym_path, - ACTIONS(557), 4, - sym_keyword_true, - sym_keyword_false, - sym_keyword_none, - sym_keyword_null, - STATE(272), 8, - sym_number, - sym_identifier, - sym_array, - sym_object, - sym_record_id, - sym_sub_query, - sym_duration, - sym_point, - [16499] = 21, + [16335] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(553), 1, + STATE(523), 1, sym_value, - STATE(1769), 1, + STATE(1773), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -70915,59 +70845,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16581] = 21, + [16417] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(55), 1, + sym_duration_part, + ACTIONS(422), 1, + anon_sym_LBRACE, + ACTIONS(432), 1, + anon_sym_LT_DASH, + ACTIONS(934), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(936), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(938), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(940), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(946), 1, sym_decimal, - ACTIONS(55), 1, - sym_duration_part, - STATE(52), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(154), 1, sym_base_value, - STATE(570), 1, + STATE(159), 1, + sym_graph_path, + STATE(472), 1, sym_value, - STATE(1839), 1, + STATE(1726), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(428), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(944), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(930), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(942), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(423), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(932), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(296), 8, sym_number, sym_identifier, sym_array, @@ -70976,59 +70906,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16663] = 21, + [16499] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(3), 1, sym_base_value, - STATE(541), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(610), 1, sym_value, - STATE(1717), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -71037,59 +70967,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16745] = 21, + [16581] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_LBRACE, - ACTIONS(389), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(559), 1, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(561), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(563), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(565), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(571), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(573), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(149), 1, - sym_graph_path, - STATE(162), 1, + STATE(3), 1, sym_base_value, - STATE(219), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(464), 1, + STATE(417), 1, sym_value, - STATE(1736), 1, + STATE(1716), 1, sym_object_key, - ACTIONS(385), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(569), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(555), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(567), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(424), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(557), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(272), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -71098,59 +71028,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16827] = 21, + [16663] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(502), 1, + STATE(524), 1, sym_value, - STATE(1766), 1, + STATE(1775), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -71159,59 +71089,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16909] = 21, + [16745] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(3), 1, sym_base_value, - STATE(538), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(540), 1, sym_value, - STATE(1760), 1, + STATE(1865), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -71220,59 +71150,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [16991] = 21, + [16827] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(237), 1, + anon_sym_LT_DASH, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(878), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(47), 1, + ACTIONS(884), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(890), 1, sym_decimal, - ACTIONS(265), 1, - anon_sym_LT_DASH, - ACTIONS(870), 1, + ACTIONS(892), 1, sym_duration_part, - STATE(81), 1, + STATE(69), 1, sym_base_value, - STATE(89), 1, + STATE(70), 1, sym_graph_path, - STATE(97), 1, + STATE(92), 1, aux_sym_duration_repeat1, - STATE(497), 1, + STATE(429), 1, sym_value, - STATE(1740), 1, + STATE(1723), 1, sym_object_key, - ACTIONS(51), 2, - sym_int, - sym_float, - ACTIONS(261), 2, + ACTIONS(233), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(7), 3, + ACTIONS(888), 2, + sym_int, + sym_float, + ACTIONS(874), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(886), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(190), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(876), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(114), 8, sym_number, sym_identifier, sym_array, @@ -71281,7 +71211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17073] = 21, + [16909] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -71300,15 +71230,15 @@ static const uint16_t ts_small_parse_table[] = { sym_decimal, ACTIONS(55), 1, sym_duration_part, - STATE(52), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(158), 1, + STATE(144), 1, sym_graph_path, - STATE(159), 1, + STATE(145), 1, sym_base_value, - STATE(523), 1, + STATE(594), 1, sym_value, - STATE(1758), 1, + STATE(1851), 1, sym_object_key, ACTIONS(37), 2, anon_sym_DASH_GT, @@ -71324,7 +71254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, @@ -71333,7 +71263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -71342,59 +71272,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17155] = 21, + [16991] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(595), 1, + STATE(588), 1, sym_value, - STATE(1769), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -71403,59 +71333,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17237] = 21, + [17073] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_duration_part, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(420), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(934), 1, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(936), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(938), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(940), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(946), 1, + ACTIONS(488), 1, sym_decimal, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(164), 1, - sym_graph_path, - STATE(167), 1, + ACTIONS(490), 1, + sym_duration_part, + STATE(3), 1, sym_base_value, - STATE(402), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(583), 1, sym_value, - STATE(1721), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(416), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(944), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(930), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(942), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(434), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(932), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(267), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -71464,59 +71394,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17319] = 21, + [17155] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(514), 1, + STATE(581), 1, sym_value, - STATE(1749), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -71525,59 +71455,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17401] = 21, + [17237] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_duration_part, - ACTIONS(393), 1, + ACTIONS(377), 1, anon_sym_LBRACE, - ACTIONS(420), 1, + ACTIONS(452), 1, anon_sym_LT_DASH, - ACTIONS(934), 1, + ACTIONS(561), 1, sym_keyword_count, - ACTIONS(936), 1, + ACTIONS(563), 1, anon_sym_LBRACK, - ACTIONS(938), 1, + ACTIONS(565), 1, anon_sym_LPAREN, - ACTIONS(940), 1, + ACTIONS(567), 1, aux_sym_type_name_token1, - ACTIONS(946), 1, + ACTIONS(573), 1, sym_decimal, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(164), 1, - sym_graph_path, - STATE(167), 1, + ACTIONS(575), 1, + sym_duration_part, + STATE(171), 1, sym_base_value, - STATE(474), 1, + STATE(178), 1, + sym_graph_path, + STATE(258), 1, + aux_sym_duration_repeat1, + STATE(422), 1, sym_value, - STATE(1710), 1, + STATE(1753), 1, sym_object_key, - ACTIONS(416), 2, + ACTIONS(448), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(944), 2, + ACTIONS(571), 2, sym_int, sym_float, - ACTIONS(930), 3, + ACTIONS(557), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(942), 3, + ACTIONS(569), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(434), 3, + STATE(475), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(932), 4, + ACTIONS(559), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(267), 8, + STATE(348), 8, sym_number, sym_identifier, sym_array, @@ -71586,59 +71516,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17483] = 21, + [17319] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, ACTIONS(345), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(385), 1, + anon_sym_LT_DASH, + ACTIONS(516), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(522), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(528), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(530), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, + STATE(150), 1, sym_graph_path, - STATE(7), 1, + STATE(151), 1, + sym_base_value, + STATE(222), 1, aux_sym_duration_repeat1, - STATE(607), 1, + STATE(477), 1, sym_value, - STATE(1762), 1, + STATE(1755), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(381), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(526), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(512), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(524), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(442), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(514), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(315), 8, sym_number, sym_identifier, sym_array, @@ -71647,59 +71577,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17565] = 21, + [17401] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, + STATE(51), 1, aux_sym_duration_repeat1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, STATE(522), 1, sym_value, - STATE(1750), 1, + STATE(1783), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -71708,59 +71638,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17647] = 21, + [17483] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, + ACTIONS(345), 1, anon_sym_LBRACE, - ACTIONS(452), 1, + ACTIONS(385), 1, anon_sym_LT_DASH, - ACTIONS(531), 1, + ACTIONS(516), 1, sym_keyword_count, - ACTIONS(533), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(535), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(537), 1, + ACTIONS(522), 1, aux_sym_type_name_token1, - ACTIONS(543), 1, + ACTIONS(528), 1, sym_decimal, - ACTIONS(545), 1, + ACTIONS(530), 1, sym_duration_part, - STATE(194), 1, - sym_base_value, - STATE(195), 1, + STATE(150), 1, sym_graph_path, - STATE(257), 1, + STATE(151), 1, + sym_base_value, + STATE(222), 1, aux_sym_duration_repeat1, - STATE(411), 1, + STATE(412), 1, sym_value, - STATE(1763), 1, + STATE(1748), 1, sym_object_key, - ACTIONS(448), 2, + ACTIONS(381), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(541), 2, + ACTIONS(526), 2, sym_int, sym_float, - ACTIONS(527), 3, + ACTIONS(512), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(539), 3, + ACTIONS(524), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(479), 3, + STATE(442), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(529), 4, + ACTIONS(514), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(352), 8, + STATE(315), 8, sym_number, sym_identifier, sym_array, @@ -71769,59 +71699,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17729] = 21, + [17565] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(3), 1, sym_base_value, - STATE(527), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(427), 1, sym_value, - STATE(1760), 1, + STATE(1716), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -71830,7 +71760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17811] = 21, + [17647] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -71849,15 +71779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_DASH, ACTIONS(870), 1, sym_duration_part, - STATE(81), 1, - sym_base_value, - STATE(89), 1, + STATE(79), 1, sym_graph_path, + STATE(90), 1, + sym_base_value, STATE(97), 1, aux_sym_duration_repeat1, - STATE(493), 1, + STATE(492), 1, sym_value, - STATE(1740), 1, + STATE(1761), 1, sym_object_key, ACTIONS(51), 2, sym_int, @@ -71873,7 +71803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, @@ -71882,7 +71812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -71891,59 +71821,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17893] = 21, + [17729] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(524), 1, + STATE(533), 1, sym_value, - STATE(1769), 1, + STATE(1731), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -71952,59 +71882,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [17975] = 21, + [17811] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(237), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(878), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(884), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(890), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(892), 1, sym_duration_part, - STATE(4), 1, + STATE(69), 1, sym_base_value, - STATE(5), 1, + STATE(70), 1, sym_graph_path, - STATE(7), 1, + STATE(92), 1, aux_sym_duration_repeat1, - STATE(562), 1, + STATE(470), 1, sym_value, - STATE(1743), 1, + STATE(1750), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(233), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(888), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(874), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(886), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(190), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(876), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(114), 8, sym_number, sym_identifier, sym_array, @@ -72013,59 +71943,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [18057] = 21, + [17893] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, + ACTIONS(55), 1, + sym_duration_part, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(452), 1, + ACTIONS(432), 1, anon_sym_LT_DASH, - ACTIONS(531), 1, + ACTIONS(934), 1, sym_keyword_count, - ACTIONS(533), 1, + ACTIONS(936), 1, anon_sym_LBRACK, - ACTIONS(535), 1, + ACTIONS(938), 1, anon_sym_LPAREN, - ACTIONS(537), 1, + ACTIONS(940), 1, aux_sym_type_name_token1, - ACTIONS(543), 1, + ACTIONS(946), 1, sym_decimal, - ACTIONS(545), 1, - sym_duration_part, - STATE(194), 1, + STATE(51), 1, + aux_sym_duration_repeat1, + STATE(154), 1, sym_base_value, - STATE(195), 1, + STATE(159), 1, sym_graph_path, - STATE(257), 1, - aux_sym_duration_repeat1, - STATE(488), 1, + STATE(468), 1, sym_value, - STATE(1745), 1, + STATE(1740), 1, sym_object_key, - ACTIONS(448), 2, + ACTIONS(428), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(541), 2, + ACTIONS(944), 2, sym_int, sym_float, - ACTIONS(527), 3, + ACTIONS(930), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(539), 3, + ACTIONS(942), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(479), 3, + STATE(423), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(529), 4, + ACTIONS(932), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(352), 8, + STATE(296), 8, sym_number, sym_identifier, sym_array, @@ -72074,59 +72004,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [18139] = 21, + [17975] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(325), 1, + STATE(288), 1, sym_value, - STATE(1714), 1, + STATE(1734), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -72135,59 +72065,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [18221] = 21, + [18057] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(554), 1, + STATE(435), 1, sym_value, - STATE(1769), 1, + STATE(1733), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -72196,59 +72126,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [18303] = 21, + [18139] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(590), 1, + STATE(547), 1, sym_value, - STATE(1744), 1, + STATE(1780), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -72257,59 +72187,59 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [18385] = 21, + [18221] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(518), 1, + STATE(593), 1, sym_value, - STATE(1749), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -72318,7 +72248,68 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [18467] = 21, + [18303] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + sym_duration_part, + ACTIONS(422), 1, + anon_sym_LBRACE, + ACTIONS(432), 1, + anon_sym_LT_DASH, + ACTIONS(934), 1, + sym_keyword_count, + ACTIONS(936), 1, + anon_sym_LBRACK, + ACTIONS(938), 1, + anon_sym_LPAREN, + ACTIONS(940), 1, + aux_sym_type_name_token1, + ACTIONS(946), 1, + sym_decimal, + STATE(51), 1, + aux_sym_duration_repeat1, + STATE(154), 1, + sym_base_value, + STATE(159), 1, + sym_graph_path, + STATE(460), 1, + sym_value, + STATE(1726), 1, + sym_object_key, + ACTIONS(428), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(944), 2, + sym_int, + sym_float, + ACTIONS(930), 3, + sym_keyword_rand, + sym_custom_function_name, + sym_function_name, + ACTIONS(942), 3, + sym_string, + sym_prefixed_string, + sym_variable_name, + STATE(423), 3, + sym_function_call, + sym_binary_expression, + sym_path, + ACTIONS(932), 4, + sym_keyword_true, + sym_keyword_false, + sym_keyword_none, + sym_keyword_null, + STATE(296), 8, + sym_number, + sym_identifier, + sym_array, + sym_object, + sym_record_id, + sym_sub_query, + sym_duration, + sym_point, + [18385] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -72337,15 +72328,15 @@ static const uint16_t ts_small_parse_table[] = { sym_decimal, ACTIONS(55), 1, sym_duration_part, - STATE(52), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(158), 1, + STATE(144), 1, sym_graph_path, - STATE(159), 1, + STATE(145), 1, sym_base_value, - STATE(442), 1, + STATE(454), 1, sym_value, - STATE(1780), 1, + STATE(1822), 1, sym_object_key, ACTIONS(37), 2, anon_sym_DASH_GT, @@ -72361,7 +72352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, @@ -72370,7 +72361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -72379,59 +72370,120 @@ static const uint16_t ts_small_parse_table[] = { sym_sub_query, sym_duration, sym_point, - [18549] = 21, + [18467] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, + ACTIONS(478), 1, + anon_sym_LPAREN, + ACTIONS(482), 1, + aux_sym_type_name_token1, + ACTIONS(488), 1, + sym_decimal, ACTIONS(490), 1, + sym_duration_part, + STATE(3), 1, + sym_base_value, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(383), 1, + sym_value, + STATE(1734), 1, + sym_object_key, + ACTIONS(65), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(486), 2, + sym_int, + sym_float, + ACTIONS(456), 3, + sym_keyword_rand, + sym_custom_function_name, + sym_function_name, + ACTIONS(484), 3, + sym_string, + sym_prefixed_string, + sym_variable_name, + STATE(73), 3, + sym_function_call, + sym_binary_expression, + sym_path, + ACTIONS(458), 4, + sym_keyword_true, + sym_keyword_false, + sym_keyword_none, + sym_keyword_null, + STATE(19), 8, + sym_number, + sym_identifier, + sym_array, + sym_object, + sym_record_id, + sym_sub_query, + sym_duration, + sym_point, + [18549] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, + sym_keyword_count, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(596), 1, + STATE(546), 1, sym_value, - STATE(1744), 1, + STATE(1738), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -72443,56 +72495,56 @@ static const uint16_t ts_small_parse_table[] = { [18631] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_duration_part, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(420), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(934), 1, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(936), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(938), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(940), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(946), 1, + ACTIONS(488), 1, sym_decimal, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(164), 1, - sym_graph_path, - STATE(167), 1, + ACTIONS(490), 1, + sym_duration_part, + STATE(3), 1, sym_base_value, - STATE(466), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(555), 1, sym_value, - STATE(1710), 1, + STATE(1758), 1, sym_object_key, - ACTIONS(416), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(944), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(930), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(942), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(434), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(932), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(267), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -72504,56 +72556,56 @@ static const uint16_t ts_small_parse_table[] = { [18713] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(528), 1, + STATE(589), 1, sym_value, - STATE(1743), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -72565,56 +72617,56 @@ static const uint16_t ts_small_parse_table[] = { [18795] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(601), 1, + STATE(602), 1, sym_value, - STATE(1762), 1, + STATE(1786), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -72626,56 +72678,56 @@ static const uint16_t ts_small_parse_table[] = { [18877] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_LBRACE, - ACTIONS(389), 1, + ACTIONS(237), 1, anon_sym_LT_DASH, - ACTIONS(559), 1, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(878), 1, sym_keyword_count, - ACTIONS(561), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(563), 1, + ACTIONS(882), 1, anon_sym_LPAREN, - ACTIONS(565), 1, + ACTIONS(884), 1, aux_sym_type_name_token1, - ACTIONS(571), 1, + ACTIONS(890), 1, sym_decimal, - ACTIONS(573), 1, + ACTIONS(892), 1, sym_duration_part, - STATE(149), 1, - sym_graph_path, - STATE(162), 1, + STATE(69), 1, sym_base_value, - STATE(219), 1, + STATE(70), 1, + sym_graph_path, + STATE(92), 1, aux_sym_duration_repeat1, - STATE(415), 1, + STATE(443), 1, sym_value, - STATE(1727), 1, + STATE(1723), 1, sym_object_key, - ACTIONS(385), 2, + ACTIONS(233), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(569), 2, + ACTIONS(888), 2, sym_int, sym_float, - ACTIONS(555), 3, + ACTIONS(874), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(567), 3, + ACTIONS(886), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(424), 3, + STATE(190), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(557), 4, + ACTIONS(876), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(272), 8, + STATE(114), 8, sym_number, sym_identifier, sym_array, @@ -72687,56 +72739,56 @@ static const uint16_t ts_small_parse_table[] = { [18959] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(610), 1, + STATE(553), 1, sym_value, - STATE(1769), 1, + STATE(1762), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -72756,30 +72808,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(43), 1, anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, ACTIONS(47), 1, aux_sym_type_name_token1, ACTIONS(53), 1, sym_decimal, - ACTIONS(265), 1, - anon_sym_LT_DASH, - ACTIONS(870), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(81), 1, - sym_base_value, - STATE(89), 1, - sym_graph_path, - STATE(97), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(412), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(544), 1, sym_value, - STATE(1746), 1, + STATE(1739), 1, sym_object_key, + ACTIONS(37), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(261), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, @@ -72788,7 +72840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, @@ -72797,7 +72849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -72809,56 +72861,56 @@ static const uint16_t ts_small_parse_table[] = { [19123] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(377), 1, + anon_sym_LBRACE, + ACTIONS(452), 1, + anon_sym_LT_DASH, + ACTIONS(561), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(563), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(565), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(567), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(573), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(575), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(171), 1, sym_base_value, - STATE(549), 1, + STATE(178), 1, + sym_graph_path, + STATE(258), 1, + aux_sym_duration_repeat1, + STATE(411), 1, sym_value, - STATE(1839), 1, + STATE(1753), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(448), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(571), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(557), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(569), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(475), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(559), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(348), 8, sym_number, sym_identifier, sym_array, @@ -72870,56 +72922,56 @@ static const uint16_t ts_small_parse_table[] = { [19205] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(594), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(527), 1, sym_value, - STATE(1744), 1, + STATE(1785), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -72931,56 +72983,56 @@ static const uint16_t ts_small_parse_table[] = { [19287] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(55), 1, + sym_duration_part, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(432), 1, + anon_sym_LT_DASH, + ACTIONS(934), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(936), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(938), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(940), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(946), 1, sym_decimal, - ACTIONS(502), 1, - sym_duration_part, - STATE(4), 1, + STATE(51), 1, + aux_sym_duration_repeat1, + STATE(154), 1, sym_base_value, - STATE(5), 1, + STATE(159), 1, sym_graph_path, - STATE(7), 1, - aux_sym_duration_repeat1, - STATE(559), 1, + STATE(393), 1, sym_value, - STATE(1769), 1, + STATE(1741), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(428), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(944), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(930), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(942), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(423), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(932), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(296), 8, sym_number, sym_identifier, sym_array, @@ -72992,56 +73044,56 @@ static const uint16_t ts_small_parse_table[] = { [19369] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, - sym_graph_path, - STATE(7), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(540), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(509), 1, sym_value, - STATE(1769), 1, + STATE(1831), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(37), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -73053,56 +73105,56 @@ static const uint16_t ts_small_parse_table[] = { [19451] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(555), 1, + STATE(592), 1, sym_value, - STATE(1751), 1, + STATE(1765), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -73114,56 +73166,56 @@ static const uint16_t ts_small_parse_table[] = { [19533] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(3), 1, sym_base_value, - STATE(546), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(590), 1, sym_value, - STATE(1717), 1, + STATE(1765), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -73175,56 +73227,56 @@ static const uint16_t ts_small_parse_table[] = { [19615] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(345), 1, + anon_sym_LBRACE, + ACTIONS(385), 1, + anon_sym_LT_DASH, + ACTIONS(516), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(522), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(528), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(530), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, + STATE(150), 1, sym_graph_path, - STATE(159), 1, + STATE(151), 1, sym_base_value, - STATE(510), 1, + STATE(222), 1, + aux_sym_duration_repeat1, + STATE(400), 1, sym_value, - STATE(1788), 1, + STATE(1748), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(381), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(526), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(512), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(524), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(442), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(514), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(315), 8, sym_number, sym_identifier, sym_array, @@ -73236,56 +73288,56 @@ static const uint16_t ts_small_parse_table[] = { [19697] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(574), 1, + STATE(541), 1, sym_value, - STATE(1751), 1, + STATE(1790), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -73297,56 +73349,56 @@ static const uint16_t ts_small_parse_table[] = { [19779] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(419), 1, + STATE(578), 1, sym_value, - STATE(1701), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -73358,56 +73410,56 @@ static const uint16_t ts_small_parse_table[] = { [19861] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(3), 1, sym_base_value, - STATE(598), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(278), 1, sym_value, - STATE(1839), 1, + STATE(1734), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -73427,30 +73479,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(43), 1, anon_sym_LBRACE, + ACTIONS(45), 1, + anon_sym_LT_DASH, ACTIONS(47), 1, aux_sym_type_name_token1, ACTIONS(53), 1, sym_decimal, - ACTIONS(265), 1, - anon_sym_LT_DASH, - ACTIONS(870), 1, + ACTIONS(55), 1, sym_duration_part, - STATE(81), 1, - sym_base_value, - STATE(89), 1, - sym_graph_path, - STATE(97), 1, + STATE(51), 1, aux_sym_duration_repeat1, - STATE(480), 1, + STATE(144), 1, + sym_graph_path, + STATE(145), 1, + sym_base_value, + STATE(566), 1, sym_value, - STATE(1715), 1, + STATE(1851), 1, sym_object_key, + ACTIONS(37), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(261), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, @@ -73459,7 +73511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, @@ -73468,7 +73520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -73480,56 +73532,56 @@ static const uint16_t ts_small_parse_table[] = { [20025] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(517), 1, + STATE(515), 1, sym_value, - STATE(1750), 1, + STATE(1773), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -73541,56 +73593,56 @@ static const uint16_t ts_small_parse_table[] = { [20107] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, - anon_sym_LBRACE, - ACTIONS(452), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(531), 1, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(533), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(535), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(537), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(543), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(545), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(194), 1, + STATE(3), 1, sym_base_value, - STATE(195), 1, + STATE(6), 1, sym_graph_path, - STATE(257), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(426), 1, + STATE(549), 1, sym_value, - STATE(1730), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(448), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(541), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(527), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(539), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(479), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(529), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(352), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -73602,56 +73654,56 @@ static const uint16_t ts_small_parse_table[] = { [20189] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_LBRACE, - ACTIONS(389), 1, - anon_sym_LT_DASH, - ACTIONS(559), 1, + ACTIONS(35), 1, sym_keyword_count, - ACTIONS(561), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(563), 1, + ACTIONS(41), 1, anon_sym_LPAREN, - ACTIONS(565), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(571), 1, + ACTIONS(53), 1, sym_decimal, - ACTIONS(573), 1, + ACTIONS(265), 1, + anon_sym_LT_DASH, + ACTIONS(870), 1, sym_duration_part, - STATE(149), 1, + STATE(79), 1, sym_graph_path, - STATE(162), 1, + STATE(90), 1, sym_base_value, - STATE(219), 1, + STATE(97), 1, aux_sym_duration_repeat1, - STATE(387), 1, + STATE(398), 1, sym_value, - STATE(1753), 1, + STATE(1772), 1, sym_object_key, - ACTIONS(385), 2, - anon_sym_DASH_GT, - anon_sym_LT_DASH_GT, - ACTIONS(569), 2, + ACTIONS(51), 2, sym_int, sym_float, - ACTIONS(555), 3, + ACTIONS(261), 2, + anon_sym_DASH_GT, + anon_sym_LT_DASH_GT, + ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(567), 3, + ACTIONS(49), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(424), 3, + STATE(99), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(557), 4, + ACTIONS(11), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(272), 8, + STATE(57), 8, sym_number, sym_identifier, sym_array, @@ -73663,56 +73715,56 @@ static const uint16_t ts_small_parse_table[] = { [20271] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(69), 1, anon_sym_LT_DASH, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(4), 1, + STATE(3), 1, sym_base_value, - STATE(5), 1, + STATE(6), 1, sym_graph_path, - STATE(7), 1, + STATE(8), 1, aux_sym_duration_repeat1, - STATE(588), 1, + STATE(392), 1, sym_value, - STATE(1769), 1, + STATE(1788), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -73724,56 +73776,56 @@ static const uint16_t ts_small_parse_table[] = { [20353] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(377), 1, + anon_sym_LBRACE, + ACTIONS(452), 1, + anon_sym_LT_DASH, + ACTIONS(561), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(563), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(565), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(567), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(573), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(575), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(171), 1, sym_base_value, - STATE(432), 1, + STATE(178), 1, + sym_graph_path, + STATE(258), 1, + aux_sym_duration_repeat1, + STATE(488), 1, sym_value, - STATE(1780), 1, + STATE(1767), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(448), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(571), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(557), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(569), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(475), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(559), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(348), 8, sym_number, sym_identifier, sym_array, @@ -73785,56 +73837,56 @@ static const uint16_t ts_small_parse_table[] = { [20435] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_LT_DASH, ACTIONS(345), 1, anon_sym_LBRACE, - ACTIONS(486), 1, + ACTIONS(385), 1, + anon_sym_LT_DASH, + ACTIONS(516), 1, sym_keyword_count, - ACTIONS(488), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(490), 1, + ACTIONS(520), 1, anon_sym_LPAREN, - ACTIONS(494), 1, + ACTIONS(522), 1, aux_sym_type_name_token1, - ACTIONS(500), 1, + ACTIONS(528), 1, sym_decimal, - ACTIONS(502), 1, + ACTIONS(530), 1, sym_duration_part, - STATE(4), 1, - sym_base_value, - STATE(5), 1, + STATE(150), 1, sym_graph_path, - STATE(7), 1, + STATE(151), 1, + sym_base_value, + STATE(222), 1, aux_sym_duration_repeat1, - STATE(505), 1, + STATE(378), 1, sym_value, - STATE(1766), 1, + STATE(1748), 1, sym_object_key, - ACTIONS(81), 2, + ACTIONS(381), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(498), 2, + ACTIONS(526), 2, sym_int, sym_float, - ACTIONS(468), 3, + ACTIONS(512), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(496), 3, + ACTIONS(524), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(78), 3, + STATE(442), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(470), 4, + ACTIONS(514), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(30), 8, + STATE(315), 8, sym_number, sym_identifier, sym_array, @@ -73846,56 +73898,56 @@ static const uint16_t ts_small_parse_table[] = { [20517] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(69), 1, + anon_sym_LT_DASH, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(474), 1, sym_keyword_count, - ACTIONS(39), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(41), 1, + ACTIONS(478), 1, anon_sym_LPAREN, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(45), 1, - anon_sym_LT_DASH, - ACTIONS(47), 1, + ACTIONS(482), 1, aux_sym_type_name_token1, - ACTIONS(53), 1, + ACTIONS(488), 1, sym_decimal, - ACTIONS(55), 1, + ACTIONS(490), 1, sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(158), 1, - sym_graph_path, - STATE(159), 1, + STATE(3), 1, sym_base_value, - STATE(589), 1, + STATE(6), 1, + sym_graph_path, + STATE(8), 1, + aux_sym_duration_repeat1, + STATE(539), 1, sym_value, - STATE(1839), 1, + STATE(1791), 1, sym_object_key, - ACTIONS(37), 2, + ACTIONS(65), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(51), 2, + ACTIONS(486), 2, sym_int, sym_float, - ACTIONS(7), 3, + ACTIONS(456), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(49), 3, + ACTIONS(484), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(93), 3, + STATE(73), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(11), 4, + ACTIONS(458), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(61), 8, + STATE(19), 8, sym_number, sym_identifier, sym_array, @@ -73907,56 +73959,56 @@ static const uint16_t ts_small_parse_table[] = { [20599] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_duration_part, - ACTIONS(393), 1, + ACTIONS(377), 1, anon_sym_LBRACE, - ACTIONS(420), 1, + ACTIONS(452), 1, anon_sym_LT_DASH, - ACTIONS(934), 1, + ACTIONS(561), 1, sym_keyword_count, - ACTIONS(936), 1, + ACTIONS(563), 1, anon_sym_LBRACK, - ACTIONS(938), 1, + ACTIONS(565), 1, anon_sym_LPAREN, - ACTIONS(940), 1, + ACTIONS(567), 1, aux_sym_type_name_token1, - ACTIONS(946), 1, + ACTIONS(573), 1, sym_decimal, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(164), 1, - sym_graph_path, - STATE(167), 1, + ACTIONS(575), 1, + sym_duration_part, + STATE(171), 1, sym_base_value, - STATE(407), 1, + STATE(178), 1, + sym_graph_path, + STATE(258), 1, + aux_sym_duration_repeat1, + STATE(453), 1, sym_value, - STATE(1721), 1, + STATE(1753), 1, sym_object_key, - ACTIONS(416), 2, + ACTIONS(448), 2, anon_sym_DASH_GT, anon_sym_LT_DASH_GT, - ACTIONS(944), 2, + ACTIONS(571), 2, sym_int, sym_float, - ACTIONS(930), 3, + ACTIONS(557), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - ACTIONS(942), 3, + ACTIONS(569), 3, sym_string, sym_prefixed_string, sym_variable_name, - STATE(434), 3, + STATE(475), 3, sym_function_call, sym_binary_expression, sym_path, - ACTIONS(932), 4, + ACTIONS(559), 4, sym_keyword_true, sym_keyword_false, sym_keyword_none, sym_keyword_null, - STATE(267), 8, + STATE(348), 8, sym_number, sym_identifier, sym_array, @@ -74115,27 +74167,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(786), 1, sym_with_clause, - STATE(792), 1, + STATE(800), 1, sym_where_clause, - STATE(830), 1, + STATE(817), 1, sym_split_clause, - STATE(856), 1, + STATE(858), 1, aux_sym_update_statement_repeat1, - STATE(861), 1, + STATE(866), 1, sym_group_clause, - STATE(878), 1, + STATE(893), 1, sym_order_clause, - STATE(953), 1, + STATE(974), 1, sym_limit_clause, - STATE(1009), 1, + STATE(1001), 1, sym_fetch_clause, - STATE(1145), 1, + STATE(1142), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1199), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1360), 1, sym_explain_clause, - ACTIONS(291), 3, + ACTIONS(1006), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, @@ -74166,27 +74218,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(785), 1, sym_with_clause, - STATE(800), 1, + STATE(795), 1, sym_where_clause, - STATE(823), 1, + STATE(826), 1, sym_split_clause, - STATE(856), 1, - aux_sym_update_statement_repeat1, STATE(858), 1, + aux_sym_update_statement_repeat1, + STATE(860), 1, sym_group_clause, - STATE(881), 1, + STATE(891), 1, sym_order_clause, - STATE(985), 1, + STATE(981), 1, sym_limit_clause, - STATE(1011), 1, + STATE(1007), 1, sym_fetch_clause, - STATE(1141), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1223), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1388), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(1006), 3, + ACTIONS(331), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, @@ -74215,32 +74267,82 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_where, ACTIONS(339), 1, anon_sym_COMMA, - STATE(789), 1, + STATE(790), 1, sym_with_clause, - STATE(805), 1, + STATE(804), 1, sym_where_clause, - STATE(854), 1, + STATE(833), 1, sym_split_clause, - STATE(880), 1, - aux_sym_update_statement_repeat1, - STATE(881), 1, + STATE(872), 1, + sym_group_clause, + STATE(891), 1, sym_order_clause, STATE(892), 1, + aux_sym_update_statement_repeat1, + STATE(981), 1, + sym_limit_clause, + STATE(1007), 1, + sym_fetch_clause, + STATE(1109), 1, + sym_timeout_clause, + STATE(1203), 1, + sym_parallel_clause, + STATE(1302), 1, + sym_explain_clause, + ACTIONS(331), 2, + ts_builtin_sym_end, + sym_semi_colon, + [21067] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(299), 1, + sym_keyword_fetch, + ACTIONS(301), 1, + sym_keyword_limit, + ACTIONS(309), 1, + sym_keyword_split, + ACTIONS(311), 1, + sym_keyword_group, + ACTIONS(333), 1, + sym_keyword_order, + ACTIONS(335), 1, + sym_keyword_with, + ACTIONS(337), 1, + sym_keyword_where, + ACTIONS(339), 1, + anon_sym_COMMA, + STATE(788), 1, + sym_with_clause, + STATE(814), 1, + sym_where_clause, + STATE(841), 1, + sym_split_clause, + STATE(892), 1, + aux_sym_update_statement_repeat1, + STATE(893), 1, + sym_order_clause, + STATE(896), 1, sym_group_clause, - STATE(985), 1, + STATE(974), 1, sym_limit_clause, - STATE(1011), 1, + STATE(1001), 1, sym_fetch_clause, - STATE(1141), 1, + STATE(1142), 1, sym_timeout_clause, - STATE(1223), 1, + STATE(1199), 1, sym_parallel_clause, - STATE(1388), 1, + STATE(1360), 1, sym_explain_clause, ACTIONS(1006), 2, ts_builtin_sym_end, sym_semi_colon, - [21067] = 2, + [21141] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1008), 24, @@ -74268,57 +74370,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [21097] = 24, + [21171] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - ACTIONS(301), 1, - sym_keyword_limit, - ACTIONS(309), 1, - sym_keyword_split, - ACTIONS(311), 1, - sym_keyword_group, - ACTIONS(333), 1, - sym_keyword_order, - ACTIONS(335), 1, - sym_keyword_with, - ACTIONS(337), 1, + ACTIONS(359), 1, + sym_keyword_return, + ACTIONS(361), 1, sym_keyword_where, - ACTIONS(339), 1, + ACTIONS(363), 1, + sym_keyword_content, + ACTIONS(365), 1, + sym_keyword_merge, + ACTIONS(367), 1, + sym_keyword_patch, + ACTIONS(369), 1, + sym_keyword_set, + ACTIONS(371), 1, + sym_keyword_unset, + ACTIONS(373), 1, anon_sym_COMMA, - STATE(787), 1, - sym_with_clause, - STATE(806), 1, - sym_where_clause, - STATE(836), 1, - sym_split_clause, - STATE(878), 1, - sym_order_clause, - STATE(880), 1, + STATE(894), 1, aux_sym_update_statement_repeat1, - STATE(884), 1, - sym_group_clause, - STATE(953), 1, - sym_limit_clause, - STATE(1009), 1, - sym_fetch_clause, - STATE(1145), 1, + STATE(1047), 1, + sym_where_clause, + STATE(1112), 1, + sym_return_clause, + STATE(1207), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1321), 1, sym_parallel_clause, - STATE(1295), 1, - sym_explain_clause, - ACTIONS(291), 2, - ts_builtin_sym_end, + ACTIONS(375), 3, sym_semi_colon, - [21171] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(989), 5, + sym_content_clause, + sym_set_clause, + sym_unset_clause, + sym_merge_clause, + sym_patch_clause, + [21232] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1012), 1, @@ -74347,49 +74442,6 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_custom_function_name, sym_function_name, - [21204] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, - ACTIONS(357), 1, - sym_keyword_where, - ACTIONS(359), 1, - sym_keyword_content, - ACTIONS(361), 1, - sym_keyword_merge, - ACTIONS(363), 1, - sym_keyword_patch, - ACTIONS(365), 1, - sym_keyword_set, - ACTIONS(367), 1, - sym_keyword_unset, - ACTIONS(369), 1, - anon_sym_COMMA, - STATE(889), 1, - aux_sym_update_statement_repeat1, - STATE(1038), 1, - sym_where_clause, - STATE(1147), 1, - sym_return_clause, - STATE(1210), 1, - sym_timeout_clause, - STATE(1362), 1, - sym_parallel_clause, - ACTIONS(371), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(989), 5, - sym_content_clause, - sym_set_clause, - sym_unset_clause, - sym_merge_clause, - sym_patch_clause, [21265] = 18, ACTIONS(3), 1, sym_comment, @@ -74397,85 +74449,43 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(359), 1, sym_keyword_return, - ACTIONS(357), 1, + ACTIONS(361), 1, sym_keyword_where, - ACTIONS(359), 1, + ACTIONS(363), 1, sym_keyword_content, - ACTIONS(361), 1, + ACTIONS(365), 1, sym_keyword_merge, - ACTIONS(363), 1, + ACTIONS(367), 1, sym_keyword_patch, - ACTIONS(365), 1, + ACTIONS(369), 1, sym_keyword_set, - ACTIONS(367), 1, + ACTIONS(371), 1, sym_keyword_unset, - ACTIONS(369), 1, + ACTIONS(373), 1, anon_sym_COMMA, - STATE(889), 1, + STATE(894), 1, aux_sym_update_statement_repeat1, - STATE(1031), 1, + STATE(1037), 1, sym_where_clause, - STATE(1139), 1, + STATE(1120), 1, sym_return_clause, - STATE(1201), 1, + STATE(1246), 1, sym_timeout_clause, - STATE(1314), 1, + STATE(1290), 1, sym_parallel_clause, ACTIONS(1016), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(992), 5, + STATE(993), 5, sym_content_clause, sym_set_clause, sym_unset_clause, sym_merge_clause, sym_patch_clause, - [21326] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(359), 1, - sym_keyword_content, - ACTIONS(361), 1, - sym_keyword_merge, - ACTIONS(363), 1, - sym_keyword_patch, - ACTIONS(406), 1, - sym_keyword_return, - ACTIONS(408), 1, - sym_keyword_where, - ACTIONS(410), 1, - sym_keyword_set, - ACTIONS(412), 1, - sym_keyword_unset, - ACTIONS(414), 1, - anon_sym_COMMA, - STATE(912), 1, - aux_sym_update_statement_repeat1, - STATE(1147), 1, - sym_return_clause, - STATE(1162), 1, - sym_where_clause, - STATE(1210), 1, - sym_timeout_clause, - STATE(1362), 1, - sym_parallel_clause, - ACTIONS(371), 2, - ts_builtin_sym_end, - sym_semi_colon, - STATE(1001), 5, - sym_content_clause, - sym_set_clause, - sym_unset_clause, - sym_merge_clause, - sym_patch_clause, - [21386] = 3, + [21326] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1020), 10, @@ -74502,37 +74512,52 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_custom_function_name, sym_function_name, - [21416] = 3, + [21356] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1024), 10, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT_DASH_GT, - sym_string, - sym_prefixed_string, - sym_decimal, - sym_variable_name, - sym_duration_part, - ACTIONS(1022), 12, - sym_keyword_rand, - sym_keyword_true, - sym_keyword_false, - sym_keyword_none, - sym_keyword_null, - sym_keyword_count, - anon_sym_LT_DASH, - aux_sym_type_name_token1, - sym_int, - sym_float, - sym_custom_function_name, - sym_function_name, - [21446] = 3, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(363), 1, + sym_keyword_content, + ACTIONS(365), 1, + sym_keyword_merge, + ACTIONS(367), 1, + sym_keyword_patch, + ACTIONS(403), 1, + sym_keyword_return, + ACTIONS(405), 1, + sym_keyword_where, + ACTIONS(407), 1, + sym_keyword_set, + ACTIONS(409), 1, + sym_keyword_unset, + ACTIONS(411), 1, + anon_sym_COMMA, + STATE(945), 1, + aux_sym_update_statement_repeat1, + STATE(1119), 1, + sym_where_clause, + STATE(1120), 1, + sym_return_clause, + STATE(1246), 1, + sym_timeout_clause, + STATE(1290), 1, + sym_parallel_clause, + ACTIONS(1016), 2, + ts_builtin_sym_end, + sym_semi_colon, + STATE(999), 5, + sym_content_clause, + sym_set_clause, + sym_unset_clause, + sym_merge_clause, + sym_patch_clause, + [21416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1028), 10, + ACTIONS(1024), 10, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -74543,7 +74568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decimal, sym_variable_name, sym_duration_part, - ACTIONS(1026), 12, + ACTIONS(1022), 12, sym_keyword_rand, sym_keyword_true, sym_keyword_false, @@ -74556,10 +74581,10 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_custom_function_name, sym_function_name, - [21476] = 3, + [21446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1032), 10, + ACTIONS(1028), 10, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -74570,7 +74595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decimal, sym_variable_name, sym_duration_part, - ACTIONS(1030), 12, + ACTIONS(1026), 12, sym_keyword_rand, sym_keyword_true, sym_keyword_false, @@ -74583,10 +74608,10 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_custom_function_name, sym_function_name, - [21506] = 3, + [21476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1036), 10, + ACTIONS(1014), 10, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -74597,7 +74622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decimal, sym_variable_name, sym_duration_part, - ACTIONS(1034), 12, + ACTIONS(1010), 12, sym_keyword_rand, sym_keyword_true, sym_keyword_false, @@ -74610,10 +74635,10 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_custom_function_name, sym_function_name, - [21536] = 3, + [21506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1040), 10, + ACTIONS(1032), 10, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -74624,7 +74649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decimal, sym_variable_name, sym_duration_part, - ACTIONS(1038), 12, + ACTIONS(1030), 12, sym_keyword_rand, sym_keyword_true, sym_keyword_false, @@ -74637,52 +74662,79 @@ static const uint16_t ts_small_parse_table[] = { sym_float, sym_custom_function_name, sym_function_name, - [21566] = 18, + [21536] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(359), 1, + ACTIONS(363), 1, sym_keyword_content, - ACTIONS(361), 1, + ACTIONS(365), 1, sym_keyword_merge, - ACTIONS(363), 1, + ACTIONS(367), 1, sym_keyword_patch, - ACTIONS(406), 1, + ACTIONS(403), 1, sym_keyword_return, - ACTIONS(408), 1, + ACTIONS(405), 1, sym_keyword_where, - ACTIONS(410), 1, + ACTIONS(407), 1, sym_keyword_set, - ACTIONS(412), 1, + ACTIONS(409), 1, sym_keyword_unset, - ACTIONS(414), 1, + ACTIONS(411), 1, anon_sym_COMMA, - STATE(912), 1, + STATE(945), 1, aux_sym_update_statement_repeat1, - STATE(1139), 1, - sym_return_clause, - STATE(1140), 1, + STATE(1107), 1, sym_where_clause, - STATE(1201), 1, + STATE(1112), 1, + sym_return_clause, + STATE(1207), 1, sym_timeout_clause, - STATE(1314), 1, + STATE(1321), 1, sym_parallel_clause, - ACTIONS(1016), 2, + ACTIONS(375), 2, ts_builtin_sym_end, sym_semi_colon, - STATE(998), 5, + STATE(1019), 5, sym_content_clause, sym_set_clause, sym_unset_clause, sym_merge_clause, sym_patch_clause, + [21596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1036), 10, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT_DASH_GT, + sym_string, + sym_prefixed_string, + sym_decimal, + sym_variable_name, + sym_duration_part, + ACTIONS(1034), 12, + sym_keyword_rand, + sym_keyword_true, + sym_keyword_false, + sym_keyword_none, + sym_keyword_null, + sym_keyword_count, + anon_sym_LT_DASH, + aux_sym_type_name_token1, + sym_int, + sym_float, + sym_custom_function_name, + sym_function_name, [21626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1014), 10, + ACTIONS(1040), 10, anon_sym_DASH_GT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -74693,7 +74745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_decimal, sym_variable_name, sym_duration_part, - ACTIONS(1010), 12, + ACTIONS(1038), 12, sym_keyword_rand, sym_keyword_true, sym_keyword_false, @@ -74727,25 +74779,25 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_split, ACTIONS(311), 1, sym_keyword_group, - STATE(792), 1, + STATE(795), 1, sym_where_clause, - STATE(830), 1, + STATE(826), 1, sym_split_clause, - STATE(861), 1, + STATE(860), 1, sym_group_clause, - STATE(878), 1, + STATE(891), 1, sym_order_clause, - STATE(953), 1, + STATE(981), 1, sym_limit_clause, - STATE(1009), 1, + STATE(1007), 1, sym_fetch_clause, - STATE(1145), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(291), 3, + ACTIONS(331), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, @@ -74770,25 +74822,25 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_split, ACTIONS(311), 1, sym_keyword_group, - STATE(793), 1, + STATE(800), 1, sym_where_clause, - STATE(827), 1, + STATE(817), 1, sym_split_clause, - STATE(857), 1, + STATE(866), 1, sym_group_clause, - STATE(896), 1, + STATE(893), 1, sym_order_clause, - STATE(949), 1, + STATE(974), 1, sym_limit_clause, - STATE(1007), 1, + STATE(1001), 1, sym_fetch_clause, - STATE(1161), 1, + STATE(1142), 1, sym_timeout_clause, - STATE(1244), 1, + STATE(1199), 1, sym_parallel_clause, - STATE(1280), 1, + STATE(1360), 1, sym_explain_clause, - ACTIONS(1042), 3, + ACTIONS(1006), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, @@ -74813,29 +74865,53 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_split, ACTIONS(311), 1, sym_keyword_group, - STATE(800), 1, + STATE(793), 1, sym_where_clause, - STATE(823), 1, + STATE(824), 1, sym_split_clause, - STATE(858), 1, + STATE(869), 1, sym_group_clause, - STATE(881), 1, + STATE(885), 1, sym_order_clause, - STATE(985), 1, + STATE(955), 1, sym_limit_clause, - STATE(1011), 1, + STATE(1018), 1, sym_fetch_clause, - STATE(1141), 1, + STATE(1158), 1, sym_timeout_clause, - STATE(1223), 1, + STATE(1239), 1, sym_parallel_clause, - STATE(1388), 1, + STATE(1418), 1, sym_explain_clause, - ACTIONS(1006), 3, + ACTIONS(1042), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [21845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1044), 20, + ts_builtin_sym_end, sym_semi_colon, + sym_keyword_if, + sym_keyword_tokenizers, + sym_keyword_as, + sym_keyword_function, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_filters, + sym_keyword_type, + sym_keyword_permissions, + sym_keyword_comment, + sym_keyword_session, + sym_keyword_signin, + sym_keyword_signup, anon_sym_RPAREN, anon_sym_RBRACE, - [21845] = 20, + sym_custom_function_name, + [21871] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -74856,28 +74932,28 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_order, ACTIONS(337), 1, sym_keyword_where, - STATE(805), 1, + STATE(813), 1, sym_where_clause, - STATE(854), 1, + STATE(855), 1, sym_split_clause, - STATE(881), 1, - sym_order_clause, - STATE(892), 1, + STATE(884), 1, sym_group_clause, - STATE(985), 1, + STATE(885), 1, + sym_order_clause, + STATE(955), 1, sym_limit_clause, - STATE(1011), 1, + STATE(1018), 1, sym_fetch_clause, - STATE(1141), 1, + STATE(1158), 1, sym_timeout_clause, - STATE(1223), 1, + STATE(1239), 1, sym_parallel_clause, - STATE(1388), 1, + STATE(1418), 1, sym_explain_clause, - ACTIONS(1006), 2, + ACTIONS(1042), 2, ts_builtin_sym_end, sym_semi_colon, - [21907] = 20, + [21933] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -74898,28 +74974,28 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_order, ACTIONS(337), 1, sym_keyword_where, - STATE(806), 1, + STATE(804), 1, sym_where_clause, - STATE(836), 1, + STATE(833), 1, sym_split_clause, - STATE(878), 1, - sym_order_clause, - STATE(884), 1, + STATE(872), 1, sym_group_clause, - STATE(953), 1, + STATE(891), 1, + sym_order_clause, + STATE(981), 1, sym_limit_clause, - STATE(1009), 1, + STATE(1007), 1, sym_fetch_clause, - STATE(1145), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(291), 2, + ACTIONS(331), 2, ts_builtin_sym_end, sym_semi_colon, - [21969] = 20, + [21995] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -74942,50 +75018,83 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_where, STATE(814), 1, sym_where_clause, - STATE(839), 1, + STATE(841), 1, sym_split_clause, - STATE(896), 1, + STATE(893), 1, sym_order_clause, - STATE(904), 1, + STATE(896), 1, sym_group_clause, - STATE(949), 1, + STATE(974), 1, sym_limit_clause, - STATE(1007), 1, + STATE(1001), 1, sym_fetch_clause, - STATE(1161), 1, + STATE(1142), 1, sym_timeout_clause, - STATE(1244), 1, + STATE(1199), 1, sym_parallel_clause, - STATE(1280), 1, + STATE(1360), 1, sym_explain_clause, - ACTIONS(1042), 2, + ACTIONS(1006), 2, ts_builtin_sym_end, sym_semi_colon, - [22031] = 2, + [22057] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1044), 20, + ACTIONS(1046), 1, + anon_sym_COMMA, + STATE(791), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1008), 17, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_if, - sym_keyword_tokenizers, sym_keyword_as, - sym_keyword_function, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, sym_keyword_changefeed, - sym_keyword_filters, sym_keyword_type, sym_keyword_permissions, sym_keyword_comment, - sym_keyword_session, - sym_keyword_signin, - sym_keyword_signup, + sym_keyword_unique, + sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - sym_custom_function_name, - [22057] = 18, + [22086] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1051), 1, + sym_keyword_value, + ACTIONS(1054), 1, + sym_keyword_flexible, + ACTIONS(1057), 1, + sym_keyword_readonly, + ACTIONS(1060), 1, + sym_keyword_type, + ACTIONS(1063), 1, + sym_keyword_default, + ACTIONS(1066), 1, + sym_keyword_assert, + ACTIONS(1069), 1, + sym_keyword_permissions, + ACTIONS(1072), 1, + sym_keyword_comment, + ACTIONS(1049), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(792), 8, + sym_type_clause, + sym_default_clause, + sym_readonly_clause, + sym_value_clause, + sym_assert_clause, + sym_permissions_for_clause, + sym_comment_clause, + aux_sym_define_field_statement_repeat1, + [22129] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -75006,25 +75115,57 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_group, STATE(830), 1, sym_split_clause, - STATE(861), 1, + STATE(868), 1, sym_group_clause, STATE(878), 1, sym_order_clause, - STATE(953), 1, + STATE(950), 1, sym_limit_clause, - STATE(1009), 1, + STATE(996), 1, sym_fetch_clause, - STATE(1145), 1, + STATE(1132), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1221), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1400), 1, sym_explain_clause, - ACTIONS(291), 3, + ACTIONS(1075), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [22186] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1079), 1, + sym_keyword_value, + ACTIONS(1081), 1, + sym_keyword_flexible, + ACTIONS(1083), 1, + sym_keyword_readonly, + ACTIONS(1085), 1, + sym_keyword_type, + ACTIONS(1087), 1, + sym_keyword_default, + ACTIONS(1089), 1, + sym_keyword_assert, + ACTIONS(1091), 1, + sym_keyword_permissions, + ACTIONS(1093), 1, + sym_keyword_comment, + ACTIONS(1077), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [22114] = 18, + STATE(798), 8, + sym_type_clause, + sym_default_clause, + sym_readonly_clause, + sym_value_clause, + sym_assert_clause, + sym_permissions_for_clause, + sym_comment_clause, + aux_sym_define_field_statement_repeat1, + [22229] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -75043,27 +75184,27 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_split, ACTIONS(311), 1, sym_keyword_group, - STATE(823), 1, + STATE(817), 1, sym_split_clause, - STATE(858), 1, + STATE(866), 1, sym_group_clause, - STATE(881), 1, + STATE(893), 1, sym_order_clause, - STATE(985), 1, + STATE(974), 1, sym_limit_clause, - STATE(1011), 1, + STATE(1001), 1, sym_fetch_clause, - STATE(1141), 1, + STATE(1142), 1, sym_timeout_clause, - STATE(1223), 1, + STATE(1199), 1, sym_parallel_clause, - STATE(1388), 1, + STATE(1360), 1, sym_explain_clause, ACTIONS(1006), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [22171] = 18, + [22286] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -75082,135 +75223,46 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_split, ACTIONS(311), 1, sym_keyword_group, - STATE(821), 1, + STATE(826), 1, sym_split_clause, - STATE(868), 1, + STATE(860), 1, sym_group_clause, - STATE(870), 1, + STATE(891), 1, sym_order_clause, - STATE(957), 1, + STATE(981), 1, sym_limit_clause, - STATE(1019), 1, + STATE(1007), 1, sym_fetch_clause, - STATE(1135), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1240), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1291), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(1046), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [22228] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1050), 1, - sym_keyword_value, - ACTIONS(1052), 1, - sym_keyword_flexible, - ACTIONS(1054), 1, - sym_keyword_readonly, - ACTIONS(1056), 1, - sym_keyword_type, - ACTIONS(1058), 1, - sym_keyword_default, - ACTIONS(1060), 1, - sym_keyword_assert, - ACTIONS(1062), 1, - sym_keyword_permissions, - ACTIONS(1064), 1, - sym_keyword_comment, - ACTIONS(1048), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(799), 8, - sym_type_clause, - sym_default_clause, - sym_readonly_clause, - sym_value_clause, - sym_assert_clause, - sym_permissions_for_clause, - sym_comment_clause, - aux_sym_define_field_statement_repeat1, - [22271] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1066), 1, - anon_sym_COMMA, - STATE(795), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1008), 17, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_as, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_comment, - sym_keyword_unique, - sym_keyword_search, - anon_sym_RPAREN, - anon_sym_RBRACE, - [22300] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1050), 1, - sym_keyword_value, - ACTIONS(1052), 1, - sym_keyword_flexible, - ACTIONS(1054), 1, - sym_keyword_readonly, - ACTIONS(1056), 1, - sym_keyword_type, - ACTIONS(1058), 1, - sym_keyword_default, - ACTIONS(1060), 1, - sym_keyword_assert, - ACTIONS(1062), 1, - sym_keyword_permissions, - ACTIONS(1064), 1, - sym_keyword_comment, - ACTIONS(1069), 3, + ACTIONS(331), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(797), 8, - sym_type_clause, - sym_default_clause, - sym_readonly_clause, - sym_value_clause, - sym_assert_clause, - sym_permissions_for_clause, - sym_comment_clause, - aux_sym_define_field_statement_repeat1, [22343] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1050), 1, + ACTIONS(1079), 1, sym_keyword_value, - ACTIONS(1052), 1, + ACTIONS(1081), 1, sym_keyword_flexible, - ACTIONS(1054), 1, + ACTIONS(1083), 1, sym_keyword_readonly, - ACTIONS(1056), 1, + ACTIONS(1085), 1, sym_keyword_type, - ACTIONS(1058), 1, + ACTIONS(1087), 1, sym_keyword_default, - ACTIONS(1060), 1, + ACTIONS(1089), 1, sym_keyword_assert, - ACTIONS(1062), 1, + ACTIONS(1091), 1, sym_keyword_permissions, - ACTIONS(1064), 1, + ACTIONS(1093), 1, sym_keyword_comment, - ACTIONS(1071), 3, + ACTIONS(1095), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, @@ -75226,27 +75278,27 @@ static const uint16_t ts_small_parse_table[] = { [22386] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1050), 1, + ACTIONS(1079), 1, sym_keyword_value, - ACTIONS(1052), 1, + ACTIONS(1081), 1, sym_keyword_flexible, - ACTIONS(1054), 1, + ACTIONS(1083), 1, sym_keyword_readonly, - ACTIONS(1056), 1, + ACTIONS(1085), 1, sym_keyword_type, - ACTIONS(1058), 1, + ACTIONS(1087), 1, sym_keyword_default, - ACTIONS(1060), 1, + ACTIONS(1089), 1, sym_keyword_assert, - ACTIONS(1062), 1, + ACTIONS(1091), 1, sym_keyword_permissions, - ACTIONS(1064), 1, + ACTIONS(1093), 1, sym_keyword_comment, - ACTIONS(1071), 3, + ACTIONS(1095), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(794), 8, + STATE(792), 8, sym_type_clause, sym_default_clause, sym_readonly_clause, @@ -75258,27 +75310,27 @@ static const uint16_t ts_small_parse_table[] = { [22429] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1075), 1, + ACTIONS(1079), 1, sym_keyword_value, - ACTIONS(1078), 1, - sym_keyword_flexible, ACTIONS(1081), 1, + sym_keyword_flexible, + ACTIONS(1083), 1, sym_keyword_readonly, - ACTIONS(1084), 1, + ACTIONS(1085), 1, sym_keyword_type, ACTIONS(1087), 1, sym_keyword_default, - ACTIONS(1090), 1, + ACTIONS(1089), 1, sym_keyword_assert, - ACTIONS(1093), 1, + ACTIONS(1091), 1, sym_keyword_permissions, - ACTIONS(1096), 1, + ACTIONS(1093), 1, sym_keyword_comment, - ACTIONS(1073), 3, + ACTIONS(1097), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(799), 8, + STATE(792), 8, sym_type_clause, sym_default_clause, sym_readonly_clause, @@ -75306,21 +75358,21 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_split, ACTIONS(311), 1, sym_keyword_group, - STATE(827), 1, + STATE(824), 1, sym_split_clause, - STATE(857), 1, + STATE(869), 1, sym_group_clause, - STATE(896), 1, + STATE(885), 1, sym_order_clause, - STATE(949), 1, + STATE(955), 1, sym_limit_clause, - STATE(1007), 1, + STATE(1018), 1, sym_fetch_clause, - STATE(1161), 1, + STATE(1158), 1, sym_timeout_clause, - STATE(1244), 1, + STATE(1239), 1, sym_parallel_clause, - STATE(1280), 1, + STATE(1418), 1, sym_explain_clause, ACTIONS(1042), 3, sym_semi_colon, @@ -75329,13 +75381,13 @@ static const uint16_t ts_small_parse_table[] = { [22529] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 1, + ACTIONS(1081), 1, sym_keyword_flexible, - ACTIONS(1054), 1, + ACTIONS(1083), 1, sym_keyword_readonly, - ACTIONS(1056), 1, + ACTIONS(1085), 1, sym_keyword_type, - ACTIONS(1064), 1, + ACTIONS(1093), 1, sym_keyword_comment, ACTIONS(1099), 1, sym_keyword_value, @@ -75345,10 +75397,10 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_assert, ACTIONS(1105), 1, sym_keyword_permissions, - ACTIONS(1071), 2, + ACTIONS(1077), 2, ts_builtin_sym_end, sym_semi_colon, - STATE(802), 8, + STATE(803), 8, sym_type_clause, sym_default_clause, sym_readonly_clause, @@ -75360,73 +75412,13 @@ static const uint16_t ts_small_parse_table[] = { [22571] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 1, - sym_keyword_flexible, - ACTIONS(1054), 1, - sym_keyword_readonly, - ACTIONS(1056), 1, - sym_keyword_type, - ACTIONS(1064), 1, - sym_keyword_comment, - ACTIONS(1099), 1, - sym_keyword_value, - ACTIONS(1101), 1, - sym_keyword_default, - ACTIONS(1103), 1, - sym_keyword_assert, - ACTIONS(1105), 1, - sym_keyword_permissions, - ACTIONS(1048), 2, - ts_builtin_sym_end, - sym_semi_colon, - STATE(808), 8, - sym_type_clause, - sym_default_clause, - sym_readonly_clause, - sym_value_clause, - sym_assert_clause, - sym_permissions_for_clause, - sym_comment_clause, - aux_sym_define_field_statement_repeat1, - [22613] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(1107), 1, - anon_sym_EQ, - STATE(49), 1, - sym_record_id_value, - ACTIONS(383), 2, - sym_int, - sym_record_id_ident, - STATE(45), 2, - sym_array, - sym_object, - ACTIONS(212), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(214), 6, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_content, - sym_keyword_set, - sym_keyword_unset, - [22651] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1052), 1, + ACTIONS(1081), 1, sym_keyword_flexible, - ACTIONS(1054), 1, + ACTIONS(1083), 1, sym_keyword_readonly, - ACTIONS(1056), 1, + ACTIONS(1085), 1, sym_keyword_type, - ACTIONS(1064), 1, + ACTIONS(1093), 1, sym_keyword_comment, ACTIONS(1099), 1, sym_keyword_value, @@ -75436,7 +75428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_assert, ACTIONS(1105), 1, sym_keyword_permissions, - ACTIONS(1071), 2, + ACTIONS(1095), 2, ts_builtin_sym_end, sym_semi_colon, STATE(808), 8, @@ -75448,134 +75440,29 @@ static const uint16_t ts_small_parse_table[] = { sym_permissions_for_clause, sym_comment_clause, aux_sym_define_field_statement_repeat1, - [22693] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - ACTIONS(301), 1, - sym_keyword_limit, - ACTIONS(309), 1, - sym_keyword_split, - ACTIONS(311), 1, - sym_keyword_group, - ACTIONS(333), 1, - sym_keyword_order, - STATE(839), 1, - sym_split_clause, - STATE(896), 1, - sym_order_clause, - STATE(904), 1, - sym_group_clause, - STATE(949), 1, - sym_limit_clause, - STATE(1007), 1, - sym_fetch_clause, - STATE(1161), 1, - sym_timeout_clause, - STATE(1244), 1, - sym_parallel_clause, - STATE(1280), 1, - sym_explain_clause, - ACTIONS(1042), 2, - ts_builtin_sym_end, - sym_semi_colon, - [22749] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - ACTIONS(301), 1, - sym_keyword_limit, - ACTIONS(309), 1, - sym_keyword_split, - ACTIONS(311), 1, - sym_keyword_group, - ACTIONS(333), 1, - sym_keyword_order, - STATE(854), 1, - sym_split_clause, - STATE(881), 1, - sym_order_clause, - STATE(892), 1, - sym_group_clause, - STATE(985), 1, - sym_limit_clause, - STATE(1011), 1, - sym_fetch_clause, - STATE(1141), 1, - sym_timeout_clause, - STATE(1223), 1, - sym_parallel_clause, - STATE(1388), 1, - sym_explain_clause, - ACTIONS(1006), 2, - ts_builtin_sym_end, - sym_semi_colon, - [22805] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(1109), 1, - anon_sym_EQ, - STATE(48), 1, - sym_record_id_value, - ACTIONS(383), 2, - sym_int, - sym_record_id_ident, - STATE(45), 2, - sym_array, - sym_object, - ACTIONS(341), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(343), 6, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_content, - sym_keyword_set, - sym_keyword_unset, - [22843] = 11, + [22613] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1078), 1, - sym_keyword_flexible, ACTIONS(1081), 1, + sym_keyword_flexible, + ACTIONS(1083), 1, sym_keyword_readonly, - ACTIONS(1084), 1, + ACTIONS(1085), 1, sym_keyword_type, - ACTIONS(1096), 1, + ACTIONS(1093), 1, sym_keyword_comment, - ACTIONS(1111), 1, + ACTIONS(1099), 1, sym_keyword_value, - ACTIONS(1114), 1, + ACTIONS(1101), 1, sym_keyword_default, - ACTIONS(1117), 1, + ACTIONS(1103), 1, sym_keyword_assert, - ACTIONS(1120), 1, + ACTIONS(1105), 1, sym_keyword_permissions, - ACTIONS(1073), 2, + ACTIONS(1095), 2, ts_builtin_sym_end, sym_semi_colon, - STATE(808), 8, + STATE(807), 8, sym_type_clause, sym_default_clause, sym_readonly_clause, @@ -75584,7 +75471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_permissions_for_clause, sym_comment_clause, aux_sym_define_field_statement_repeat1, - [22885] = 18, + [22655] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -75603,29 +75490,29 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_group, ACTIONS(333), 1, sym_keyword_order, - STATE(836), 1, + STATE(841), 1, sym_split_clause, - STATE(878), 1, + STATE(893), 1, sym_order_clause, - STATE(884), 1, + STATE(896), 1, sym_group_clause, - STATE(953), 1, + STATE(974), 1, sym_limit_clause, - STATE(1009), 1, + STATE(1001), 1, sym_fetch_clause, - STATE(1145), 1, + STATE(1142), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1199), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1360), 1, sym_explain_clause, - ACTIONS(291), 2, + ACTIONS(1006), 2, ts_builtin_sym_end, sym_semi_colon, - [22941] = 2, + [22711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 18, + ACTIONS(1107), 18, ts_builtin_sym_end, sym_semi_colon, sym_keyword_value, @@ -75644,45 +75531,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - [22965] = 9, + [22735] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(1125), 1, + ACTIONS(1109), 1, anon_sym_EQ, STATE(50), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(41), 2, sym_array, sym_object, - ACTIONS(160), 4, + ACTIONS(349), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(162), 6, + ACTIONS(351), 6, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, sym_keyword_content, sym_keyword_set, sym_keyword_unset, - [23003] = 11, + [22773] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1052), 1, - sym_keyword_flexible, ACTIONS(1054), 1, + sym_keyword_flexible, + ACTIONS(1057), 1, + sym_keyword_readonly, + ACTIONS(1060), 1, + sym_keyword_type, + ACTIONS(1072), 1, + sym_keyword_comment, + ACTIONS(1111), 1, + sym_keyword_value, + ACTIONS(1114), 1, + sym_keyword_default, + ACTIONS(1117), 1, + sym_keyword_assert, + ACTIONS(1120), 1, + sym_keyword_permissions, + ACTIONS(1049), 2, + ts_builtin_sym_end, + sym_semi_colon, + STATE(807), 8, + sym_type_clause, + sym_default_clause, + sym_readonly_clause, + sym_value_clause, + sym_assert_clause, + sym_permissions_for_clause, + sym_comment_clause, + aux_sym_define_field_statement_repeat1, + [22815] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1081), 1, + sym_keyword_flexible, + ACTIONS(1083), 1, sym_keyword_readonly, - ACTIONS(1056), 1, + ACTIONS(1085), 1, sym_keyword_type, - ACTIONS(1064), 1, + ACTIONS(1093), 1, sym_keyword_comment, ACTIONS(1099), 1, sym_keyword_value, @@ -75692,10 +75610,10 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_assert, ACTIONS(1105), 1, sym_keyword_permissions, - ACTIONS(1069), 2, + ACTIONS(1097), 2, ts_builtin_sym_end, sym_semi_colon, - STATE(804), 8, + STATE(807), 8, sym_type_clause, sym_default_clause, sym_readonly_clause, @@ -75704,10 +75622,10 @@ static const uint16_t ts_small_parse_table[] = { sym_permissions_for_clause, sym_comment_clause, aux_sym_define_field_statement_repeat1, - [23045] = 2, + [22857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 18, + ACTIONS(1123), 18, ts_builtin_sym_end, sym_semi_colon, sym_keyword_value, @@ -75726,7 +75644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - [23069] = 18, + [22881] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -75745,76 +75663,84 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_group, ACTIONS(333), 1, sym_keyword_order, - STATE(840), 1, + STATE(833), 1, sym_split_clause, - STATE(870), 1, - sym_order_clause, - STATE(891), 1, + STATE(872), 1, sym_group_clause, - STATE(957), 1, + STATE(891), 1, + sym_order_clause, + STATE(981), 1, sym_limit_clause, - STATE(1019), 1, + STATE(1007), 1, sym_fetch_clause, - STATE(1135), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1240), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1291), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(1046), 2, + ACTIONS(331), 2, ts_builtin_sym_end, sym_semi_colon, - [23125] = 3, + [22937] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1129), 16, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1125), 1, + anon_sym_EQ, + STATE(48), 1, + sym_record_id_value, + ACTIONS(426), 2, + sym_int, + sym_record_id_ident, + STATE(41), 2, + sym_array, + sym_object, + ACTIONS(140), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_bm25, - sym_keyword_doc_ids_cache, - sym_keyword_doc_ids_order, - sym_keyword_doc_lengths_cache, - sym_keyword_doc_lengths_order, - sym_keyword_postings_cache, - sym_keyword_postings_order, - sym_keyword_terms_cache, - sym_keyword_terms_order, - sym_keyword_highlights, - sym_keyword_unique, - sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [23150] = 9, + ACTIONS(142), 6, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_content, + sym_keyword_set, + sym_keyword_unset, + [22975] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1135), 1, - sym_keyword_as, - ACTIONS(1141), 1, - sym_keyword_changefeed, - ACTIONS(1144), 1, - sym_keyword_type, - ACTIONS(1147), 1, - sym_keyword_permissions, - ACTIONS(1150), 1, - sym_keyword_comment, - ACTIONS(1133), 3, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1127), 1, + anon_sym_EQ, + STATE(46), 1, + sym_record_id_value, + ACTIONS(426), 2, + sym_int, + sym_record_id_ident, + STATE(41), 2, + sym_array, + sym_object, + ACTIONS(200), 4, + ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1138), 3, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - STATE(816), 6, - sym_permissions_for_clause, - sym_comment_clause, - sym_table_type_clause, - sym_table_view_clause, - sym_changefeed_clause, - aux_sym_define_table_statement_repeat1, - [23187] = 16, + ACTIONS(202), 6, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_content, + sym_keyword_set, + sym_keyword_unset, + [23013] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -75827,112 +75753,126 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - ACTIONS(303), 1, - sym_keyword_order, + ACTIONS(309), 1, + sym_keyword_split, ACTIONS(311), 1, sym_keyword_group, - STATE(861), 1, + ACTIONS(333), 1, + sym_keyword_order, + STATE(831), 1, + sym_split_clause, + STATE(870), 1, sym_group_clause, STATE(878), 1, sym_order_clause, - STATE(953), 1, + STATE(950), 1, sym_limit_clause, - STATE(1009), 1, + STATE(996), 1, sym_fetch_clause, - STATE(1145), 1, + STATE(1132), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1221), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1400), 1, sym_explain_clause, - ACTIONS(291), 3, + ACTIONS(1075), 2, + ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [23238] = 9, + [23069] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(1107), 1, - anon_sym_EQ, - STATE(49), 1, - sym_record_id_value, - ACTIONS(383), 2, - sym_int, - sym_record_id_ident, - STATE(45), 2, - sym_array, - sym_object, - ACTIONS(212), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(214), 5, - sym_keyword_return, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, sym_keyword_parallel, + ACTIONS(297), 1, sym_keyword_timeout, - sym_keyword_content, - sym_keyword_set, - [23275] = 9, + ACTIONS(299), 1, + sym_keyword_fetch, + ACTIONS(301), 1, + sym_keyword_limit, + ACTIONS(309), 1, + sym_keyword_split, + ACTIONS(311), 1, + sym_keyword_group, + ACTIONS(333), 1, + sym_keyword_order, + STATE(855), 1, + sym_split_clause, + STATE(884), 1, + sym_group_clause, + STATE(885), 1, + sym_order_clause, + STATE(955), 1, + sym_limit_clause, + STATE(1018), 1, + sym_fetch_clause, + STATE(1158), 1, + sym_timeout_clause, + STATE(1239), 1, + sym_parallel_clause, + STATE(1418), 1, + sym_explain_clause, + ACTIONS(1042), 2, + ts_builtin_sym_end, + sym_semi_colon, + [23125] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 1, + ACTIONS(1131), 1, sym_keyword_as, - ACTIONS(1159), 1, + ACTIONS(1135), 1, sym_keyword_changefeed, - ACTIONS(1161), 1, + ACTIONS(1137), 1, sym_keyword_type, - ACTIONS(1163), 1, + ACTIONS(1139), 1, sym_keyword_permissions, - ACTIONS(1165), 1, + ACTIONS(1141), 1, sym_keyword_comment, - ACTIONS(1153), 3, + ACTIONS(1129), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1157), 3, + ACTIONS(1133), 3, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, - STATE(816), 6, + STATE(819), 6, sym_permissions_for_clause, sym_comment_clause, sym_table_type_clause, sym_table_view_clause, sym_changefeed_clause, aux_sym_define_table_statement_repeat1, - [23312] = 8, + [23162] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(612), 1, - sym_keyword_where, - ACTIONS(614), 1, - sym_keyword_group, - ACTIONS(616), 1, - anon_sym_COMMA, - STATE(864), 1, - aux_sym_update_statement_repeat1, - STATE(877), 1, - sym_where_clause, - STATE(963), 1, - sym_group_clause, - ACTIONS(1167), 11, - sym_semi_colon, + ACTIONS(1131), 1, sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, + ACTIONS(1135), 1, sym_keyword_changefeed, + ACTIONS(1137), 1, sym_keyword_type, + ACTIONS(1139), 1, sym_keyword_permissions, + ACTIONS(1141), 1, sym_keyword_comment, + ACTIONS(1143), 3, + sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [23347] = 16, + ACTIONS(1145), 3, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + STATE(822), 6, + sym_permissions_for_clause, + sym_comment_clause, + sym_table_type_clause, + sym_table_view_clause, + sym_changefeed_clause, + aux_sym_define_table_statement_repeat1, + [23199] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -75949,53 +75889,25 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_order, ACTIONS(311), 1, sym_keyword_group, - STATE(866), 1, + STATE(869), 1, sym_group_clause, - STATE(898), 1, + STATE(885), 1, sym_order_clause, - STATE(981), 1, + STATE(955), 1, sym_limit_clause, - STATE(1008), 1, + STATE(1018), 1, sym_fetch_clause, - STATE(1111), 1, + STATE(1158), 1, sym_timeout_clause, - STATE(1234), 1, + STATE(1239), 1, sym_parallel_clause, - STATE(1394), 1, + STATE(1418), 1, sym_explain_clause, - ACTIONS(1169), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [23398] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(1109), 1, - anon_sym_EQ, - STATE(48), 1, - sym_record_id_value, - ACTIONS(383), 2, - sym_int, - sym_record_id_ident, - STATE(45), 2, - sym_array, - sym_object, - ACTIONS(341), 4, - ts_builtin_sym_end, + ACTIONS(1042), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(343), 5, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_content, - sym_keyword_set, - [23435] = 16, + [23250] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -76012,25 +75924,53 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_order, ACTIONS(311), 1, sym_keyword_group, - STATE(857), 1, + STATE(860), 1, sym_group_clause, - STATE(896), 1, + STATE(891), 1, sym_order_clause, - STATE(949), 1, + STATE(981), 1, sym_limit_clause, STATE(1007), 1, sym_fetch_clause, - STATE(1161), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1244), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1280), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(1042), 3, + ACTIONS(331), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [23301] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1131), 1, + sym_keyword_as, + ACTIONS(1135), 1, + sym_keyword_changefeed, + ACTIONS(1137), 1, + sym_keyword_type, + ACTIONS(1139), 1, + sym_keyword_permissions, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1143), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [23486] = 9, + ACTIONS(1147), 3, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + STATE(825), 6, + sym_permissions_for_clause, + sym_comment_clause, + sym_table_type_clause, + sym_table_view_clause, + sym_changefeed_clause, + aux_sym_define_table_statement_repeat1, + [23338] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -76039,81 +75979,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1125), 1, anon_sym_EQ, - STATE(50), 1, + STATE(48), 1, + sym_record_id_value, + ACTIONS(426), 2, + sym_int, + sym_record_id_ident, + STATE(41), 2, + sym_array, + sym_object, + ACTIONS(140), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(142), 5, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_content, + sym_keyword_set, + [23375] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1127), 1, + anon_sym_EQ, + STATE(46), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(41), 2, sym_array, sym_object, - ACTIONS(160), 4, + ACTIONS(200), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(162), 5, + ACTIONS(202), 5, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, sym_keyword_content, sym_keyword_set, - [23523] = 9, + [23412] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 1, + ACTIONS(1131), 1, sym_keyword_as, - ACTIONS(1159), 1, + ACTIONS(1135), 1, sym_keyword_changefeed, - ACTIONS(1161), 1, + ACTIONS(1137), 1, sym_keyword_type, - ACTIONS(1163), 1, + ACTIONS(1139), 1, sym_keyword_permissions, - ACTIONS(1165), 1, + ACTIONS(1141), 1, sym_keyword_comment, - ACTIONS(1171), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1173), 3, + ACTIONS(1147), 3, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, - STATE(819), 6, + ACTIONS(1149), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(825), 6, sym_permissions_for_clause, sym_comment_clause, sym_table_type_clause, sym_table_view_clause, sym_changefeed_clause, aux_sym_define_table_statement_repeat1, - [23560] = 8, + [23449] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(612), 1, - sym_keyword_where, - ACTIONS(614), 1, - sym_keyword_group, - ACTIONS(616), 1, - anon_sym_COMMA, - STATE(864), 1, - aux_sym_update_statement_repeat1, - STATE(888), 1, - sym_where_clause, - STATE(983), 1, - sym_group_clause, - ACTIONS(610), 11, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1109), 1, + anon_sym_EQ, + STATE(50), 1, + sym_record_id_value, + ACTIONS(426), 2, + sym_int, + sym_record_id_ident, + STATE(41), 2, + sym_array, + sym_object, + ACTIONS(349), 4, + ts_builtin_sym_end, sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [23595] = 16, + ACTIONS(351), 5, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_content, + sym_keyword_set, + [23486] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -76132,79 +76101,51 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_group, STATE(868), 1, sym_group_clause, - STATE(870), 1, + STATE(878), 1, sym_order_clause, - STATE(957), 1, + STATE(950), 1, sym_limit_clause, - STATE(1019), 1, + STATE(996), 1, sym_fetch_clause, - STATE(1135), 1, + STATE(1132), 1, sym_timeout_clause, - STATE(1240), 1, + STATE(1221), 1, sym_parallel_clause, - STATE(1291), 1, + STATE(1400), 1, sym_explain_clause, - ACTIONS(1046), 3, + ACTIONS(1075), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [23646] = 9, + [23537] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 1, + ACTIONS(1153), 1, sym_keyword_as, ACTIONS(1159), 1, sym_keyword_changefeed, - ACTIONS(1161), 1, + ACTIONS(1162), 1, sym_keyword_type, - ACTIONS(1163), 1, - sym_keyword_permissions, ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1157), 3, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - ACTIONS(1171), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(816), 6, - sym_permissions_for_clause, - sym_comment_clause, - sym_table_type_clause, - sym_table_view_clause, - sym_changefeed_clause, - aux_sym_define_table_statement_repeat1, - [23683] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1155), 1, - sym_keyword_as, - ACTIONS(1159), 1, - sym_keyword_changefeed, - ACTIONS(1161), 1, - sym_keyword_type, - ACTIONS(1163), 1, sym_keyword_permissions, - ACTIONS(1165), 1, + ACTIONS(1168), 1, sym_keyword_comment, - ACTIONS(1175), 3, + ACTIONS(1151), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1177), 3, + ACTIONS(1156), 3, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, - STATE(828), 6, + STATE(825), 6, sym_permissions_for_clause, sym_comment_clause, sym_table_type_clause, sym_table_view_clause, sym_changefeed_clause, aux_sym_define_table_statement_repeat1, - [23720] = 16, + [23574] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -76221,28 +76162,30 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_order, ACTIONS(311), 1, sym_keyword_group, - STATE(858), 1, + STATE(866), 1, sym_group_clause, - STATE(881), 1, + STATE(893), 1, sym_order_clause, - STATE(985), 1, + STATE(974), 1, sym_limit_clause, - STATE(1011), 1, + STATE(1001), 1, sym_fetch_clause, - STATE(1141), 1, + STATE(1142), 1, sym_timeout_clause, - STATE(1223), 1, + STATE(1199), 1, sym_parallel_clause, - STATE(1388), 1, + STATE(1360), 1, sym_explain_clause, ACTIONS(1006), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [23771] = 2, + [23625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 16, + ACTIONS(1173), 1, + anon_sym_LPAREN, + ACTIONS(1171), 16, ts_builtin_sym_end, sym_semi_colon, sym_keyword_bm25, @@ -76259,54 +76202,157 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [23793] = 2, + [23650] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 16, - ts_builtin_sym_end, + ACTIONS(604), 1, + sym_keyword_where, + ACTIONS(606), 1, + sym_keyword_group, + ACTIONS(608), 1, + anon_sym_COMMA, + STATE(864), 1, + aux_sym_update_statement_repeat1, + STATE(882), 1, + sym_where_clause, + STATE(967), 1, + sym_group_clause, + ACTIONS(612), 11, + sym_semi_colon, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, + sym_keyword_permissions, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, + [23685] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(604), 1, + sym_keyword_where, + ACTIONS(606), 1, + sym_keyword_group, + ACTIONS(608), 1, + anon_sym_COMMA, + STATE(864), 1, + aux_sym_update_statement_repeat1, + STATE(897), 1, + sym_where_clause, + STATE(952), 1, + sym_group_clause, + ACTIONS(1175), 11, + sym_semi_colon, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, + sym_keyword_permissions, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, + [23720] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(299), 1, + sym_keyword_fetch, + ACTIONS(301), 1, + sym_keyword_limit, + ACTIONS(303), 1, + sym_keyword_order, + ACTIONS(311), 1, + sym_keyword_group, + STATE(865), 1, + sym_group_clause, + STATE(899), 1, + sym_order_clause, + STATE(975), 1, + sym_limit_clause, + STATE(1000), 1, + sym_fetch_clause, + STATE(1154), 1, + sym_timeout_clause, + STATE(1224), 1, + sym_parallel_clause, + STATE(1370), 1, + sym_explain_clause, + ACTIONS(1177), 3, sym_semi_colon, - sym_keyword_bm25, - sym_keyword_doc_ids_cache, - sym_keyword_doc_ids_order, - sym_keyword_doc_lengths_cache, - sym_keyword_doc_lengths_order, - sym_keyword_postings_cache, - sym_keyword_postings_order, - sym_keyword_terms_cache, - sym_keyword_terms_order, - sym_keyword_highlights, - sym_keyword_unique, - sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [23815] = 9, + [23771] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(299), 1, + sym_keyword_fetch, + ACTIONS(301), 1, + sym_keyword_limit, + ACTIONS(311), 1, + sym_keyword_group, + ACTIONS(333), 1, + sym_keyword_order, + STATE(876), 1, + sym_group_clause, + STATE(899), 1, + sym_order_clause, + STATE(975), 1, + sym_limit_clause, + STATE(1000), 1, + sym_fetch_clause, + STATE(1154), 1, + sym_timeout_clause, + STATE(1224), 1, + sym_parallel_clause, + STATE(1370), 1, + sym_explain_clause, + ACTIONS(1177), 2, + ts_builtin_sym_end, + sym_semi_colon, + [23821] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1159), 1, sym_keyword_changefeed, - ACTIONS(1161), 1, + ACTIONS(1162), 1, sym_keyword_type, - ACTIONS(1165), 1, + ACTIONS(1168), 1, sym_keyword_comment, - ACTIONS(1183), 1, + ACTIONS(1179), 1, sym_keyword_as, - ACTIONS(1187), 1, + ACTIONS(1185), 1, sym_keyword_permissions, - ACTIONS(1153), 2, + ACTIONS(1151), 2, ts_builtin_sym_end, sym_semi_colon, - ACTIONS(1185), 3, + ACTIONS(1182), 3, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, - STATE(837), 6, + STATE(832), 6, sym_permissions_for_clause, sym_comment_clause, sym_table_type_clause, sym_table_view_clause, sym_changefeed_clause, aux_sym_define_table_statement_repeat1, - [23851] = 16, + [23857] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -76323,34 +76369,34 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_group, ACTIONS(333), 1, sym_keyword_order, - STATE(878), 1, + STATE(893), 1, sym_order_clause, - STATE(884), 1, + STATE(896), 1, sym_group_clause, - STATE(953), 1, + STATE(974), 1, sym_limit_clause, - STATE(1009), 1, + STATE(1001), 1, sym_fetch_clause, - STATE(1145), 1, + STATE(1142), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1199), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1360), 1, sym_explain_clause, - ACTIONS(291), 2, + ACTIONS(1006), 2, ts_builtin_sym_end, sym_semi_colon, - [23901] = 5, + [23907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1193), 1, + ACTIONS(1192), 1, anon_sym_COMMA, - STATE(853), 1, + STATE(847), 1, aux_sym_define_user_statement_repeat1, - ACTIONS(1191), 2, + ACTIONS(1190), 2, sym_keyword_out, sym_keyword_to, - ACTIONS(1189), 12, + ACTIONS(1188), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -76363,90 +76409,74 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [23929] = 16, + [23935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - ACTIONS(301), 1, - sym_keyword_limit, - ACTIONS(311), 1, - sym_keyword_group, - ACTIONS(333), 1, - sym_keyword_order, - STATE(881), 1, - sym_order_clause, - STATE(892), 1, - sym_group_clause, - STATE(985), 1, - sym_limit_clause, - STATE(1011), 1, - sym_fetch_clause, - STATE(1141), 1, - sym_timeout_clause, - STATE(1223), 1, - sym_parallel_clause, - STATE(1388), 1, - sym_explain_clause, - ACTIONS(1006), 2, + ACTIONS(1194), 16, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_bm25, + sym_keyword_doc_ids_cache, + sym_keyword_doc_ids_order, + sym_keyword_doc_lengths_cache, + sym_keyword_doc_lengths_order, + sym_keyword_postings_cache, + sym_keyword_postings_order, + sym_keyword_terms_cache, + sym_keyword_terms_order, + sym_keyword_highlights, + sym_keyword_unique, + sym_keyword_search, + anon_sym_RPAREN, + anon_sym_RBRACE, + [23957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1196), 16, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_bm25, + sym_keyword_doc_ids_cache, + sym_keyword_doc_ids_order, + sym_keyword_doc_lengths_cache, + sym_keyword_doc_lengths_order, + sym_keyword_postings_cache, + sym_keyword_postings_order, + sym_keyword_terms_cache, + sym_keyword_terms_order, + sym_keyword_highlights, + sym_keyword_unique, + sym_keyword_search, + anon_sym_RPAREN, + anon_sym_RBRACE, [23979] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(1135), 1, sym_keyword_changefeed, - ACTIONS(1144), 1, + ACTIONS(1137), 1, sym_keyword_type, - ACTIONS(1150), 1, + ACTIONS(1141), 1, sym_keyword_comment, - ACTIONS(1195), 1, + ACTIONS(1198), 1, sym_keyword_as, - ACTIONS(1201), 1, + ACTIONS(1202), 1, sym_keyword_permissions, - ACTIONS(1133), 2, + ACTIONS(1143), 2, ts_builtin_sym_end, sym_semi_colon, - ACTIONS(1198), 3, + ACTIONS(1200), 3, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, - STATE(837), 6, + STATE(832), 6, sym_permissions_for_clause, sym_comment_clause, sym_table_type_clause, sym_table_view_clause, sym_changefeed_clause, aux_sym_define_table_statement_repeat1, - [24015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1204), 1, - anon_sym_COMMA, - STATE(838), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1008), 14, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_out, - sym_keyword_to, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [24041] = 16, + [24015] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -76463,24 +76493,70 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_group, ACTIONS(333), 1, sym_keyword_order, - STATE(870), 1, - sym_order_clause, - STATE(891), 1, + STATE(872), 1, sym_group_clause, - STATE(957), 1, + STATE(891), 1, + sym_order_clause, + STATE(981), 1, sym_limit_clause, - STATE(1019), 1, + STATE(1007), 1, sym_fetch_clause, - STATE(1135), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1240), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1291), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(1046), 2, + ACTIONS(331), 2, + ts_builtin_sym_end, + sym_semi_colon, + [24065] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(606), 1, + sym_keyword_group, + ACTIONS(624), 1, + sym_keyword_where, + ACTIONS(626), 1, + anon_sym_COMMA, + STATE(888), 1, + aux_sym_update_statement_repeat1, + STATE(897), 1, + sym_where_clause, + STATE(952), 1, + sym_group_clause, + ACTIONS(1175), 10, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, + sym_keyword_permissions, + sym_keyword_comment, + [24099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1204), 16, ts_builtin_sym_end, sym_semi_colon, - [24091] = 16, + sym_keyword_bm25, + sym_keyword_doc_ids_cache, + sym_keyword_doc_ids_order, + sym_keyword_doc_lengths_cache, + sym_keyword_doc_lengths_order, + sym_keyword_postings_cache, + sym_keyword_postings_order, + sym_keyword_terms_cache, + sym_keyword_terms_order, + sym_keyword_highlights, + sym_keyword_unique, + sym_keyword_search, + anon_sym_RPAREN, + anon_sym_RBRACE, + [24121] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -76497,39 +76573,34 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_group, ACTIONS(333), 1, sym_keyword_order, - STATE(897), 1, + STATE(884), 1, sym_group_clause, - STATE(898), 1, + STATE(885), 1, sym_order_clause, - STATE(981), 1, + STATE(955), 1, sym_limit_clause, - STATE(1008), 1, + STATE(1018), 1, sym_fetch_clause, - STATE(1111), 1, + STATE(1158), 1, sym_timeout_clause, - STATE(1234), 1, + STATE(1239), 1, sym_parallel_clause, - STATE(1394), 1, + STATE(1418), 1, sym_explain_clause, - ACTIONS(1169), 2, + ACTIONS(1042), 2, ts_builtin_sym_end, sym_semi_colon, - [24141] = 8, + [24171] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(614), 1, - sym_keyword_group, - ACTIONS(626), 1, - sym_keyword_where, - ACTIONS(628), 1, + ACTIONS(1192), 1, anon_sym_COMMA, - STATE(882), 1, - aux_sym_update_statement_repeat1, - STATE(888), 1, - sym_where_clause, - STATE(983), 1, - sym_group_clause, - ACTIONS(610), 10, + STATE(834), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1208), 2, + sym_keyword_out, + sym_keyword_to, + ACTIONS(1206), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -76540,64 +76611,12 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_type, sym_keyword_permissions, sym_keyword_comment, - [24175] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 1, - sym_keyword_changefeed, - ACTIONS(1161), 1, - sym_keyword_type, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1183), 1, - sym_keyword_as, - ACTIONS(1187), 1, - sym_keyword_permissions, - ACTIONS(1171), 2, - ts_builtin_sym_end, - sym_semi_colon, - ACTIONS(1185), 3, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - STATE(837), 6, - sym_permissions_for_clause, - sym_comment_clause, - sym_table_type_clause, - sym_table_view_clause, - sym_changefeed_clause, - aux_sym_define_table_statement_repeat1, - [24211] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 1, - sym_keyword_changefeed, - ACTIONS(1161), 1, - sym_keyword_type, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1183), 1, - sym_keyword_as, - ACTIONS(1187), 1, - sym_keyword_permissions, - ACTIONS(1175), 2, - ts_builtin_sym_end, - sym_semi_colon, - ACTIONS(1207), 3, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - STATE(842), 6, - sym_permissions_for_clause, - sym_comment_clause, - sym_table_type_clause, - sym_table_view_clause, - sym_changefeed_clause, - aux_sym_define_table_statement_repeat1, - [24247] = 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [24199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 16, + ACTIONS(1210), 16, ts_builtin_sym_end, sym_semi_colon, sym_keyword_bm25, @@ -76614,10 +76633,10 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [24269] = 2, + [24221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 16, + ACTIONS(1212), 16, ts_builtin_sym_end, sym_semi_colon, sym_keyword_bm25, @@ -76634,10 +76653,10 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [24291] = 2, + [24243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 16, + ACTIONS(1214), 16, ts_builtin_sym_end, sym_semi_colon, sym_keyword_bm25, @@ -76654,52 +76673,59 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [24313] = 2, + [24265] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 16, + ACTIONS(1135), 1, + sym_keyword_changefeed, + ACTIONS(1137), 1, + sym_keyword_type, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1198), 1, + sym_keyword_as, + ACTIONS(1202), 1, + sym_keyword_permissions, + ACTIONS(1129), 2, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_bm25, - sym_keyword_doc_ids_cache, - sym_keyword_doc_ids_order, - sym_keyword_doc_lengths_cache, - sym_keyword_doc_lengths_order, - sym_keyword_postings_cache, - sym_keyword_postings_order, - sym_keyword_terms_cache, - sym_keyword_terms_order, - sym_keyword_highlights, - sym_keyword_unique, - sym_keyword_search, - anon_sym_RPAREN, - anon_sym_RBRACE, - [24335] = 4, + ACTIONS(1216), 3, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + STATE(837), 6, + sym_permissions_for_clause, + sym_comment_clause, + sym_table_type_clause, + sym_table_view_clause, + sym_changefeed_clause, + aux_sym_define_table_statement_repeat1, + [24301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1219), 2, - sym_keyword_from, - sym_keyword_in, - ACTIONS(1221), 2, - sym_keyword_out, - sym_keyword_to, - ACTIONS(1217), 12, + ACTIONS(1218), 1, + anon_sym_COMMA, + STATE(847), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1008), 14, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, + sym_keyword_out, + sym_keyword_to, sym_keyword_changefeed, sym_keyword_type, sym_keyword_permissions, sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [24361] = 2, + [24327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 16, + ACTIONS(1221), 16, ts_builtin_sym_end, sym_semi_colon, sym_keyword_bm25, @@ -76716,10 +76742,10 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [24383] = 2, + [24349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 16, + ACTIONS(1223), 16, ts_builtin_sym_end, sym_semi_colon, sym_keyword_bm25, @@ -76736,10 +76762,112 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [24405] = 2, + [24371] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + sym_keyword_changefeed, + ACTIONS(1137), 1, + sym_keyword_type, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1198), 1, + sym_keyword_as, + ACTIONS(1202), 1, + sym_keyword_permissions, + ACTIONS(1143), 2, + ts_builtin_sym_end, + sym_semi_colon, + ACTIONS(1225), 3, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + STATE(852), 6, + sym_permissions_for_clause, + sym_comment_clause, + sym_table_type_clause, + sym_table_view_clause, + sym_changefeed_clause, + aux_sym_define_table_statement_repeat1, + [24407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 2, + sym_keyword_from, + sym_keyword_in, + ACTIONS(1231), 2, + sym_keyword_out, + sym_keyword_to, + ACTIONS(1227), 12, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, + sym_keyword_permissions, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, + [24433] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + sym_keyword_changefeed, + ACTIONS(1137), 1, + sym_keyword_type, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1198), 1, + sym_keyword_as, + ACTIONS(1202), 1, + sym_keyword_permissions, + ACTIONS(1149), 2, + ts_builtin_sym_end, + sym_semi_colon, + ACTIONS(1200), 3, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + STATE(832), 6, + sym_permissions_for_clause, + sym_comment_clause, + sym_table_type_clause, + sym_table_view_clause, + sym_changefeed_clause, + aux_sym_define_table_statement_repeat1, + [24469] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(606), 1, + sym_keyword_group, + ACTIONS(624), 1, + sym_keyword_where, + ACTIONS(626), 1, + anon_sym_COMMA, + STATE(882), 1, + sym_where_clause, + STATE(888), 1, + aux_sym_update_statement_repeat1, + STATE(967), 1, + sym_group_clause, + ACTIONS(612), 10, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, + sym_keyword_permissions, + sym_keyword_comment, + [24503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 16, + ACTIONS(1233), 16, ts_builtin_sym_end, sym_semi_colon, sym_keyword_bm25, @@ -76756,56 +76884,198 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [24427] = 8, + [24525] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(614), 1, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(299), 1, + sym_keyword_fetch, + ACTIONS(301), 1, + sym_keyword_limit, + ACTIONS(311), 1, sym_keyword_group, - ACTIONS(626), 1, - sym_keyword_where, - ACTIONS(628), 1, + ACTIONS(333), 1, + sym_keyword_order, + STATE(870), 1, + sym_group_clause, + STATE(878), 1, + sym_order_clause, + STATE(950), 1, + sym_limit_clause, + STATE(996), 1, + sym_fetch_clause, + STATE(1132), 1, + sym_timeout_clause, + STATE(1221), 1, + sym_parallel_clause, + STATE(1400), 1, + sym_explain_clause, + ACTIONS(1075), 2, + ts_builtin_sym_end, + sym_semi_colon, + [24575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 15, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_value, + sym_keyword_flexible, + sym_keyword_readonly, + sym_keyword_type, + sym_keyword_default, + sym_keyword_assert, + sym_keyword_permissions, + sym_keyword_comment, anon_sym_COMMA, - STATE(877), 1, - sym_where_clause, - STATE(882), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + [24596] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(359), 1, + sym_keyword_return, + ACTIONS(363), 1, + sym_keyword_content, + ACTIONS(1239), 1, + sym_keyword_set, + ACTIONS(1241), 1, + sym_keyword_unset, + STATE(1148), 1, + sym_return_clause, + STATE(1251), 1, + sym_timeout_clause, + STATE(1424), 1, + sym_parallel_clause, + ACTIONS(1237), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(1041), 3, + sym_content_clause, + sym_set_clause, + sym_unset_clause, + [24637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1243), 1, + anon_sym_COMMA, + STATE(858), 1, aux_sym_update_statement_repeat1, - STATE(963), 1, - sym_group_clause, - ACTIONS(1167), 10, + ACTIONS(660), 13, + sym_semi_colon, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + sym_keyword_order, + sym_keyword_with, + sym_keyword_where, + sym_keyword_split, + sym_keyword_group, + anon_sym_RPAREN, + anon_sym_RBRACE, + [24662] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 15, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, + sym_keyword_out, + sym_keyword_to, sym_keyword_changefeed, sym_keyword_type, sym_keyword_permissions, sym_keyword_comment, - [24461] = 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [24683] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(299), 1, + sym_keyword_fetch, + ACTIONS(301), 1, + sym_keyword_limit, + ACTIONS(303), 1, + sym_keyword_order, + STATE(893), 1, + sym_order_clause, + STATE(974), 1, + sym_limit_clause, + STATE(1001), 1, + sym_fetch_clause, + STATE(1142), 1, + sym_timeout_clause, + STATE(1199), 1, + sym_parallel_clause, + STATE(1360), 1, + sym_explain_clause, + ACTIONS(1006), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [24728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1193), 1, + ACTIONS(1246), 15, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_value, + sym_keyword_flexible, + sym_keyword_readonly, + sym_keyword_type, + sym_keyword_default, + sym_keyword_assert, + sym_keyword_permissions, + sym_keyword_comment, anon_sym_COMMA, - STATE(838), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1231), 2, - sym_keyword_out, - sym_keyword_to, - ACTIONS(1229), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + [24749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1248), 15, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, + sym_keyword_value, + sym_keyword_flexible, + sym_keyword_readonly, sym_keyword_type, + sym_keyword_default, + sym_keyword_assert, sym_keyword_permissions, sym_keyword_comment, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [24489] = 16, + anon_sym_LT, + anon_sym_GT, + [24770] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -76818,76 +77088,46 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - ACTIONS(311), 1, - sym_keyword_group, - ACTIONS(333), 1, + ACTIONS(303), 1, sym_keyword_order, - STATE(896), 1, + STATE(891), 1, sym_order_clause, - STATE(904), 1, - sym_group_clause, - STATE(949), 1, + STATE(981), 1, sym_limit_clause, STATE(1007), 1, sym_fetch_clause, - STATE(1161), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1244), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1280), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(1042), 2, - ts_builtin_sym_end, - sym_semi_colon, - [24539] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1159), 1, - sym_keyword_changefeed, - ACTIONS(1161), 1, - sym_keyword_type, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1183), 1, - sym_keyword_as, - ACTIONS(1187), 1, - sym_keyword_permissions, - ACTIONS(1171), 2, - ts_builtin_sym_end, + ACTIONS(331), 3, sym_semi_colon, - ACTIONS(1233), 3, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - STATE(833), 6, - sym_permissions_for_clause, - sym_comment_clause, - sym_table_type_clause, - sym_table_view_clause, - sym_changefeed_clause, - aux_sym_define_table_statement_repeat1, - [24575] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [24815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, + ACTIONS(1250), 1, anon_sym_COMMA, - STATE(856), 1, + STATE(864), 1, aux_sym_update_statement_repeat1, - ACTIONS(656), 13, + ACTIONS(660), 13, sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, - sym_keyword_with, + sym_keyword_as, sym_keyword_where, - sym_keyword_split, sym_keyword_group, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, + sym_keyword_permissions, + sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [24600] = 14, + [24840] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -76902,23 +77142,23 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_limit, ACTIONS(303), 1, sym_keyword_order, - STATE(870), 1, + STATE(898), 1, sym_order_clause, - STATE(957), 1, + STATE(958), 1, sym_limit_clause, - STATE(1019), 1, + STATE(1017), 1, sym_fetch_clause, - STATE(1135), 1, + STATE(1108), 1, sym_timeout_clause, - STATE(1240), 1, + STATE(1206), 1, sym_parallel_clause, - STATE(1291), 1, + STATE(1363), 1, sym_explain_clause, - ACTIONS(1046), 3, + ACTIONS(1253), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [24645] = 14, + [24885] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -76933,81 +77173,83 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_limit, ACTIONS(303), 1, sym_keyword_order, - STATE(896), 1, + STATE(885), 1, sym_order_clause, - STATE(949), 1, + STATE(955), 1, sym_limit_clause, - STATE(1007), 1, + STATE(1018), 1, sym_fetch_clause, - STATE(1161), 1, + STATE(1158), 1, sym_timeout_clause, - STATE(1244), 1, + STATE(1239), 1, sym_parallel_clause, - STATE(1280), 1, + STATE(1418), 1, sym_explain_clause, ACTIONS(1042), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [24690] = 12, + [24930] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, ACTIONS(359), 1, + sym_keyword_return, + ACTIONS(363), 1, sym_keyword_content, - ACTIONS(1240), 1, + ACTIONS(1239), 1, sym_keyword_set, - ACTIONS(1242), 1, + ACTIONS(1241), 1, sym_keyword_unset, - STATE(1127), 1, + STATE(1126), 1, sym_return_clause, - STATE(1211), 1, + STATE(1215), 1, sym_timeout_clause, - STATE(1328), 1, + STATE(1335), 1, sym_parallel_clause, - ACTIONS(1238), 3, + ACTIONS(1255), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1046), 3, + STATE(1029), 3, sym_content_clause, sym_set_clause, sym_unset_clause, - [24731] = 12, + [24971] = 14, ACTIONS(3), 1, sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, - ACTIONS(359), 1, - sym_keyword_content, - ACTIONS(1240), 1, - sym_keyword_set, - ACTIONS(1242), 1, - sym_keyword_unset, - STATE(1131), 1, - sym_return_clause, - STATE(1205), 1, + ACTIONS(299), 1, + sym_keyword_fetch, + ACTIONS(301), 1, + sym_keyword_limit, + ACTIONS(303), 1, + sym_keyword_order, + STATE(899), 1, + sym_order_clause, + STATE(975), 1, + sym_limit_clause, + STATE(1000), 1, + sym_fetch_clause, + STATE(1154), 1, sym_timeout_clause, - STATE(1332), 1, + STATE(1224), 1, sym_parallel_clause, - ACTIONS(1244), 3, + STATE(1370), 1, + sym_explain_clause, + ACTIONS(1177), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1041), 3, - sym_content_clause, - sym_set_clause, - sym_unset_clause, - [24772] = 14, + [25016] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77022,72 +77264,113 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_limit, ACTIONS(303), 1, sym_keyword_order, - STATE(881), 1, + STATE(878), 1, sym_order_clause, - STATE(985), 1, + STATE(950), 1, sym_limit_clause, - STATE(1011), 1, + STATE(996), 1, sym_fetch_clause, - STATE(1141), 1, + STATE(1132), 1, sym_timeout_clause, - STATE(1223), 1, + STATE(1221), 1, sym_parallel_clause, - STATE(1388), 1, + STATE(1400), 1, sym_explain_clause, - ACTIONS(1006), 3, + ACTIONS(1075), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [24817] = 2, + [25061] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 15, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(299), 1, + sym_keyword_fetch, + ACTIONS(301), 1, + sym_keyword_limit, + ACTIONS(333), 1, + sym_keyword_order, + STATE(899), 1, + sym_order_clause, + STATE(975), 1, + sym_limit_clause, + STATE(1000), 1, + sym_fetch_clause, + STATE(1154), 1, + sym_timeout_clause, + STATE(1224), 1, + sym_parallel_clause, + STATE(1370), 1, + sym_explain_clause, + ACTIONS(1177), 2, + ts_builtin_sym_end, + sym_semi_colon, + [25105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1259), 1, + anon_sym_COMMA, + STATE(895), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1257), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, - sym_keyword_out, - sym_keyword_to, sym_keyword_changefeed, sym_keyword_type, sym_keyword_permissions, sym_keyword_comment, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [24838] = 2, + [25129] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1246), 15, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(299), 1, + sym_keyword_fetch, + ACTIONS(301), 1, + sym_keyword_limit, + ACTIONS(333), 1, + sym_keyword_order, + STATE(893), 1, + sym_order_clause, + STATE(974), 1, + sym_limit_clause, + STATE(1001), 1, + sym_fetch_clause, + STATE(1142), 1, + sym_timeout_clause, + STATE(1199), 1, + sym_parallel_clause, + STATE(1360), 1, + sym_explain_clause, + ACTIONS(1006), 2, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_value, - sym_keyword_flexible, - sym_keyword_readonly, - sym_keyword_type, - sym_keyword_default, - sym_keyword_assert, - sym_keyword_permissions, - sym_keyword_comment, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - [24859] = 4, + [25173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1248), 1, + ACTIONS(1259), 1, anon_sym_COMMA, - STATE(864), 1, - aux_sym_update_statement_repeat1, - ACTIONS(656), 13, + STATE(791), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1261), 12, + ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, - sym_keyword_where, - sym_keyword_group, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, @@ -77097,7 +77380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [24884] = 14, + [25197] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77110,25 +77393,22 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - ACTIONS(303), 1, - sym_keyword_order, - STATE(878), 1, - sym_order_clause, - STATE(953), 1, + STATE(981), 1, sym_limit_clause, - STATE(1009), 1, + STATE(1007), 1, sym_fetch_clause, - STATE(1145), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(291), 3, + ACTIONS(331), 4, + ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [24929] = 14, + [25237] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77141,44 +77421,24 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - ACTIONS(303), 1, + ACTIONS(333), 1, sym_keyword_order, - STATE(879), 1, + STATE(891), 1, sym_order_clause, - STATE(948), 1, + STATE(981), 1, sym_limit_clause, - STATE(1002), 1, + STATE(1007), 1, sym_fetch_clause, - STATE(1105), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1226), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1322), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(1251), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [24974] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 15, + ACTIONS(331), 2, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_value, - sym_keyword_flexible, - sym_keyword_readonly, - sym_keyword_type, - sym_keyword_default, - sym_keyword_assert, - sym_keyword_permissions, - sym_keyword_comment, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - [24995] = 14, + [25281] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77191,44 +77451,44 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - ACTIONS(303), 1, + ACTIONS(333), 1, sym_keyword_order, STATE(898), 1, sym_order_clause, - STATE(981), 1, + STATE(958), 1, sym_limit_clause, - STATE(1008), 1, + STATE(1017), 1, sym_fetch_clause, - STATE(1111), 1, + STATE(1108), 1, sym_timeout_clause, - STATE(1234), 1, + STATE(1206), 1, sym_parallel_clause, - STATE(1394), 1, + STATE(1363), 1, sym_explain_clause, - ACTIONS(1169), 3, + ACTIONS(1253), 2, + ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [25040] = 2, + [25325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 15, + ACTIONS(1259), 1, + anon_sym_COMMA, + STATE(791), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1257), 12, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_value, - sym_keyword_flexible, - sym_keyword_readonly, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, sym_keyword_type, - sym_keyword_default, - sym_keyword_assert, sym_keyword_permissions, sym_keyword_comment, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - [25061] = 12, + [25349] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77241,49 +77501,29 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - STATE(981), 1, + STATE(975), 1, sym_limit_clause, - STATE(1008), 1, + STATE(1000), 1, sym_fetch_clause, - STATE(1111), 1, + STATE(1154), 1, sym_timeout_clause, - STATE(1234), 1, + STATE(1224), 1, sym_parallel_clause, - STATE(1394), 1, + STATE(1370), 1, sym_explain_clause, - ACTIONS(1169), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [25101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - anon_sym_COMMA, - STATE(885), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1257), 12, + ACTIONS(1177), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [25125] = 4, + [25389] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - STATE(795), 1, + STATE(902), 1, aux_sym_define_user_statement_repeat1, - ACTIONS(1261), 12, + ACTIONS(1206), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -77296,12 +77536,12 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [25149] = 4, + [25413] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - STATE(795), 1, + STATE(791), 1, aux_sym_define_user_statement_repeat1, ACTIONS(1263), 12, ts_builtin_sym_end, @@ -77316,12 +77556,12 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [25173] = 4, + [25437] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - STATE(872), 1, + STATE(873), 1, aux_sym_define_user_statement_repeat1, ACTIONS(1263), 12, ts_builtin_sym_end, @@ -77336,42 +77576,14 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [25197] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(359), 1, - sym_keyword_content, - ACTIONS(406), 1, - sym_keyword_return, - ACTIONS(1265), 1, - sym_keyword_set, - ACTIONS(1267), 1, - sym_keyword_unset, - STATE(1131), 1, - sym_return_clause, - STATE(1205), 1, - sym_timeout_clause, - STATE(1332), 1, - sym_parallel_clause, - ACTIONS(1244), 2, - ts_builtin_sym_end, - sym_semi_colon, - STATE(1123), 3, - sym_content_clause, - sym_set_clause, - sym_unset_clause, - [25237] = 4, + [25461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, - anon_sym_COMMA, - STATE(795), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1269), 12, + ACTIONS(606), 1, + sym_keyword_group, + STATE(952), 1, + sym_group_clause, + ACTIONS(1175), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -77384,14 +77596,14 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [25261] = 4, + [25485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(614), 1, + ACTIONS(606), 1, sym_keyword_group, - STATE(971), 1, + STATE(967), 1, sym_group_clause, - ACTIONS(1271), 12, + ACTIONS(612), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -77404,35 +77616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [25285] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - ACTIONS(301), 1, - sym_keyword_limit, - STATE(985), 1, - sym_limit_clause, - STATE(1011), 1, - sym_fetch_clause, - STATE(1141), 1, - sym_timeout_clause, - STATE(1223), 1, - sym_parallel_clause, - STATE(1388), 1, - sym_explain_clause, - ACTIONS(1006), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [25325] = 12, + [25509] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77445,42 +77629,24 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - STATE(965), 1, + ACTIONS(333), 1, + sym_keyword_order, + STATE(878), 1, + sym_order_clause, + STATE(950), 1, sym_limit_clause, - STATE(1005), 1, + STATE(996), 1, sym_fetch_clause, - STATE(1156), 1, + STATE(1132), 1, sym_timeout_clause, - STATE(1200), 1, + STATE(1221), 1, sym_parallel_clause, - STATE(1277), 1, + STATE(1400), 1, sym_explain_clause, - ACTIONS(1273), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [25365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1275), 1, - anon_sym_COMMA, - STATE(880), 1, - aux_sym_update_statement_repeat1, - ACTIONS(656), 12, + ACTIONS(1075), 2, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, - sym_keyword_with, - sym_keyword_where, - sym_keyword_split, - sym_keyword_group, - [25389] = 12, + [25553] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77493,99 +77659,57 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - STATE(949), 1, + STATE(950), 1, sym_limit_clause, - STATE(1007), 1, + STATE(996), 1, sym_fetch_clause, - STATE(1161), 1, + STATE(1132), 1, sym_timeout_clause, - STATE(1244), 1, + STATE(1221), 1, sym_parallel_clause, - STATE(1280), 1, + STATE(1400), 1, sym_explain_clause, - ACTIONS(1042), 4, + ACTIONS(1075), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [25429] = 4, + [25593] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, - anon_sym_COMMA, - STATE(882), 1, - aux_sym_update_statement_repeat1, - ACTIONS(656), 12, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_as, - sym_keyword_where, - sym_keyword_group, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_comment, - [25453] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - anon_sym_COMMA, - STATE(876), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1281), 12, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [25477] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - ACTIONS(301), 1, - sym_keyword_limit, - ACTIONS(333), 1, - sym_keyword_order, - STATE(881), 1, - sym_order_clause, - STATE(985), 1, - sym_limit_clause, - STATE(1011), 1, - sym_fetch_clause, - STATE(1141), 1, + ACTIONS(363), 1, + sym_keyword_content, + ACTIONS(403), 1, + sym_keyword_return, + ACTIONS(1265), 1, + sym_keyword_set, + ACTIONS(1267), 1, + sym_keyword_unset, + STATE(1126), 1, + sym_return_clause, + STATE(1215), 1, sym_timeout_clause, - STATE(1223), 1, + STATE(1335), 1, sym_parallel_clause, - STATE(1388), 1, - sym_explain_clause, - ACTIONS(1006), 2, + ACTIONS(1255), 2, ts_builtin_sym_end, sym_semi_colon, - [25521] = 4, + STATE(1127), 3, + sym_content_clause, + sym_set_clause, + sym_unset_clause, + [25633] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - STATE(795), 1, + STATE(877), 1, aux_sym_define_user_statement_repeat1, - ACTIONS(1281), 12, + ACTIONS(1269), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -77598,47 +77722,19 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [25545] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - ACTIONS(301), 1, - sym_keyword_limit, - ACTIONS(333), 1, - sym_keyword_order, - STATE(878), 1, - sym_order_clause, - STATE(953), 1, - sym_limit_clause, - STATE(1009), 1, - sym_fetch_clause, - STATE(1145), 1, - sym_timeout_clause, - STATE(1225), 1, - sym_parallel_clause, - STATE(1295), 1, - sym_explain_clause, - ACTIONS(291), 2, - ts_builtin_sym_end, - sym_semi_colon, - [25589] = 4, + [25657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, + ACTIONS(1271), 1, anon_sym_COMMA, - STATE(795), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1229), 12, + STATE(888), 1, + aux_sym_update_statement_repeat1, + ACTIONS(660), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, + sym_keyword_where, + sym_keyword_group, sym_keyword_drop, sym_keyword_schemafull, sym_keyword_schemaless, @@ -77646,49 +77742,59 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_type, sym_keyword_permissions, sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [25613] = 4, + [25681] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(614), 1, - sym_keyword_group, - STATE(963), 1, - sym_group_clause, - ACTIONS(1167), 12, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [25637] = 4, + ACTIONS(35), 1, + sym_keyword_count, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + aux_sym_type_name_token1, + ACTIONS(1274), 1, + sym_keyword_only, + ACTIONS(1276), 1, + sym_variable_name, + STATE(1800), 1, + sym_object_key, + STATE(1820), 1, + sym_relate_subject, + ACTIONS(7), 3, + sym_keyword_rand, + sym_custom_function_name, + sym_function_name, + STATE(1011), 4, + sym_function_call, + sym_identifier, + sym_array, + sym_record_id, + [25717] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1283), 1, - anon_sym_COMMA, - STATE(889), 1, - aux_sym_update_statement_repeat1, - ACTIONS(656), 12, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_where, - sym_keyword_content, - sym_keyword_merge, - sym_keyword_patch, - sym_keyword_set, - sym_keyword_unset, - anon_sym_RPAREN, - anon_sym_RBRACE, - [25661] = 12, + ACTIONS(35), 1, + sym_keyword_count, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + aux_sym_type_name_token1, + ACTIONS(1276), 1, + sym_variable_name, + ACTIONS(1278), 1, + sym_keyword_only, + STATE(1800), 1, + sym_object_key, + STATE(1813), 1, + sym_relate_subject, + ACTIONS(7), 3, + sym_keyword_rand, + sym_custom_function_name, + sym_function_name, + STATE(1011), 4, + sym_function_call, + sym_identifier, + sym_array, + sym_record_id, + [25753] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77701,52 +77807,42 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - STATE(953), 1, + STATE(974), 1, sym_limit_clause, - STATE(1009), 1, + STATE(1001), 1, sym_fetch_clause, - STATE(1145), 1, + STATE(1142), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1199), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1360), 1, sym_explain_clause, - ACTIONS(291), 4, + ACTIONS(1006), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [25701] = 14, + [25793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(1280), 1, + anon_sym_COMMA, + STATE(892), 1, + aux_sym_update_statement_repeat1, + ACTIONS(660), 12, + ts_builtin_sym_end, + sym_semi_colon, sym_keyword_explain, - ACTIONS(295), 1, sym_keyword_parallel, - ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(299), 1, sym_keyword_fetch, - ACTIONS(301), 1, sym_keyword_limit, - ACTIONS(333), 1, sym_keyword_order, - STATE(898), 1, - sym_order_clause, - STATE(981), 1, - sym_limit_clause, - STATE(1008), 1, - sym_fetch_clause, - STATE(1111), 1, - sym_timeout_clause, - STATE(1234), 1, - sym_parallel_clause, - STATE(1394), 1, - sym_explain_clause, - ACTIONS(1169), 2, - ts_builtin_sym_end, - sym_semi_colon, - [25745] = 14, + sym_keyword_with, + sym_keyword_where, + sym_keyword_split, + sym_keyword_group, + [25817] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77759,57 +77855,49 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - ACTIONS(333), 1, - sym_keyword_order, - STATE(896), 1, - sym_order_clause, - STATE(949), 1, + STATE(955), 1, sym_limit_clause, - STATE(1007), 1, + STATE(1018), 1, sym_fetch_clause, - STATE(1161), 1, + STATE(1158), 1, sym_timeout_clause, - STATE(1244), 1, + STATE(1239), 1, sym_parallel_clause, - STATE(1280), 1, + STATE(1418), 1, sym_explain_clause, - ACTIONS(1042), 2, + ACTIONS(1042), 4, ts_builtin_sym_end, sym_semi_colon, - [25789] = 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + [25857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - sym_keyword_count, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - aux_sym_type_name_token1, - ACTIONS(1286), 1, - sym_keyword_only, - ACTIONS(1288), 1, - sym_variable_name, - STATE(1774), 1, - sym_object_key, - STATE(1814), 1, - sym_relate_subject, - ACTIONS(7), 3, - sym_keyword_rand, - sym_custom_function_name, - sym_function_name, - STATE(995), 4, - sym_function_call, - sym_identifier, - sym_array, - sym_record_id, - [25825] = 4, + ACTIONS(1283), 1, + anon_sym_COMMA, + STATE(894), 1, + aux_sym_update_statement_repeat1, + ACTIONS(660), 12, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_where, + sym_keyword_content, + sym_keyword_merge, + sym_keyword_patch, + sym_keyword_set, + sym_keyword_unset, + anon_sym_RPAREN, + anon_sym_RBRACE, + [25881] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - STATE(873), 1, + STATE(791), 1, aux_sym_define_user_statement_repeat1, - ACTIONS(1290), 12, + ACTIONS(1286), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -77822,27 +77910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [25849] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(662), 1, - anon_sym_COMMA, - STATE(900), 1, - aux_sym_update_statement_repeat1, - ACTIONS(1292), 12, - sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, - sym_keyword_where, - sym_keyword_split, - sym_keyword_group, - anon_sym_RPAREN, - anon_sym_RBRACE, - [25873] = 12, + [25905] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77855,22 +77923,44 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - STATE(957), 1, + ACTIONS(333), 1, + sym_keyword_order, + STATE(885), 1, + sym_order_clause, + STATE(955), 1, sym_limit_clause, - STATE(1019), 1, + STATE(1018), 1, sym_fetch_clause, - STATE(1135), 1, + STATE(1158), 1, sym_timeout_clause, - STATE(1240), 1, + STATE(1239), 1, sym_parallel_clause, - STATE(1291), 1, + STATE(1418), 1, sym_explain_clause, - ACTIONS(1046), 4, + ACTIONS(1042), 2, + ts_builtin_sym_end, + sym_semi_colon, + [25949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(606), 1, + sym_keyword_group, + STATE(972), 1, + sym_group_clause, + ACTIONS(1288), 12, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, + sym_keyword_permissions, + sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [25913] = 14, + [25973] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77883,24 +77973,22 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - ACTIONS(333), 1, - sym_keyword_order, - STATE(879), 1, - sym_order_clause, - STATE(948), 1, + STATE(971), 1, sym_limit_clause, - STATE(1002), 1, + STATE(1003), 1, sym_fetch_clause, - STATE(1105), 1, + STATE(1135), 1, sym_timeout_clause, - STATE(1226), 1, + STATE(1225), 1, sym_parallel_clause, - STATE(1322), 1, + STATE(1352), 1, sym_explain_clause, - ACTIONS(1251), 2, + ACTIONS(1290), 4, ts_builtin_sym_end, sym_semi_colon, - [25957] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + [26013] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -77913,29 +78001,29 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, ACTIONS(301), 1, sym_keyword_limit, - STATE(948), 1, + STATE(958), 1, sym_limit_clause, - STATE(1002), 1, + STATE(1017), 1, sym_fetch_clause, - STATE(1105), 1, + STATE(1108), 1, sym_timeout_clause, - STATE(1226), 1, + STATE(1206), 1, sym_parallel_clause, - STATE(1322), 1, + STATE(1363), 1, sym_explain_clause, - ACTIONS(1251), 4, + ACTIONS(1253), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [25997] = 4, + [26053] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - STATE(887), 1, + STATE(880), 1, aux_sym_define_user_statement_repeat1, - ACTIONS(1189), 12, + ACTIONS(1292), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -77948,14 +78036,14 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [26021] = 4, + [26077] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1294), 1, anon_sym_COMMA, - STATE(900), 1, + STATE(901), 1, aux_sym_update_statement_repeat1, - ACTIONS(656), 12, + ACTIONS(660), 12, sym_semi_colon, sym_keyword_explain, sym_keyword_parallel, @@ -77968,14 +78056,14 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_group, anon_sym_RPAREN, anon_sym_RBRACE, - [26045] = 4, + [26101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(614), 1, - sym_keyword_group, - STATE(983), 1, - sym_group_clause, - ACTIONS(610), 12, + ACTIONS(1259), 1, + anon_sym_COMMA, + STATE(791), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1188), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -77988,113 +78076,263 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [26069] = 12, + [26125] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(359), 1, + ACTIONS(363), 1, sym_keyword_content, - ACTIONS(406), 1, + ACTIONS(403), 1, sym_keyword_return, ACTIONS(1265), 1, sym_keyword_set, ACTIONS(1267), 1, sym_keyword_unset, - STATE(1127), 1, + STATE(1148), 1, sym_return_clause, - STATE(1211), 1, + STATE(1251), 1, sym_timeout_clause, - STATE(1328), 1, + STATE(1424), 1, sym_parallel_clause, - ACTIONS(1238), 2, + ACTIONS(1237), 2, ts_builtin_sym_end, sym_semi_colon, - STATE(1129), 3, + STATE(1153), 3, sym_content_clause, sym_set_clause, sym_unset_clause, - [26109] = 10, + [26165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - sym_keyword_count, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(47), 1, - aux_sym_type_name_token1, - ACTIONS(1288), 1, - sym_variable_name, - ACTIONS(1297), 1, - sym_keyword_only, - STATE(1774), 1, - sym_object_key, - STATE(1796), 1, - sym_relate_subject, - ACTIONS(7), 3, - sym_keyword_rand, - sym_custom_function_name, - sym_function_name, - STATE(995), 4, - sym_function_call, - sym_identifier, - sym_array, - sym_record_id, - [26145] = 14, + ACTIONS(650), 1, + anon_sym_COMMA, + STATE(901), 1, + aux_sym_update_statement_repeat1, + ACTIONS(1297), 12, + sym_semi_colon, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + sym_keyword_order, + sym_keyword_where, + sym_keyword_split, + sym_keyword_group, + anon_sym_RPAREN, + anon_sym_RBRACE, + [26189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, + ACTIONS(1299), 1, + anon_sym_COMMA, + STATE(905), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1008), 11, + ts_builtin_sym_end, + sym_semi_colon, sym_keyword_explain, - ACTIONS(295), 1, sym_keyword_parallel, - ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(299), 1, sym_keyword_fetch, - ACTIONS(301), 1, sym_keyword_limit, - ACTIONS(333), 1, sym_keyword_order, - STATE(870), 1, - sym_order_clause, - STATE(957), 1, - sym_limit_clause, - STATE(1019), 1, - sym_fetch_clause, - STATE(1135), 1, + sym_keyword_group, + anon_sym_RPAREN, + anon_sym_RBRACE, + [26212] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1304), 1, + sym_keyword_tokenizers, + ACTIONS(1306), 1, + sym_keyword_function, + ACTIONS(1308), 1, + sym_keyword_filters, + ACTIONS(1302), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(938), 5, + sym_tokenizers_clause, + sym_filters_clause, + sym_function_clause, + sym_comment_clause, + aux_sym_define_analyzer_statement_repeat1, + [26241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 13, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, + sym_keyword_permissions, + sym_keyword_for, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, + [26260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + anon_sym_LT, + ACTIONS(1312), 12, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_value, + sym_keyword_flexible, + sym_keyword_readonly, + sym_keyword_type, + sym_keyword_default, + sym_keyword_assert, + sym_keyword_permissions, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, + [26281] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 1, + sym_keyword_index, + ACTIONS(1318), 1, + sym_keyword_define, + ACTIONS(1320), 1, + sym_keyword_analyzer, + ACTIONS(1322), 1, + sym_keyword_event, + ACTIONS(1324), 1, + sym_keyword_field, + ACTIONS(1326), 1, + sym_keyword_namespace, + ACTIONS(1328), 1, + sym_keyword_scope, + ACTIONS(1330), 1, + sym_keyword_table, + ACTIONS(1332), 1, + sym_keyword_token, + ACTIONS(1334), 1, + sym_keyword_user, + ACTIONS(1336), 1, + sym_keyword_database, + STATE(1466), 1, + sym_define_param, + STATE(1480), 1, + sym_define_function, + [26324] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(359), 1, + sym_keyword_return, + ACTIONS(361), 1, + sym_keyword_where, + ACTIONS(666), 1, + anon_sym_COMMA, + STATE(1030), 1, + sym_where_clause, + STATE(1077), 1, + aux_sym_update_statement_repeat1, + STATE(1123), 1, + sym_return_clause, + STATE(1249), 1, sym_timeout_clause, - STATE(1240), 1, + STATE(1288), 1, sym_parallel_clause, - STATE(1291), 1, - sym_explain_clause, - ACTIONS(1046), 2, + ACTIONS(1338), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [26363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(668), 1, + anon_sym_COMMA, + STATE(928), 1, + aux_sym_update_statement_repeat1, + ACTIONS(1297), 11, ts_builtin_sym_end, sym_semi_colon, - [26189] = 7, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + sym_keyword_order, + sym_keyword_where, + sym_keyword_split, + sym_keyword_group, + [26386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1301), 1, - sym_keyword_session, - ACTIONS(1303), 1, - sym_keyword_signin, - ACTIONS(1305), 1, - sym_keyword_signup, - ACTIONS(1299), 4, + ACTIONS(1342), 1, + anon_sym_COMMA, + STATE(905), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1340), 11, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + sym_keyword_order, + sym_keyword_group, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(922), 5, - sym_comment_clause, - sym_session_clause, - sym_signin_clause, - sym_signup_clause, - aux_sym_define_scope_statement_repeat1, - [26218] = 9, + [26409] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 1, + anon_sym_COMMA, + STATE(905), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1344), 11, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + sym_keyword_order, + sym_keyword_group, + anon_sym_RPAREN, + anon_sym_RBRACE, + [26432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 1, + anon_sym_COMMA, + STATE(912), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1344), 11, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + sym_keyword_order, + sym_keyword_group, + anon_sym_RPAREN, + anon_sym_RBRACE, + [26455] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -78103,41 +78341,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1288), 1, + ACTIONS(1276), 1, sym_variable_name, - STATE(929), 1, - sym_relate_subject, - STATE(1738), 1, + STATE(1800), 1, sym_object_key, + STATE(1824), 1, + sym_relate_subject, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(995), 4, + STATE(1011), 4, sym_function_call, sym_identifier, sym_array, sym_record_id, - [26251] = 4, + [26488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1309), 1, - sym_keyword_for, - STATE(907), 1, - aux_sym_permissions_for_clause_repeat2, - ACTIONS(1307), 11, + ACTIONS(1346), 13, + ts_builtin_sym_end, sym_semi_colon, - sym_keyword_value, - sym_keyword_flexible, - sym_keyword_readonly, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, sym_keyword_type, - sym_keyword_default, - sym_keyword_assert, sym_keyword_permissions, + sym_keyword_for, sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [26274] = 9, + [26507] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -78146,22 +78382,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1288), 1, + ACTIONS(1276), 1, sym_variable_name, - STATE(982), 1, + STATE(980), 1, sym_relate_subject, - STATE(1738), 1, + STATE(1757), 1, sym_object_key, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(995), 4, + STATE(1011), 4, sym_function_call, sym_identifier, sym_array, sym_record_id, - [26307] = 9, + [26540] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 1, + sym_keyword_comment, + ACTIONS(1353), 1, + sym_keyword_session, + ACTIONS(1356), 1, + sym_keyword_signin, + ACTIONS(1359), 1, + sym_keyword_signup, + ACTIONS(1348), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(918), 5, + sym_comment_clause, + sym_session_clause, + sym_signin_clause, + sym_signup_clause, + aux_sym_define_scope_statement_repeat1, + [26569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + anon_sym_LT, + ACTIONS(1362), 12, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_value, + sym_keyword_flexible, + sym_keyword_readonly, + sym_keyword_type, + sym_keyword_default, + sym_keyword_assert, + sym_keyword_permissions, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, + [26590] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -78170,111 +78446,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1288), 1, + ACTIONS(1276), 1, sym_variable_name, - STATE(1774), 1, - sym_object_key, - STATE(1833), 1, + STATE(1752), 1, sym_relate_subject, + STATE(1800), 1, + sym_object_key, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(995), 4, + STATE(1011), 4, sym_function_call, sym_identifier, sym_array, sym_record_id, - [26340] = 4, + [26623] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, - anon_sym_COMMA, - STATE(941), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1312), 11, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_explain, + ACTIONS(295), 1, sym_keyword_parallel, + ACTIONS(297), 1, sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, - sym_keyword_group, - anon_sym_RPAREN, - anon_sym_RBRACE, - [26363] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1301), 1, - sym_keyword_session, - ACTIONS(1303), 1, - sym_keyword_signin, - ACTIONS(1305), 1, - sym_keyword_signup, - ACTIONS(1316), 4, - ts_builtin_sym_end, + ACTIONS(359), 1, + sym_keyword_return, + ACTIONS(361), 1, + sym_keyword_where, + ACTIONS(666), 1, + anon_sym_COMMA, + STATE(1024), 1, + sym_where_clause, + STATE(1077), 1, + aux_sym_update_statement_repeat1, + STATE(1118), 1, + sym_return_clause, + STATE(1209), 1, + sym_timeout_clause, + STATE(1328), 1, + sym_parallel_clause, + ACTIONS(664), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(905), 5, - sym_comment_clause, - sym_session_clause, - sym_signin_clause, - sym_signup_clause, - aux_sym_define_scope_statement_repeat1, - [26392] = 4, + [26662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 1, + ACTIONS(1342), 1, anon_sym_COMMA, - STATE(912), 1, - aux_sym_update_statement_repeat1, - ACTIONS(656), 11, + STATE(913), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1364), 11, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_return, + sym_keyword_explain, sym_keyword_parallel, sym_keyword_timeout, - sym_keyword_where, - sym_keyword_content, - sym_keyword_merge, - sym_keyword_patch, - sym_keyword_set, - sym_keyword_unset, - [26415] = 7, + sym_keyword_fetch, + sym_keyword_limit, + sym_keyword_order, + sym_keyword_group, + anon_sym_RPAREN, + anon_sym_RBRACE, + [26685] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1323), 1, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1304), 1, sym_keyword_tokenizers, - ACTIONS(1326), 1, + ACTIONS(1306), 1, sym_keyword_function, - ACTIONS(1329), 1, + ACTIONS(1308), 1, sym_keyword_filters, - ACTIONS(1332), 1, - sym_keyword_comment, - ACTIONS(1321), 4, + ACTIONS(1366), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(913), 5, + STATE(935), 5, sym_tokenizers_clause, sym_filters_clause, sym_function_clause, sym_comment_clause, aux_sym_define_analyzer_statement_repeat1, - [26444] = 4, + [26714] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, - anon_sym_COMMA, - STATE(937), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1312), 11, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1370), 1, + sym_keyword_session, + ACTIONS(1372), 1, + sym_keyword_signin, + ACTIONS(1374), 1, + sym_keyword_signup, + ACTIONS(1368), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(941), 5, + sym_comment_clause, + sym_session_clause, + sym_signin_clause, + sym_signup_clause, + aux_sym_define_scope_statement_repeat1, + [26743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1376), 13, ts_builtin_sym_end, sym_semi_colon, sym_keyword_explain, @@ -78283,10 +78563,12 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, sym_keyword_limit, sym_keyword_order, + sym_keyword_where, + sym_keyword_split, sym_keyword_group, anon_sym_RPAREN, anon_sym_RBRACE, - [26467] = 9, + [26762] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -78295,40 +78577,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1288), 1, + ACTIONS(1276), 1, sym_variable_name, - STATE(1742), 1, + STATE(979), 1, sym_relate_subject, - STATE(1774), 1, + STATE(1757), 1, sym_object_key, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(995), 4, + STATE(1011), 4, sym_function_call, sym_identifier, sym_array, sym_record_id, - [26500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 1, - anon_sym_LT, - ACTIONS(1335), 12, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_value, - sym_keyword_flexible, - sym_keyword_readonly, - sym_keyword_type, - sym_keyword_default, - sym_keyword_assert, - sym_keyword_permissions, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [26521] = 9, + [26795] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -78337,39 +78601,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1288), 1, + ACTIONS(1276), 1, sym_variable_name, - STATE(972), 1, - sym_relate_subject, - STATE(1738), 1, + STATE(1800), 1, sym_object_key, + STATE(1849), 1, + sym_relate_subject, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(995), 4, + STATE(1011), 4, sym_function_call, sym_identifier, sym_array, sym_record_id, - [26554] = 2, + [26828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 13, + ACTIONS(1378), 1, + anon_sym_COMMA, + STATE(928), 1, + aux_sym_update_statement_repeat1, + ACTIONS(660), 11, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_for, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [26573] = 9, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + sym_keyword_order, + sym_keyword_where, + sym_keyword_split, + sym_keyword_group, + [26851] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -78378,51 +78644,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1288), 1, + ACTIONS(1276), 1, sym_variable_name, - STATE(1774), 1, + STATE(1800), 1, sym_object_key, - STATE(1822), 1, + STATE(1861), 1, sym_relate_subject, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(995), 4, + STATE(1011), 4, sym_function_call, sym_identifier, sym_array, sym_record_id, - [26606] = 7, + [26884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1343), 1, - sym_keyword_tokenizers, - ACTIONS(1345), 1, - sym_keyword_function, - ACTIONS(1347), 1, - sym_keyword_filters, - ACTIONS(1341), 4, - ts_builtin_sym_end, + ACTIONS(1383), 1, + sym_keyword_for, + STATE(930), 1, + aux_sym_permissions_for_clause_repeat2, + ACTIONS(1381), 11, sym_semi_colon, + sym_keyword_value, + sym_keyword_flexible, + sym_keyword_readonly, + sym_keyword_type, + sym_keyword_default, + sym_keyword_assert, + sym_keyword_permissions, + sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(913), 5, - sym_tokenizers_clause, - sym_filters_clause, - sym_function_clause, - sym_comment_clause, - aux_sym_define_analyzer_statement_repeat1, - [26635] = 4, + [26907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1351), 1, + ACTIONS(1388), 1, sym_keyword_for, - STATE(907), 1, + STATE(930), 1, aux_sym_permissions_for_clause_repeat2, - ACTIONS(1349), 11, + ACTIONS(1386), 11, sym_semi_colon, sym_keyword_value, sym_keyword_flexible, @@ -78434,92 +78697,153 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [26658] = 7, + [26930] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1355), 1, + ACTIONS(1141), 1, sym_keyword_comment, - ACTIONS(1358), 1, + ACTIONS(1370), 1, sym_keyword_session, - ACTIONS(1361), 1, + ACTIONS(1372), 1, sym_keyword_signin, - ACTIONS(1364), 1, + ACTIONS(1374), 1, sym_keyword_signup, - ACTIONS(1353), 4, + ACTIONS(1390), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(922), 5, + STATE(918), 5, sym_comment_clause, sym_session_clause, sym_signin_clause, sym_signup_clause, aux_sym_define_scope_statement_repeat1, - [26687] = 4, + [26959] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1367), 1, - sym_keyword_for, - STATE(935), 1, - aux_sym_permissions_for_clause_repeat2, - ACTIONS(1349), 11, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1304), 1, + sym_keyword_tokenizers, + ACTIONS(1306), 1, + sym_keyword_function, + ACTIONS(1308), 1, + sym_keyword_filters, + ACTIONS(1392), 4, + ts_builtin_sym_end, sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(906), 5, + sym_tokenizers_clause, + sym_filters_clause, + sym_function_clause, + sym_comment_clause, + aux_sym_define_analyzer_statement_repeat1, + [26988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 13, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_value, + sym_keyword_flexible, + sym_keyword_readonly, sym_keyword_type, + sym_keyword_default, + sym_keyword_assert, sym_keyword_permissions, + sym_keyword_for, sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [26710] = 7, + [27007] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1304), 1, + sym_keyword_tokenizers, + ACTIONS(1306), 1, + sym_keyword_function, + ACTIONS(1308), 1, + sym_keyword_filters, + ACTIONS(1392), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(938), 5, + sym_tokenizers_clause, + sym_filters_clause, + sym_function_clause, + sym_comment_clause, + aux_sym_define_analyzer_statement_repeat1, + [27036] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, sym_keyword_comment, - ACTIONS(1301), 1, + ACTIONS(1370), 1, sym_keyword_session, - ACTIONS(1303), 1, + ACTIONS(1372), 1, sym_keyword_signin, - ACTIONS(1305), 1, + ACTIONS(1374), 1, sym_keyword_signup, - ACTIONS(1369), 4, + ACTIONS(1394), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(922), 5, + STATE(932), 5, sym_comment_clause, sym_session_clause, sym_signin_clause, sym_signup_clause, aux_sym_define_scope_statement_repeat1, - [26739] = 7, + [27065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(1396), 1, + sym_keyword_for, + STATE(937), 1, + aux_sym_permissions_for_clause_repeat2, + ACTIONS(1381), 11, + sym_semi_colon, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, + sym_keyword_permissions, sym_keyword_comment, - ACTIONS(1343), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [27088] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1401), 1, sym_keyword_tokenizers, - ACTIONS(1345), 1, + ACTIONS(1404), 1, sym_keyword_function, - ACTIONS(1347), 1, + ACTIONS(1407), 1, sym_keyword_filters, - ACTIONS(1371), 4, + ACTIONS(1410), 1, + sym_keyword_comment, + ACTIONS(1399), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(920), 5, + STATE(938), 5, sym_tokenizers_clause, sym_filters_clause, sym_function_clause, sym_comment_clause, aux_sym_define_analyzer_statement_repeat1, - [26768] = 9, + [27117] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -78528,49 +78852,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1288), 1, + ACTIONS(1276), 1, sym_variable_name, - STATE(942), 1, - sym_relate_subject, - STATE(1738), 1, + STATE(1800), 1, sym_object_key, + STATE(1882), 1, + sym_relate_subject, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(995), 4, + STATE(1011), 4, sym_function_call, sym_identifier, sym_array, sym_record_id, - [26801] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, - ACTIONS(357), 1, - sym_keyword_where, - ACTIONS(666), 1, - anon_sym_COMMA, - STATE(1023), 1, - aux_sym_update_statement_repeat1, - STATE(1040), 1, - sym_where_clause, - STATE(1165), 1, - sym_return_clause, - STATE(1209), 1, - sym_timeout_clause, - STATE(1350), 1, - sym_parallel_clause, - ACTIONS(670), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [26840] = 9, + [27150] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -78579,114 +78876,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1288), 1, + ACTIONS(1276), 1, sym_variable_name, - STATE(1708), 1, + STATE(943), 1, sym_relate_subject, - STATE(1774), 1, + STATE(1757), 1, sym_object_key, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(995), 4, + STATE(1011), 4, sym_function_call, sym_identifier, sym_array, sym_record_id, - [26873] = 11, + [27183] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, - ACTIONS(359), 1, - sym_keyword_content, - ACTIONS(1240), 1, - sym_keyword_set, - STATE(1160), 1, - sym_return_clause, - STATE(1252), 1, - sym_timeout_clause, - STATE(1356), 1, - sym_parallel_clause, - STATE(1027), 2, - sym_content_clause, - sym_set_clause, - ACTIONS(1373), 3, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1370), 1, + sym_keyword_session, + ACTIONS(1372), 1, + sym_keyword_signin, + ACTIONS(1374), 1, + sym_keyword_signup, + ACTIONS(1394), 4, + ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [26910] = 2, + STATE(918), 5, + sym_comment_clause, + sym_session_clause, + sym_signin_clause, + sym_signup_clause, + aux_sym_define_scope_statement_repeat1, + [27212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1375), 13, - ts_builtin_sym_end, + ACTIONS(1413), 1, + sym_keyword_for, + STATE(937), 1, + aux_sym_permissions_for_clause_repeat2, + ACTIONS(1386), 11, sym_semi_colon, - sym_keyword_value, - sym_keyword_flexible, - sym_keyword_readonly, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, sym_keyword_type, - sym_keyword_default, - sym_keyword_assert, sym_keyword_permissions, - sym_keyword_for, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [26929] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 1, sym_keyword_comment, - ACTIONS(1343), 1, - sym_keyword_tokenizers, - ACTIONS(1345), 1, - sym_keyword_function, - ACTIONS(1347), 1, - sym_keyword_filters, - ACTIONS(1377), 4, - ts_builtin_sym_end, - sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(913), 5, - sym_tokenizers_clause, - sym_filters_clause, - sym_function_clause, - sym_comment_clause, - aux_sym_define_analyzer_statement_repeat1, - [26958] = 12, + [27235] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(359), 1, sym_keyword_return, - ACTIONS(357), 1, - sym_keyword_where, - ACTIONS(666), 1, - anon_sym_COMMA, - STATE(1023), 1, - aux_sym_update_statement_repeat1, - STATE(1032), 1, - sym_where_clause, - STATE(1134), 1, + ACTIONS(363), 1, + sym_keyword_content, + ACTIONS(1239), 1, + sym_keyword_set, + STATE(1159), 1, sym_return_clause, - STATE(1238), 1, + STATE(1248), 1, sym_timeout_clause, - STATE(1319), 1, + STATE(1415), 1, sym_parallel_clause, - ACTIONS(1379), 3, + STATE(1093), 2, + sym_content_clause, + sym_set_clause, + ACTIONS(1415), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [26997] = 9, + [27272] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -78695,139 +78967,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1288), 1, + ACTIONS(1276), 1, sym_variable_name, - STATE(1774), 1, + STATE(1800), 1, sym_object_key, - STATE(1818), 1, + STATE(1850), 1, sym_relate_subject, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(995), 4, + STATE(1011), 4, sym_function_call, sym_identifier, sym_array, sym_record_id, - [27030] = 4, + [27305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1381), 1, + ACTIONS(1417), 1, anon_sym_COMMA, - STATE(934), 1, + STATE(945), 1, aux_sym_update_statement_repeat1, - ACTIONS(656), 11, + ACTIONS(660), 11, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_explain, + sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, sym_keyword_where, - sym_keyword_split, - sym_keyword_group, - [27053] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1384), 1, - sym_keyword_for, - STATE(935), 1, - aux_sym_permissions_for_clause_repeat2, - ACTIONS(1307), 11, - sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [27076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 1, - anon_sym_LT, - ACTIONS(1387), 12, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_value, - sym_keyword_flexible, - sym_keyword_readonly, - sym_keyword_type, - sym_keyword_default, - sym_keyword_assert, - sym_keyword_permissions, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [27097] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 1, - anon_sym_COMMA, - STATE(941), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1389), 11, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, - sym_keyword_group, - anon_sym_RPAREN, - anon_sym_RBRACE, - [27120] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1343), 1, - sym_keyword_tokenizers, - ACTIONS(1345), 1, - sym_keyword_function, - ACTIONS(1347), 1, - sym_keyword_filters, - ACTIONS(1341), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(931), 5, - sym_tokenizers_clause, - sym_filters_clause, - sym_function_clause, - sym_comment_clause, - aux_sym_define_analyzer_statement_repeat1, - [27149] = 2, + sym_keyword_content, + sym_keyword_merge, + sym_keyword_patch, + sym_keyword_set, + sym_keyword_unset, + [27328] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 13, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, - sym_keyword_where, - sym_keyword_split, - sym_keyword_group, - anon_sym_RPAREN, - anon_sym_RBRACE, - [27168] = 2, + ACTIONS(1316), 1, + sym_keyword_index, + ACTIONS(1318), 1, + sym_keyword_define, + ACTIONS(1320), 1, + sym_keyword_analyzer, + ACTIONS(1322), 1, + sym_keyword_event, + ACTIONS(1326), 1, + sym_keyword_namespace, + ACTIONS(1328), 1, + sym_keyword_scope, + ACTIONS(1332), 1, + sym_keyword_token, + ACTIONS(1334), 1, + sym_keyword_user, + ACTIONS(1336), 1, + sym_keyword_database, + ACTIONS(1420), 1, + sym_keyword_field, + ACTIONS(1422), 1, + sym_keyword_table, + STATE(1535), 1, + sym_define_function, + STATE(1555), 1, + sym_define_param, + [27371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 13, + ACTIONS(1310), 13, ts_builtin_sym_end, sym_semi_colon, sym_keyword_value, @@ -78841,52 +79047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [27187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1393), 1, - anon_sym_COMMA, - STATE(941), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1008), 11, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, - sym_keyword_group, - anon_sym_RPAREN, - anon_sym_RBRACE, - [27210] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, - ACTIONS(359), 1, - sym_keyword_content, - ACTIONS(1240), 1, - sym_keyword_set, - STATE(1136), 1, - sym_return_clause, - STATE(1241), 1, - sym_timeout_clause, - STATE(1315), 1, - sym_parallel_clause, - STATE(1024), 2, - sym_content_clause, - sym_set_clause, - ACTIONS(1396), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [27247] = 9, + [27390] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, @@ -78895,87 +79056,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1288), 1, + ACTIONS(1276), 1, sym_variable_name, - STATE(1774), 1, - sym_object_key, - STATE(1824), 1, + STATE(949), 1, sym_relate_subject, + STATE(1757), 1, + sym_object_key, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(995), 4, + STATE(1011), 4, sym_function_call, sym_identifier, sym_array, sym_record_id, - [27280] = 4, + [27423] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, - anon_sym_COMMA, - STATE(910), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1398), 11, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_explain, + ACTIONS(295), 1, sym_keyword_parallel, + ACTIONS(297), 1, sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, - sym_keyword_group, - anon_sym_RPAREN, - anon_sym_RBRACE, - [27303] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1301), 1, - sym_keyword_session, - ACTIONS(1303), 1, - sym_keyword_signin, - ACTIONS(1305), 1, - sym_keyword_signup, - ACTIONS(1299), 4, - ts_builtin_sym_end, + ACTIONS(359), 1, + sym_keyword_return, + ACTIONS(363), 1, + sym_keyword_content, + ACTIONS(1239), 1, + sym_keyword_set, + STATE(1133), 1, + sym_return_clause, + STATE(1223), 1, + sym_timeout_clause, + STATE(1401), 1, + sym_parallel_clause, + STATE(1033), 2, + sym_content_clause, + sym_set_clause, + ACTIONS(1424), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(924), 5, - sym_comment_clause, - sym_session_clause, - sym_signin_clause, - sym_signup_clause, - aux_sym_define_scope_statement_repeat1, - [27332] = 2, + [27460] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1375), 13, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(299), 1, + sym_keyword_fetch, + STATE(1000), 1, + sym_fetch_clause, + STATE(1154), 1, + sym_timeout_clause, + STATE(1224), 1, + sym_parallel_clause, + STATE(1370), 1, + sym_explain_clause, + ACTIONS(1177), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_for, - sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [27351] = 4, + [27494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(668), 1, + ACTIONS(1342), 1, anon_sym_COMMA, - STATE(934), 1, - aux_sym_update_statement_repeat1, - ACTIONS(1292), 11, + STATE(959), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1292), 10, ts_builtin_sym_end, sym_semi_colon, sym_keyword_explain, @@ -78984,65 +79137,54 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_fetch, sym_keyword_limit, sym_keyword_order, - sym_keyword_where, - sym_keyword_split, - sym_keyword_group, - [27374] = 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + [27516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - STATE(1005), 1, - sym_fetch_clause, - STATE(1156), 1, - sym_timeout_clause, - STATE(1200), 1, - sym_parallel_clause, - STATE(1277), 1, - sym_explain_clause, - ACTIONS(1273), 4, + ACTIONS(1288), 12, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, + sym_keyword_permissions, + sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [27408] = 10, + [27534] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - STATE(1019), 1, - sym_fetch_clause, - STATE(1135), 1, + ACTIONS(403), 1, + sym_keyword_return, + ACTIONS(405), 1, + sym_keyword_where, + ACTIONS(674), 1, + anon_sym_COMMA, + STATE(1105), 1, + aux_sym_update_statement_repeat1, + STATE(1122), 1, + sym_where_clause, + STATE(1123), 1, + sym_return_clause, + STATE(1249), 1, sym_timeout_clause, - STATE(1240), 1, + STATE(1288), 1, sym_parallel_clause, - STATE(1291), 1, - sym_explain_clause, - ACTIONS(1046), 4, + ACTIONS(1338), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [27442] = 4, + [27572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, - sym_keyword_for, - STATE(950), 1, - aux_sym_permissions_for_clause_repeat2, - ACTIONS(1307), 10, + ACTIONS(1386), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_value, @@ -79053,25 +79195,9 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_assert, sym_keyword_permissions, sym_keyword_comment, - [27464] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 1, - anon_sym_COMMA, - STATE(941), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1261), 10, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, anon_sym_RPAREN, anon_sym_RBRACE, - [27486] = 10, + [27590] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -79082,20 +79208,20 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_timeout, ACTIONS(299), 1, sym_keyword_fetch, - STATE(1009), 1, + STATE(996), 1, sym_fetch_clause, - STATE(1145), 1, + STATE(1132), 1, sym_timeout_clause, - STATE(1225), 1, + STATE(1221), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1400), 1, sym_explain_clause, - ACTIONS(291), 4, + ACTIONS(1075), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [27520] = 10, + [27624] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -79106,70 +79232,36 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_timeout, ACTIONS(299), 1, sym_keyword_fetch, - STATE(1011), 1, + STATE(1007), 1, sym_fetch_clause, - STATE(1141), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1223), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1388), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(1006), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [27554] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1044), 12, + ACTIONS(331), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_value, - sym_keyword_flexible, - sym_keyword_readonly, - sym_keyword_type, - sym_keyword_default, - sym_keyword_assert, - sym_keyword_permissions, - sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [27572] = 2, + [27658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1349), 12, + ACTIONS(1426), 12, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_value, - sym_keyword_flexible, - sym_keyword_readonly, - sym_keyword_type, - sym_keyword_default, - sym_keyword_assert, + sym_keyword_if, sym_keyword_permissions, sym_keyword_comment, + sym_keyword_session, + sym_keyword_signin, + sym_keyword_signup, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [27590] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - sym_keyword_for, - STATE(950), 1, - aux_sym_permissions_for_clause_repeat2, - ACTIONS(1349), 10, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_value, - sym_keyword_flexible, - sym_keyword_readonly, - sym_keyword_type, - sym_keyword_default, - sym_keyword_assert, - sym_keyword_permissions, - sym_keyword_comment, - [27612] = 10, + sym_custom_function_name, + [27676] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -79180,26 +79272,27 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_timeout, ACTIONS(299), 1, sym_keyword_fetch, - STATE(1008), 1, + STATE(1003), 1, sym_fetch_clause, - STATE(1111), 1, + STATE(1135), 1, sym_timeout_clause, - STATE(1234), 1, + STATE(1225), 1, sym_parallel_clause, - STATE(1394), 1, + STATE(1352), 1, sym_explain_clause, - ACTIONS(1169), 4, + ACTIONS(1290), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [27646] = 3, + [27710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 2, - sym_keyword_asc, - sym_keyword_desc, - ACTIONS(1405), 10, + ACTIONS(1342), 1, + anon_sym_COMMA, + STATE(905), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1263), 10, ts_builtin_sym_end, sym_semi_colon, sym_keyword_explain, @@ -79207,65 +79300,79 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_timeout, sym_keyword_fetch, sym_keyword_limit, - anon_sym_COMMA, + sym_keyword_order, anon_sym_RPAREN, anon_sym_RBRACE, - [27666] = 7, + [27732] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1428), 1, + sym_keyword_for, + STATE(969), 1, + aux_sym_permissions_for_clause_repeat2, + ACTIONS(1386), 10, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_value, + sym_keyword_flexible, + sym_keyword_readonly, + sym_keyword_type, + sym_keyword_default, + sym_keyword_assert, + sym_keyword_permissions, + sym_keyword_comment, + [27754] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1434), 1, sym_keyword_function, - ACTIONS(1415), 1, + ACTIONS(1436), 1, sym_keyword_param, - ACTIONS(1417), 1, + ACTIONS(1438), 1, sym_keyword_token, - ACTIONS(1419), 1, + ACTIONS(1440), 1, sym_keyword_user, - ACTIONS(1409), 3, + ACTIONS(1430), 3, sym_keyword_index, sym_keyword_event, sym_keyword_field, - ACTIONS(1411), 5, + ACTIONS(1432), 5, sym_keyword_analyzer, sym_keyword_namespace, sym_keyword_scope, sym_keyword_table, sym_keyword_database, - [27694] = 13, + [27782] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1421), 1, - sym_keyword_index, - ACTIONS(1423), 1, - sym_keyword_define, - ACTIONS(1425), 1, - sym_keyword_analyzer, - ACTIONS(1427), 1, - sym_keyword_event, - ACTIONS(1429), 1, - sym_keyword_field, - ACTIONS(1431), 1, - sym_keyword_namespace, - ACTIONS(1433), 1, - sym_keyword_scope, - ACTIONS(1435), 1, - sym_keyword_table, - ACTIONS(1437), 1, - sym_keyword_token, - ACTIONS(1439), 1, - sym_keyword_user, - STATE(1521), 1, - sym_define_param, - STATE(1543), 1, - sym_define_function, - [27734] = 4, + ACTIONS(35), 1, + sym_keyword_count, + ACTIONS(47), 1, + aux_sym_type_name_token1, + ACTIONS(1442), 1, + sym_keyword_only, + ACTIONS(1444), 1, + sym_variable_name, + STATE(857), 1, + sym_create_target, + STATE(1841), 1, + sym_object_key, + ACTIONS(7), 3, + sym_keyword_rand, + sym_custom_function_name, + sym_function_name, + STATE(998), 3, + sym_function_call, + sym_identifier, + sym_record_id, + [27814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, + ACTIONS(1342), 1, anon_sym_COMMA, - STATE(979), 1, + STATE(905), 1, aux_sym_define_user_statement_repeat1, - ACTIONS(1290), 10, + ACTIONS(1261), 10, ts_builtin_sym_end, sym_semi_colon, sym_keyword_explain, @@ -79276,56 +79383,55 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_order, anon_sym_RPAREN, anon_sym_RBRACE, - [27756] = 12, + [27836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - ACTIONS(408), 1, - sym_keyword_where, - ACTIONS(674), 1, + ACTIONS(1342), 1, anon_sym_COMMA, - STATE(1163), 1, - aux_sym_update_statement_repeat1, - STATE(1164), 1, - sym_where_clause, - STATE(1165), 1, - sym_return_clause, - STATE(1209), 1, - sym_timeout_clause, - STATE(1350), 1, - sym_parallel_clause, - ACTIONS(670), 2, - ts_builtin_sym_end, - sym_semi_colon, - [27794] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1271), 12, + STATE(963), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1263), 10, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_comment, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + sym_keyword_order, anon_sym_RPAREN, anon_sym_RBRACE, - [27812] = 4, + [27858] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + sym_keyword_count, + ACTIONS(47), 1, + aux_sym_type_name_token1, + ACTIONS(1444), 1, + sym_variable_name, + ACTIONS(1446), 1, + sym_keyword_only, + STATE(903), 1, + sym_create_target, + STATE(1841), 1, + sym_object_key, + ACTIONS(7), 3, + sym_keyword_rand, + sym_custom_function_name, + sym_function_name, + STATE(998), 3, + sym_function_call, + sym_identifier, + sym_record_id, + [27890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(1448), 1, anon_sym_GT, - ACTIONS(1443), 1, + ACTIONS(1450), 1, anon_sym_DOT_DOT, - ACTIONS(192), 10, + ACTIONS(160), 10, ts_builtin_sym_end, sym_semi_colon, sym_keyword_return, @@ -79336,38 +79442,10 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_unset, anon_sym_RPAREN, anon_sym_RBRACE, - [27834] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - STATE(999), 1, - sym_fetch_clause, - STATE(1158), 1, - sym_timeout_clause, - STATE(1208), 1, - sym_parallel_clause, - STATE(1339), 1, - sym_explain_clause, - ACTIONS(1445), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [27868] = 4, + [27912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 1, - sym_keyword_for, - STATE(966), 1, - aux_sym_permissions_for_clause_repeat2, - ACTIONS(1307), 10, + ACTIONS(1175), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -79378,49 +79456,47 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_type, sym_keyword_permissions, sym_keyword_comment, - [27890] = 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [27930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 12, + ACTIONS(1454), 2, + sym_keyword_asc, + sym_keyword_desc, + ACTIONS(1452), 10, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_as, - sym_keyword_drop, - sym_keyword_schemafull, - sym_keyword_schemaless, - sym_keyword_changefeed, - sym_keyword_type, - sym_keyword_permissions, - sym_keyword_comment, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [27908] = 9, + [27950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - sym_keyword_count, - ACTIONS(47), 1, - aux_sym_type_name_token1, - ACTIONS(1450), 1, - sym_keyword_only, - ACTIONS(1452), 1, - sym_variable_name, - STATE(859), 1, - sym_create_target, - STATE(1800), 1, - sym_object_key, - ACTIONS(7), 3, - sym_keyword_rand, - sym_custom_function_name, - sym_function_name, - STATE(1000), 3, - sym_function_call, - sym_identifier, - sym_record_id, - [27940] = 2, + ACTIONS(1456), 1, + sym_keyword_for, + STATE(969), 1, + aux_sym_permissions_for_clause_repeat2, + ACTIONS(1381), 10, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_value, + sym_keyword_flexible, + sym_keyword_readonly, + sym_keyword_type, + sym_keyword_default, + sym_keyword_assert, + sym_keyword_permissions, + sym_keyword_comment, + [27972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 12, + ACTIONS(1459), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_value, @@ -79433,26 +79509,50 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [27958] = 2, + [27990] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(299), 1, + sym_keyword_fetch, + STATE(997), 1, + sym_fetch_clause, + STATE(1138), 1, + sym_timeout_clause, + STATE(1232), 1, + sym_parallel_clause, + STATE(1333), 1, + sym_explain_clause, + ACTIONS(1461), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [28024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 12, + ACTIONS(1463), 12, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_if, + sym_keyword_as, + sym_keyword_drop, + sym_keyword_schemafull, + sym_keyword_schemaless, + sym_keyword_changefeed, + sym_keyword_type, sym_keyword_permissions, sym_keyword_comment, - sym_keyword_session, - sym_keyword_signin, - sym_keyword_signup, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - sym_custom_function_name, - [27976] = 2, + [28042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 12, + ACTIONS(1465), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -79465,78 +79565,58 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [27994] = 11, + [28060] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(359), 1, - sym_keyword_content, - ACTIONS(406), 1, - sym_keyword_return, - ACTIONS(1265), 1, - sym_keyword_set, - STATE(1136), 1, - sym_return_clause, - STATE(1241), 1, + ACTIONS(299), 1, + sym_keyword_fetch, + STATE(1018), 1, + sym_fetch_clause, + STATE(1158), 1, sym_timeout_clause, - STATE(1315), 1, + STATE(1239), 1, sym_parallel_clause, - ACTIONS(1396), 2, + STATE(1418), 1, + sym_explain_clause, + ACTIONS(1042), 4, ts_builtin_sym_end, sym_semi_colon, - STATE(1137), 2, - sym_content_clause, - sym_set_clause, - [28030] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 1, - sym_keyword_index, - ACTIONS(1423), 1, - sym_keyword_define, - ACTIONS(1425), 1, - sym_keyword_analyzer, - ACTIONS(1427), 1, - sym_keyword_event, - ACTIONS(1431), 1, - sym_keyword_namespace, - ACTIONS(1433), 1, - sym_keyword_scope, - ACTIONS(1437), 1, - sym_keyword_token, - ACTIONS(1439), 1, - sym_keyword_user, - ACTIONS(1460), 1, - sym_keyword_field, - ACTIONS(1462), 1, - sym_keyword_table, - STATE(1465), 1, - sym_define_function, - STATE(1537), 1, - sym_define_param, - [28070] = 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [28094] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 12, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(299), 1, + sym_keyword_fetch, + STATE(1017), 1, + sym_fetch_clause, + STATE(1108), 1, + sym_timeout_clause, + STATE(1206), 1, + sym_parallel_clause, + STATE(1363), 1, + sym_explain_clause, + ACTIONS(1253), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_if, - sym_keyword_permissions, - sym_keyword_comment, - sym_keyword_session, - sym_keyword_signin, - sym_keyword_signup, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - sym_custom_function_name, - [28088] = 2, + [28128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1466), 12, + ACTIONS(1227), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -79549,10 +79629,10 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [28106] = 2, + [28146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 12, + ACTIONS(1386), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -79565,28 +79645,14 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [28124] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 1, - anon_sym_COMMA, - STATE(951), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1263), 10, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, - anon_sym_RPAREN, - anon_sym_RBRACE, - [28146] = 2, + [28164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1349), 12, + ACTIONS(1467), 1, + sym_keyword_for, + STATE(982), 1, + aux_sym_permissions_for_clause_repeat2, + ACTIONS(1386), 10, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -79597,34 +79663,88 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_type, sym_keyword_permissions, sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [28164] = 4, + [28186] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 1, - anon_sym_COMMA, - STATE(941), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1263), 10, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(363), 1, + sym_keyword_content, + ACTIONS(403), 1, + sym_keyword_return, + ACTIONS(1265), 1, + sym_keyword_set, + STATE(1159), 1, + sym_return_clause, + STATE(1248), 1, + sym_timeout_clause, + STATE(1415), 1, + sym_parallel_clause, + ACTIONS(1415), 2, + ts_builtin_sym_end, + sym_semi_colon, + STATE(1131), 2, + sym_content_clause, + sym_set_clause, + [28222] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(363), 1, + sym_keyword_content, + ACTIONS(403), 1, + sym_keyword_return, + ACTIONS(1265), 1, + sym_keyword_set, + STATE(1133), 1, + sym_return_clause, + STATE(1223), 1, + sym_timeout_clause, + STATE(1401), 1, + sym_parallel_clause, + ACTIONS(1424), 2, ts_builtin_sym_end, sym_semi_colon, + STATE(1134), 2, + sym_content_clause, + sym_set_clause, + [28258] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, sym_keyword_explain, + ACTIONS(295), 1, sym_keyword_parallel, + ACTIONS(297), 1, sym_keyword_timeout, + ACTIONS(299), 1, sym_keyword_fetch, - sym_keyword_limit, - sym_keyword_order, + STATE(1001), 1, + sym_fetch_clause, + STATE(1142), 1, + sym_timeout_clause, + STATE(1199), 1, + sym_parallel_clause, + STATE(1360), 1, + sym_explain_clause, + ACTIONS(1006), 4, + ts_builtin_sym_end, + sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [28186] = 4, + [28292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 1, + ACTIONS(1469), 1, sym_keyword_for, - STATE(966), 1, + STATE(982), 1, aux_sym_permissions_for_clause_repeat2, - ACTIONS(1349), 10, + ACTIONS(1381), 10, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -79635,59 +79755,68 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_type, sym_keyword_permissions, sym_keyword_comment, - [28208] = 10, + [28314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - STATE(1002), 1, - sym_fetch_clause, - STATE(1105), 1, - sym_timeout_clause, - STATE(1226), 1, - sym_parallel_clause, - STATE(1322), 1, - sym_explain_clause, - ACTIONS(1251), 4, + ACTIONS(1472), 12, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_if, + sym_keyword_permissions, + sym_keyword_comment, + sym_keyword_session, + sym_keyword_signin, + sym_keyword_signup, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [28242] = 11, + sym_custom_function_name, + [28332] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(359), 1, - sym_keyword_content, - ACTIONS(406), 1, + ACTIONS(403), 1, sym_keyword_return, - ACTIONS(1265), 1, - sym_keyword_set, - STATE(1160), 1, + ACTIONS(405), 1, + sym_keyword_where, + ACTIONS(674), 1, + anon_sym_COMMA, + STATE(1105), 1, + aux_sym_update_statement_repeat1, + STATE(1118), 1, sym_return_clause, - STATE(1252), 1, + STATE(1124), 1, + sym_where_clause, + STATE(1209), 1, sym_timeout_clause, - STATE(1356), 1, + STATE(1328), 1, sym_parallel_clause, - ACTIONS(1373), 2, + ACTIONS(664), 2, ts_builtin_sym_end, sym_semi_colon, - STATE(1159), 2, - sym_content_clause, - sym_set_clause, - [28278] = 2, + [28370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1044), 12, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_value, + sym_keyword_flexible, + sym_keyword_readonly, + sym_keyword_type, + sym_keyword_default, + sym_keyword_assert, + sym_keyword_permissions, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, + [28388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 12, + ACTIONS(612), 12, ts_builtin_sym_end, sym_semi_colon, sym_keyword_as, @@ -79700,150 +79829,115 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [28296] = 9, + [28406] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, sym_keyword_count, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1452), 1, + ACTIONS(1444), 1, sym_variable_name, - ACTIONS(1470), 1, - sym_keyword_only, - STATE(902), 1, + STATE(886), 1, sym_create_target, - STATE(1800), 1, + STATE(1841), 1, sym_object_key, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(1000), 3, + STATE(998), 3, sym_function_call, sym_identifier, sym_record_id, - [28328] = 10, + [28435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(299), 1, - sym_keyword_fetch, - STATE(1007), 1, - sym_fetch_clause, - STATE(1161), 1, - sym_timeout_clause, - STATE(1244), 1, - sym_parallel_clause, - STATE(1280), 1, - sym_explain_clause, - ACTIONS(1042), 4, + ACTIONS(1474), 1, + anon_sym_GT, + ACTIONS(1476), 1, + anon_sym_DOT_DOT, + ACTIONS(160), 9, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_content, + sym_keyword_set, anon_sym_RPAREN, anon_sym_RBRACE, - [28362] = 12, + [28456] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(406), 1, + ACTIONS(359), 1, sym_keyword_return, - ACTIONS(408), 1, + ACTIONS(361), 1, sym_keyword_where, - ACTIONS(674), 1, - anon_sym_COMMA, - STATE(1134), 1, - sym_return_clause, - STATE(1138), 1, + STATE(1037), 1, sym_where_clause, - STATE(1163), 1, - aux_sym_update_statement_repeat1, - STATE(1238), 1, + STATE(1120), 1, + sym_return_clause, + STATE(1246), 1, sym_timeout_clause, - STATE(1319), 1, + STATE(1290), 1, sym_parallel_clause, - ACTIONS(1379), 2, - ts_builtin_sym_end, + ACTIONS(1016), 3, sym_semi_colon, - [28400] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [28489] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, sym_keyword_count, ACTIONS(47), 1, aux_sym_type_name_token1, - ACTIONS(1452), 1, + ACTIONS(1444), 1, sym_variable_name, - STATE(875), 1, + STATE(867), 1, sym_create_target, - STATE(1800), 1, + STATE(1841), 1, sym_object_key, ACTIONS(7), 3, sym_keyword_rand, sym_custom_function_name, sym_function_name, - STATE(1000), 3, + STATE(998), 3, sym_function_call, sym_identifier, sym_record_id, - [28429] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, - ACTIONS(357), 1, - sym_keyword_where, - STATE(1038), 1, - sym_where_clause, - STATE(1147), 1, - sym_return_clause, - STATE(1210), 1, - sym_timeout_clause, - STATE(1362), 1, - sym_parallel_clause, - ACTIONS(371), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [28462] = 10, + [28518] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(359), 1, sym_keyword_return, - ACTIONS(357), 1, + ACTIONS(361), 1, sym_keyword_where, - STATE(1031), 1, + STATE(1047), 1, sym_where_clause, - STATE(1139), 1, + STATE(1112), 1, sym_return_clause, - STATE(1201), 1, + STATE(1207), 1, sym_timeout_clause, - STATE(1314), 1, + STATE(1321), 1, sym_parallel_clause, - ACTIONS(1016), 3, + ACTIONS(375), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [28495] = 2, + [28551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1472), 11, + ACTIONS(1478), 11, sym_keyword_jwks, sym_keyword_eddsa, sym_keyword_es256, @@ -79855,101 +79949,33 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_rs256, sym_keyword_rs384, sym_keyword_rs512, - [28512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1474), 1, - anon_sym_GT, - ACTIONS(1476), 1, - anon_sym_DOT_DOT, - ACTIONS(192), 9, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_content, - sym_keyword_set, - anon_sym_RPAREN, - anon_sym_RBRACE, - [28533] = 10, + [28568] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(359), 1, sym_keyword_return, - ACTIONS(357), 1, + ACTIONS(361), 1, sym_keyword_where, - STATE(1029), 1, + STATE(1081), 1, sym_where_clause, - STATE(1149), 1, + STATE(1140), 1, sym_return_clause, - STATE(1236), 1, + STATE(1234), 1, sym_timeout_clause, - STATE(1387), 1, + STATE(1345), 1, sym_parallel_clause, - ACTIONS(1478), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [28566] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - sym_keyword_count, - ACTIONS(47), 1, - aux_sym_type_name_token1, - ACTIONS(1452), 1, - sym_variable_name, - STATE(860), 1, - sym_create_target, - STATE(1800), 1, - sym_object_key, - ACTIONS(7), 3, - sym_keyword_rand, - sym_custom_function_name, - sym_function_name, - STATE(1000), 3, - sym_function_call, - sym_identifier, - sym_record_id, - [28595] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1482), 1, - anon_sym_COMMA, - STATE(994), 1, - aux_sym_tokenizers_clause_repeat1, - ACTIONS(1480), 8, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [28615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1485), 10, - ts_builtin_sym_end, + ACTIONS(1480), 3, sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_content, - sym_keyword_set, - anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_RBRACE, - [28631] = 2, + [28601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 10, + ACTIONS(1452), 10, ts_builtin_sym_end, sym_semi_colon, sym_keyword_explain, @@ -79960,51 +79986,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [28647] = 10, + [28617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - ACTIONS(408), 1, - sym_keyword_where, - STATE(1147), 1, - sym_return_clause, - STATE(1162), 1, - sym_where_clause, - STATE(1210), 1, - sym_timeout_clause, - STATE(1362), 1, - sym_parallel_clause, - ACTIONS(371), 2, + ACTIONS(1484), 1, + anon_sym_COMMA, + STATE(1004), 1, + aux_sym_tokenizers_clause_repeat1, + ACTIONS(1482), 8, ts_builtin_sym_end, sym_semi_colon, - [28679] = 10, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, + [28637] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - ACTIONS(408), 1, - sym_keyword_where, - STATE(1142), 1, - sym_where_clause, - STATE(1149), 1, - sym_return_clause, - STATE(1236), 1, + STATE(1154), 1, sym_timeout_clause, - STATE(1387), 1, + STATE(1224), 1, sym_parallel_clause, - ACTIONS(1478), 2, + STATE(1370), 1, + sym_explain_clause, + ACTIONS(1177), 4, ts_builtin_sym_end, sym_semi_colon, - [28711] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [28665] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -80013,21 +80031,21 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1116), 1, + STATE(1144), 1, sym_timeout_clause, - STATE(1204), 1, + STATE(1241), 1, sym_parallel_clause, - STATE(1326), 1, + STATE(1315), 1, sym_explain_clause, - ACTIONS(1489), 4, + ACTIONS(1486), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [28739] = 2, + [28693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 10, + ACTIONS(1488), 10, ts_builtin_sym_end, sym_semi_colon, sym_keyword_return, @@ -80038,29 +80056,29 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_unset, anon_sym_RPAREN, anon_sym_RBRACE, - [28755] = 10, + [28709] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(406), 1, + ACTIONS(403), 1, sym_keyword_return, - ACTIONS(408), 1, + ACTIONS(405), 1, sym_keyword_where, - STATE(1139), 1, - sym_return_clause, STATE(1140), 1, + sym_return_clause, + STATE(1141), 1, sym_where_clause, - STATE(1201), 1, + STATE(1234), 1, sym_timeout_clause, - STATE(1314), 1, + STATE(1345), 1, sym_parallel_clause, - ACTIONS(1016), 2, + ACTIONS(1480), 2, ts_builtin_sym_end, sym_semi_colon, - [28787] = 8, + [28741] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -80069,50 +80087,18 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1156), 1, + STATE(1108), 1, sym_timeout_clause, - STATE(1200), 1, + STATE(1206), 1, sym_parallel_clause, - STATE(1277), 1, + STATE(1363), 1, sym_explain_clause, - ACTIONS(1273), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [28815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 1, - anon_sym_COMMA, - STATE(994), 1, - aux_sym_tokenizers_clause_repeat1, - ACTIONS(1493), 8, + ACTIONS(1253), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [28835] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 1, - anon_sym_COMMA, - STATE(1021), 1, - aux_sym_order_clause_repeat1, - ACTIONS(1497), 8, - sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, anon_sym_RPAREN, anon_sym_RBRACE, - [28855] = 8, + [28769] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -80123,23 +80109,23 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_timeout, STATE(1158), 1, sym_timeout_clause, - STATE(1208), 1, + STATE(1239), 1, sym_parallel_clause, - STATE(1339), 1, + STATE(1418), 1, sym_explain_clause, - ACTIONS(1445), 4, + ACTIONS(1042), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [28883] = 4, + [28797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 1, + ACTIONS(1492), 1, anon_sym_COMMA, STATE(1020), 1, aux_sym_order_clause_repeat1, - ACTIONS(1497), 8, + ACTIONS(1490), 8, sym_semi_colon, sym_keyword_explain, sym_keyword_parallel, @@ -80148,7 +80134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_limit, anon_sym_RPAREN, anon_sym_RBRACE, - [28903] = 8, + [28817] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -80157,65 +80143,57 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1135), 1, + STATE(1138), 1, sym_timeout_clause, - STATE(1240), 1, + STATE(1232), 1, sym_parallel_clause, - STATE(1291), 1, + STATE(1333), 1, sym_explain_clause, - ACTIONS(1046), 4, + ACTIONS(1461), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [28931] = 8, + [28845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - STATE(1105), 1, - sym_timeout_clause, - STATE(1226), 1, - sym_parallel_clause, - STATE(1322), 1, - sym_explain_clause, - ACTIONS(1251), 4, + ACTIONS(1484), 1, + anon_sym_COMMA, + STATE(1015), 1, + aux_sym_tokenizers_clause_repeat1, + ACTIONS(1494), 8, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [28959] = 8, + [28865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - STATE(1141), 1, - sym_timeout_clause, - STATE(1223), 1, - sym_parallel_clause, - STATE(1388), 1, - sym_explain_clause, - ACTIONS(1006), 4, + ACTIONS(1498), 1, + anon_sym_COMMA, + STATE(1006), 1, + aux_sym_filters_clause_repeat1, + ACTIONS(1496), 8, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [28987] = 4, + [28885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 1, + ACTIONS(1498), 1, anon_sym_COMMA, - STATE(1012), 1, + STATE(1016), 1, aux_sym_filters_clause_repeat1, - ACTIONS(1501), 8, + ACTIONS(1500), 8, ts_builtin_sym_end, sym_semi_colon, sym_keyword_tokenizers, @@ -80224,7 +80202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [29007] = 8, + [28905] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -80233,73 +80211,41 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1161), 1, + STATE(1142), 1, sym_timeout_clause, - STATE(1244), 1, + STATE(1199), 1, sym_parallel_clause, - STATE(1280), 1, + STATE(1360), 1, sym_explain_clause, - ACTIONS(1042), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [29035] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 1, - anon_sym_COMMA, - STATE(1012), 1, - aux_sym_filters_clause_repeat1, - ACTIONS(1505), 8, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [29055] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 1, - anon_sym_COMMA, - STATE(1010), 1, - aux_sym_filters_clause_repeat1, - ACTIONS(1510), 8, + ACTIONS(1006), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [29075] = 4, + [28933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 1, + ACTIONS(1504), 1, anon_sym_COMMA, - STATE(1003), 1, - aux_sym_tokenizers_clause_repeat1, - ACTIONS(1512), 8, - ts_builtin_sym_end, + STATE(1008), 1, + aux_sym_order_clause_repeat1, + ACTIONS(1502), 8, sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, anon_sym_RPAREN, anon_sym_RBRACE, - [29095] = 4, + [28953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 1, + ACTIONS(1492), 1, anon_sym_COMMA, - STATE(1006), 1, + STATE(1008), 1, aux_sym_order_clause_repeat1, - ACTIONS(1514), 8, + ACTIONS(1507), 8, sym_semi_colon, sym_keyword_explain, sym_keyword_parallel, @@ -80308,44 +80254,40 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_limit, anon_sym_RPAREN, anon_sym_RBRACE, - [29115] = 2, + [28973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1405), 10, - ts_builtin_sym_end, + ACTIONS(1492), 1, + anon_sym_COMMA, + STATE(1009), 1, + aux_sym_order_clause_repeat1, + ACTIONS(1509), 8, sym_semi_colon, sym_keyword_explain, sym_keyword_parallel, sym_keyword_timeout, sym_keyword_fetch, sym_keyword_limit, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [29131] = 8, + [28993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - STATE(1145), 1, - sym_timeout_clause, - STATE(1225), 1, - sym_parallel_clause, - STATE(1295), 1, - sym_explain_clause, - ACTIONS(291), 4, + ACTIONS(1511), 10, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_content, + sym_keyword_set, + anon_sym_DASH_GT, anon_sym_RPAREN, anon_sym_RBRACE, - [29159] = 2, + [29009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 10, + ACTIONS(1513), 10, ts_builtin_sym_end, sym_semi_colon, sym_keyword_explain, @@ -80356,7 +80298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [29175] = 8, + [29025] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, @@ -80365,686 +80307,672 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1111), 1, + STATE(1109), 1, sym_timeout_clause, - STATE(1234), 1, + STATE(1203), 1, sym_parallel_clause, - STATE(1394), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(1169), 4, + ACTIONS(331), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [29203] = 4, + [29053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1518), 1, - anon_sym_COMMA, - STATE(1020), 1, - aux_sym_order_clause_repeat1, - ACTIONS(1487), 8, + ACTIONS(1502), 10, + ts_builtin_sym_end, sym_semi_colon, sym_keyword_explain, sym_keyword_parallel, sym_keyword_timeout, sym_keyword_fetch, sym_keyword_limit, - anon_sym_RPAREN, - anon_sym_RBRACE, - [29223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 1, anon_sym_COMMA, - STATE(1020), 1, - aux_sym_order_clause_repeat1, - ACTIONS(1521), 8, - sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, anon_sym_RPAREN, anon_sym_RBRACE, - [29243] = 5, + [29069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, - sym_keyword_unique, - ACTIONS(1527), 1, - sym_keyword_search, - STATE(1080), 3, - sym_unique_clause, - sym_search_analyzer_clause, - aux_sym_define_index_statement_repeat1, - ACTIONS(1523), 4, + ACTIONS(1517), 1, + anon_sym_COMMA, + STATE(1015), 1, + aux_sym_tokenizers_clause_repeat1, + ACTIONS(1515), 8, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [29264] = 4, + [29089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 1, + ACTIONS(1522), 1, anon_sym_COMMA, - STATE(1023), 1, - aux_sym_update_statement_repeat1, - ACTIONS(656), 7, + STATE(1016), 1, + aux_sym_filters_clause_repeat1, + ACTIONS(1520), 8, + ts_builtin_sym_end, sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_where, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [29283] = 8, + [29109] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, - STATE(1112), 1, - sym_return_clause, - STATE(1235), 1, + STATE(1135), 1, sym_timeout_clause, - STATE(1276), 1, + STATE(1225), 1, sym_parallel_clause, - ACTIONS(1532), 3, + STATE(1352), 1, + sym_explain_clause, + ACTIONS(1290), 4, + ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [29310] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_DOT_DOT, - STATE(33), 1, - sym_record_id_range, - STATE(336), 1, - sym_record_id_value, - ACTIONS(347), 2, - sym_int, - sym_record_id_ident, - STATE(16), 2, - sym_array, - sym_object, - [29337] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(349), 1, - anon_sym_LBRACE, - ACTIONS(880), 1, - anon_sym_LBRACK, - ACTIONS(1536), 1, - anon_sym_DOT_DOT, - STATE(121), 1, - sym_record_id_range, - STATE(331), 1, - sym_record_id_value, - ACTIONS(351), 2, - sym_int, - sym_record_id_ident, - STATE(94), 2, - sym_array, - sym_object, - [29364] = 8, + [29137] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, - STATE(1136), 1, - sym_return_clause, - STATE(1241), 1, + STATE(1132), 1, sym_timeout_clause, - STATE(1315), 1, + STATE(1221), 1, sym_parallel_clause, - ACTIONS(1396), 3, + STATE(1400), 1, + sym_explain_clause, + ACTIONS(1075), 4, + ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [29391] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(936), 1, - anon_sym_LBRACK, - ACTIONS(1538), 1, - anon_sym_DOT_DOT, - STATE(316), 1, - sym_record_id_range, - STATE(369), 1, - sym_record_id_value, - ACTIONS(395), 2, - sym_int, - sym_record_id_ident, - STATE(232), 2, - sym_array, - sym_object, - [29418] = 8, + [29165] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(403), 1, sym_keyword_return, - STATE(1132), 1, + ACTIONS(405), 1, + sym_keyword_where, + STATE(1119), 1, + sym_where_clause, + STATE(1120), 1, sym_return_clause, - STATE(1221), 1, + STATE(1246), 1, sym_timeout_clause, - STATE(1385), 1, + STATE(1290), 1, sym_parallel_clause, - ACTIONS(1540), 3, + ACTIONS(1016), 2, + ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [29445] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(1542), 1, - anon_sym_DOT_DOT, - STATE(33), 1, - sym_record_id_range, - STATE(499), 1, - sym_record_id_value, - ACTIONS(347), 2, - sym_int, - sym_record_id_ident, - STATE(16), 2, - sym_array, - sym_object, - [29472] = 8, + [29197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(1492), 1, + anon_sym_COMMA, + STATE(1008), 1, + aux_sym_order_clause_repeat1, + ACTIONS(1509), 8, + sym_semi_colon, + sym_keyword_explain, sym_keyword_parallel, - ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, - STATE(1149), 1, - sym_return_clause, - STATE(1236), 1, - sym_timeout_clause, - STATE(1387), 1, - sym_parallel_clause, - ACTIONS(1478), 3, - sym_semi_colon, + sym_keyword_fetch, + sym_keyword_limit, anon_sym_RPAREN, anon_sym_RBRACE, - [29499] = 8, + [29217] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(403), 1, sym_keyword_return, - STATE(1154), 1, + ACTIONS(405), 1, + sym_keyword_where, + STATE(1107), 1, + sym_where_clause, + STATE(1112), 1, sym_return_clause, - STATE(1239), 1, + STATE(1207), 1, sym_timeout_clause, - STATE(1380), 1, + STATE(1321), 1, sym_parallel_clause, - ACTIONS(1544), 3, + ACTIONS(375), 2, + ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [29526] = 2, + [29249] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1480), 9, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - [29541] = 8, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1525), 1, + anon_sym_DOT_DOT, + STATE(24), 1, + sym_record_id_range, + STATE(305), 1, + sym_record_id_value, + ACTIONS(343), 2, + sym_int, + sym_record_id_ident, + STATE(9), 2, + sym_array, + sym_object, + [29276] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(345), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(1546), 1, + ACTIONS(1527), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(294), 1, sym_record_id_range, - STATE(343), 1, + STATE(364), 1, sym_record_id_value, ACTIONS(347), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(266), 2, sym_array, sym_object, - [29568] = 8, + [29303] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(359), 1, + sym_keyword_return, + STATE(1123), 1, + sym_return_clause, + STATE(1249), 1, + sym_timeout_clause, + STATE(1288), 1, + sym_parallel_clause, + ACTIONS(1338), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [29330] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(1548), 1, + ACTIONS(1529), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(24), 1, sym_record_id_range, - STATE(259), 1, + STATE(503), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(9), 2, sym_array, sym_object, - [29595] = 8, + [29357] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(1550), 1, + ACTIONS(1531), 1, anon_sym_DOT_DOT, - STATE(46), 1, + STATE(47), 1, sym_record_id_range, - STATE(367), 1, + STATE(485), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(41), 2, sym_array, sym_object, - [29622] = 8, + [29384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, + ACTIONS(1533), 9, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [29399] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(1552), 1, + ACTIONS(1535), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(24), 1, sym_record_id_range, - STATE(503), 1, + STATE(351), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(9), 2, sym_array, sym_object, - [29649] = 8, + [29426] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(359), 1, + sym_keyword_return, + STATE(1129), 1, + sym_return_clause, + STATE(1236), 1, + sym_timeout_clause, + STATE(1287), 1, + sym_parallel_clause, + ACTIONS(1537), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [29453] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(359), 1, sym_keyword_return, STATE(1139), 1, sym_return_clause, - STATE(1201), 1, + STATE(1233), 1, sym_timeout_clause, - STATE(1314), 1, + STATE(1344), 1, sym_parallel_clause, - ACTIONS(1016), 3, + ACTIONS(1539), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [29676] = 8, + [29480] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(1554), 1, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1541), 1, anon_sym_DOT_DOT, - STATE(46), 1, + STATE(24), 1, sym_record_id_range, - STATE(501), 1, + STATE(269), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(9), 2, sym_array, sym_object, - [29703] = 8, + [29507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(355), 1, - sym_keyword_return, - STATE(1134), 1, - sym_return_clause, - STATE(1238), 1, - sym_timeout_clause, - STATE(1319), 1, - sym_parallel_clause, - ACTIONS(1379), 3, + ACTIONS(1543), 9, + ts_builtin_sym_end, sym_semi_colon, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [29730] = 8, + [29522] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(359), 1, sym_keyword_return, - STATE(1130), 1, + STATE(1150), 1, sym_return_clause, - STATE(1245), 1, + STATE(1211), 1, sym_timeout_clause, - STATE(1334), 1, + STATE(1371), 1, sym_parallel_clause, - ACTIONS(1556), 3, + ACTIONS(1545), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [29757] = 8, + [29549] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(393), 1, - anon_sym_LBRACE, - ACTIONS(936), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1558), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1547), 1, anon_sym_DOT_DOT, - STATE(316), 1, + STATE(47), 1, sym_record_id_range, - STATE(374), 1, + STATE(332), 1, sym_record_id_value, - ACTIONS(395), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(232), 2, + STATE(41), 2, sym_array, sym_object, - [29784] = 8, + [29576] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(393), 1, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(936), 1, + ACTIONS(200), 1, + anon_sym_DASH_GT, + ACTIONS(1127), 1, + anon_sym_EQ, + STATE(46), 1, + sym_record_id_value, + ACTIONS(426), 2, + sym_int, + sym_record_id_ident, + STATE(41), 2, + sym_array, + sym_object, + [29603] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1560), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1549), 1, anon_sym_DOT_DOT, - STATE(315), 1, - sym_record_id_value, - STATE(316), 1, + STATE(47), 1, sym_record_id_range, - ACTIONS(395), 2, + STATE(372), 1, + sym_record_id_value, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(232), 2, + STATE(41), 2, sym_array, sym_object, - [29811] = 8, + [29630] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(359), 1, sym_keyword_return, - STATE(1147), 1, + STATE(1140), 1, sym_return_clause, - STATE(1210), 1, + STATE(1234), 1, sym_timeout_clause, - STATE(1362), 1, + STATE(1345), 1, sym_parallel_clause, - ACTIONS(371), 3, + ACTIONS(1480), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [29838] = 8, + [29657] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(359), 1, sym_keyword_return, - STATE(1165), 1, + STATE(1112), 1, sym_return_clause, - STATE(1209), 1, + STATE(1207), 1, sym_timeout_clause, - STATE(1350), 1, + STATE(1321), 1, sym_parallel_clause, - ACTIONS(670), 3, + ACTIONS(375), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [29865] = 8, + [29684] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(355), 1, + ACTIONS(359), 1, sym_keyword_return, - STATE(1131), 1, + STATE(1118), 1, sym_return_clause, - STATE(1205), 1, + STATE(1209), 1, sym_timeout_clause, - STATE(1332), 1, + STATE(1328), 1, sym_parallel_clause, - ACTIONS(1244), 3, + ACTIONS(664), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [29892] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(373), 1, - anon_sym_LBRACE, - ACTIONS(561), 1, - anon_sym_LBRACK, - ACTIONS(1562), 1, - anon_sym_DOT_DOT, - STATE(275), 1, - sym_record_id_range, - STATE(299), 1, - sym_record_id_value, - ACTIONS(375), 2, - sym_int, - sym_record_id_ident, - STATE(244), 2, - sym_array, - sym_object, - [29919] = 8, + [29711] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(349), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(880), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(1564), 1, + ACTIONS(1551), 1, anon_sym_DOT_DOT, - STATE(121), 1, + STATE(24), 1, sym_record_id_range, - STATE(376), 1, + STATE(500), 1, sym_record_id_value, - ACTIONS(351), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(94), 2, + STATE(9), 2, sym_array, sym_object, - [29946] = 8, + [29738] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, - anon_sym_LBRACK, - ACTIONS(1566), 1, - anon_sym_DOT_DOT, - STATE(348), 1, - sym_record_id_range, - STATE(350), 1, - sym_record_id_value, - ACTIONS(379), 2, - sym_int, - sym_record_id_ident, - STATE(300), 2, - sym_array, - sym_object, - [29973] = 8, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(359), 1, + sym_keyword_return, + STATE(1126), 1, + sym_return_clause, + STATE(1215), 1, + sym_timeout_clause, + STATE(1335), 1, + sym_parallel_clause, + ACTIONS(1255), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [29765] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, - anon_sym_LBRACE, - ACTIONS(561), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - STATE(275), 1, - sym_record_id_range, - STATE(372), 1, - sym_record_id_value, - ACTIONS(375), 2, - sym_int, - sym_record_id_ident, - STATE(244), 2, - sym_array, - sym_object, - [30000] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(349), 1, + ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(880), 1, - anon_sym_LBRACK, - ACTIONS(1570), 1, + ACTIONS(1553), 1, anon_sym_DOT_DOT, - STATE(121), 1, + STATE(47), 1, sym_record_id_range, - STATE(234), 1, + STATE(510), 1, sym_record_id_value, - ACTIONS(351), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(94), 2, + STATE(41), 2, sym_array, sym_object, - [30027] = 8, + [29792] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(1572), 1, + ACTIONS(1555), 1, anon_sym_DOT_DOT, - STATE(46), 1, + STATE(47), 1, sym_record_id_range, - STATE(991), 1, + STATE(505), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(41), 2, sym_array, sym_object, - [30054] = 8, + [29819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(1574), 1, - anon_sym_DOT_DOT, - STATE(33), 1, - sym_record_id_range, - STATE(511), 1, - sym_record_id_value, - ACTIONS(347), 2, - sym_int, - sym_record_id_ident, - STATE(16), 2, - sym_array, - sym_object, - [30081] = 8, + ACTIONS(1520), 9, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [29834] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(1576), 1, - anon_sym_DOT_DOT, - STATE(46), 1, - sym_record_id_range, - STATE(388), 1, + ACTIONS(349), 1, + anon_sym_DASH_GT, + ACTIONS(1109), 1, + anon_sym_EQ, + STATE(50), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(41), 2, sym_array, sym_object, - [30108] = 8, + [29861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, + ACTIONS(1515), 9, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [29876] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(359), 1, + sym_keyword_return, + STATE(1120), 1, + sym_return_clause, + STATE(1246), 1, + sym_timeout_clause, + STATE(1290), 1, + sym_parallel_clause, + ACTIONS(1016), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [29903] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(936), 1, anon_sym_LBRACK, - ACTIONS(1578), 1, + ACTIONS(1557), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(312), 1, sym_record_id_range, - STATE(513), 1, + STATE(374), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(424), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(251), 2, sym_array, sym_object, - [30135] = 2, + [29930] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1561), 1, + sym_keyword_unique, + ACTIONS(1564), 1, + sym_keyword_search, + STATE(1049), 3, + sym_unique_clause, + sym_search_analyzer_clause, + aux_sym_define_index_statement_repeat1, + ACTIONS(1559), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [29951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 9, + ACTIONS(1567), 9, ts_builtin_sym_end, sym_semi_colon, sym_keyword_tokenizers, @@ -81054,163 +80982,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [30150] = 8, + [29966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(1580), 1, - anon_sym_DOT_DOT, - STATE(33), 1, - sym_record_id_range, - STATE(519), 1, - sym_record_id_value, - ACTIONS(347), 2, - sym_int, - sym_record_id_ident, - STATE(16), 2, - sym_array, - sym_object, - [30177] = 8, + ACTIONS(1571), 1, + sym_keyword_unique, + ACTIONS(1573), 1, + sym_keyword_search, + STATE(1049), 3, + sym_unique_clause, + sym_search_analyzer_clause, + aux_sym_define_index_statement_repeat1, + ACTIONS(1569), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [29987] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(533), 1, + ACTIONS(936), 1, anon_sym_LBRACK, - ACTIONS(1582), 1, + ACTIONS(1575), 1, anon_sym_DOT_DOT, - STATE(348), 1, + STATE(312), 1, sym_record_id_range, - STATE(381), 1, + STATE(329), 1, sym_record_id_value, - ACTIONS(379), 2, + ACTIONS(424), 2, sym_int, sym_record_id_ident, - STATE(300), 2, + STATE(251), 2, sym_array, sym_object, - [30204] = 8, + [30014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(1584), 1, - anon_sym_DOT_DOT, - STATE(46), 1, - sym_record_id_range, - STATE(290), 1, - sym_record_id_value, - ACTIONS(383), 2, - sym_int, - sym_record_id_ident, - STATE(45), 2, - sym_array, - sym_object, - [30231] = 8, + ACTIONS(1577), 1, + anon_sym_COMMA, + STATE(1084), 1, + aux_sym_order_clause_repeat1, + ACTIONS(1507), 7, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + [30033] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(345), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(518), 1, anon_sym_LBRACK, - ACTIONS(1586), 1, + ACTIONS(1579), 1, anon_sym_DOT_DOT, - STATE(33), 1, - sym_record_id_range, - STATE(477), 1, + STATE(275), 1, sym_record_id_value, + STATE(294), 1, + sym_record_id_range, ACTIONS(347), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(266), 2, sym_array, sym_object, - [30258] = 8, + [30060] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1581), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(119), 1, sym_record_id_range, - STATE(494), 1, + STATE(375), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(355), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(101), 2, sym_array, sym_object, - [30285] = 8, + [30087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1583), 9, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [30102] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT_DOT, - STATE(33), 1, - sym_record_id_range, - STATE(507), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(140), 1, + anon_sym_DASH_GT, + ACTIONS(1125), 1, + anon_sym_EQ, + STATE(48), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(41), 2, sym_array, sym_object, - [30312] = 8, + [30129] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(373), 1, + ACTIONS(377), 1, anon_sym_LBRACE, - ACTIONS(561), 1, + ACTIONS(563), 1, anon_sym_LBRACK, - ACTIONS(1592), 1, + ACTIONS(1585), 1, anon_sym_DOT_DOT, - STATE(241), 1, - sym_record_id_value, - STATE(275), 1, + STATE(346), 1, sym_record_id_range, - ACTIONS(375), 2, + STATE(361), 1, + sym_record_id_value, + ACTIONS(379), 2, sym_int, sym_record_id_ident, - STATE(244), 2, + STATE(283), 2, sym_array, sym_object, - [30339] = 5, + [30156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 1, - sym_keyword_unique, - ACTIONS(1599), 1, - sym_keyword_search, - STATE(1064), 3, - sym_unique_clause, - sym_search_analyzer_clause, - aux_sym_define_index_statement_repeat1, - ACTIONS(1594), 4, + ACTIONS(1577), 1, + anon_sym_COMMA, + STATE(1084), 1, + aux_sym_order_clause_repeat1, + ACTIONS(1509), 7, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [30360] = 4, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + [30175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, + ACTIONS(1577), 1, anon_sym_COMMA, - STATE(1078), 1, + STATE(1053), 1, aux_sym_order_clause_repeat1, - ACTIONS(1497), 7, + ACTIONS(1509), 7, ts_builtin_sym_end, sym_semi_colon, sym_keyword_explain, @@ -81218,375 +81151,417 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_timeout, sym_keyword_fetch, sym_keyword_limit, - [30379] = 8, + [30194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1259), 1, + anon_sym_COMMA, + STATE(791), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1587), 7, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + anon_sym_RPAREN, + anon_sym_RBRACE, + [30213] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_COMMA, + STATE(1068), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1589), 7, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_where, + anon_sym_RPAREN, + anon_sym_RBRACE, + [30232] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(1604), 1, + ACTIONS(1593), 1, anon_sym_DOT_DOT, - STATE(46), 1, + STATE(47), 1, sym_record_id_range, - STATE(496), 1, + STATE(494), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(41), 2, sym_array, sym_object, - [30406] = 8, + [30259] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_COMMA, + STATE(1072), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1595), 7, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_where, + anon_sym_RPAREN, + anon_sym_RBRACE, + [30278] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(1606), 1, + ACTIONS(1597), 1, anon_sym_DOT_DOT, - STATE(46), 1, + STATE(47), 1, sym_record_id_range, - STATE(498), 1, + STATE(966), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(41), 2, sym_array, sym_object, - [30433] = 8, + [30305] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(1608), 1, + ACTIONS(1599), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(24), 1, sym_record_id_range, - STATE(534), 1, + STATE(506), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(9), 2, sym_array, sym_object, - [30460] = 8, + [30332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(377), 1, - anon_sym_LBRACE, - ACTIONS(533), 1, + ACTIONS(1603), 1, + anon_sym_COMMA, + STATE(1067), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1601), 7, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_where, + anon_sym_RPAREN, + anon_sym_RBRACE, + [30351] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + anon_sym_COMMA, + STATE(1067), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1606), 7, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_where, + anon_sym_RPAREN, + anon_sym_RBRACE, + [30370] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1610), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1608), 1, anon_sym_DOT_DOT, - STATE(271), 1, - sym_record_id_value, - STATE(348), 1, + STATE(47), 1, sym_record_id_range, - ACTIONS(379), 2, + STATE(1458), 1, + sym_record_id_value, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(300), 2, + STATE(41), 2, sym_array, sym_object, - [30487] = 8, + [30397] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(880), 1, anon_sym_LBRACK, - ACTIONS(1612), 1, + ACTIONS(1610), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(119), 1, sym_record_id_range, - STATE(302), 1, + STATE(254), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(355), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(101), 2, sym_array, sym_object, - [30514] = 8, + [30424] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1614), 1, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1612), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(47), 1, sym_record_id_range, - STATE(422), 1, + STATE(988), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(41), 2, sym_array, sym_object, - [30541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - anon_sym_COMMA, - STATE(1077), 1, - aux_sym_order_clause_repeat1, - ACTIONS(1497), 7, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - [30560] = 4, + [30451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, + ACTIONS(1591), 1, anon_sym_COMMA, - STATE(795), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1616), 7, - ts_builtin_sym_end, + STATE(1067), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1614), 7, sym_semi_colon, - sym_keyword_explain, + sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, + sym_keyword_where, anon_sym_RPAREN, anon_sym_RBRACE, - [30579] = 8, + [30470] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1616), 1, + anon_sym_DOT_DOT, + STATE(24), 1, + sym_record_id_range, + STATE(498), 1, + sym_record_id_value, + ACTIONS(343), 2, + sym_int, + sym_record_id_ident, + STATE(9), 2, + sym_array, + sym_object, + [30497] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(476), 1, anon_sym_LBRACK, ACTIONS(1618), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(24), 1, sym_record_id_range, - STATE(504), 1, + STATE(512), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(9), 2, sym_array, sym_object, - [30606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1620), 9, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_where, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - [30621] = 8, + [30524] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(1622), 1, + ACTIONS(1620), 1, anon_sym_DOT_DOT, - STATE(46), 1, + STATE(47), 1, sym_record_id_range, - STATE(508), 1, + STATE(380), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(41), 2, sym_array, sym_object, - [30648] = 4, + [30551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1602), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_order_clause_repeat1, - ACTIONS(1521), 7, + ACTIONS(1601), 9, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_explain, + sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - [30667] = 4, + sym_keyword_where, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [30566] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, + ACTIONS(1622), 1, anon_sym_COMMA, - STATE(1078), 1, - aux_sym_order_clause_repeat1, - ACTIONS(1487), 7, - ts_builtin_sym_end, + STATE(1077), 1, + aux_sym_update_statement_repeat1, + ACTIONS(660), 7, sym_semi_colon, - sym_keyword_explain, + sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, - sym_keyword_fetch, - sym_keyword_limit, - [30686] = 8, + sym_keyword_where, + anon_sym_RPAREN, + anon_sym_RBRACE, + [30585] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(476), 1, anon_sym_LBRACK, - ACTIONS(1627), 1, + ACTIONS(1625), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(24), 1, sym_record_id_range, - STATE(492), 1, + STATE(493), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(9), 2, sym_array, sym_object, - [30713] = 5, + [30612] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, - sym_keyword_unique, - ACTIONS(1527), 1, - sym_keyword_search, - STATE(1064), 3, - sym_unique_clause, - sym_search_analyzer_clause, - aux_sym_define_index_statement_repeat1, - ACTIONS(1629), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [30734] = 8, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1627), 1, + anon_sym_DOT_DOT, + STATE(24), 1, + sym_record_id_range, + STATE(516), 1, + sym_record_id_value, + ACTIONS(343), 2, + sym_int, + sym_record_id_ident, + STATE(9), 2, + sym_array, + sym_object, + [30639] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(212), 1, - anon_sym_DASH_GT, - ACTIONS(1107), 1, - anon_sym_EQ, - STATE(49), 1, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1629), 1, + anon_sym_DOT_DOT, + STATE(24), 1, + sym_record_id_range, + STATE(520), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(9), 2, sym_array, sym_object, - [30761] = 2, + [30666] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 9, - ts_builtin_sym_end, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(359), 1, + sym_keyword_return, + STATE(1116), 1, + sym_return_clause, + STATE(1201), 1, + sym_timeout_clause, + STATE(1397), 1, + sym_parallel_clause, + ACTIONS(1631), 3, sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [30776] = 8, + [30693] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, + ACTIONS(377), 1, anon_sym_LBRACE, - ACTIONS(160), 1, - anon_sym_DASH_GT, - ACTIONS(1125), 1, - anon_sym_EQ, - STATE(50), 1, + ACTIONS(563), 1, + anon_sym_LBRACK, + ACTIONS(1633), 1, + anon_sym_DOT_DOT, + STATE(346), 1, + sym_record_id_range, + STATE(390), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(379), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(283), 2, sym_array, sym_object, - [30803] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1525), 1, - sym_keyword_unique, - ACTIONS(1527), 1, - sym_keyword_search, - STATE(1064), 3, - sym_unique_clause, - sym_search_analyzer_clause, - aux_sym_define_index_statement_repeat1, - ACTIONS(1523), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [30824] = 8, + [30720] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(1633), 1, + ACTIONS(1635), 1, anon_sym_DOT_DOT, - STATE(46), 1, + STATE(47), 1, sym_record_id_range, - STATE(1459), 1, + STATE(287), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(41), 2, sym_array, sym_object, - [30851] = 4, + [30747] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1637), 1, anon_sym_COMMA, - STATE(1092), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1635), 7, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_where, - anon_sym_RPAREN, - anon_sym_RBRACE, - [30870] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - anon_sym_COMMA, - STATE(1065), 1, + STATE(1084), 1, aux_sym_order_clause_repeat1, - ACTIONS(1514), 7, + ACTIONS(1502), 7, ts_builtin_sym_end, sym_semi_colon, sym_keyword_explain, @@ -81594,195 +81569,123 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_timeout, sym_keyword_fetch, sym_keyword_limit, - [30889] = 8, + [30766] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, ACTIONS(341), 1, - anon_sym_DASH_GT, - ACTIONS(1109), 1, - anon_sym_EQ, - STATE(48), 1, + anon_sym_LBRACE, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1640), 1, + anon_sym_DOT_DOT, + STATE(24), 1, + sym_record_id_range, + STATE(476), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(9), 2, sym_array, sym_object, - [30916] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - anon_sym_COMMA, - STATE(1073), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1639), 7, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, - sym_keyword_timeout, - anon_sym_RPAREN, - anon_sym_RBRACE, - [30935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1637), 1, - anon_sym_COMMA, - STATE(1093), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1641), 7, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_where, - anon_sym_RPAREN, - anon_sym_RBRACE, - [30954] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_COMMA, - STATE(1091), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1620), 7, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_where, - anon_sym_RPAREN, - anon_sym_RBRACE, - [30973] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1637), 1, - anon_sym_COMMA, - STATE(1091), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1646), 7, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_where, - anon_sym_RPAREN, - anon_sym_RBRACE, - [30992] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1637), 1, - anon_sym_COMMA, - STATE(1091), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1648), 7, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_where, - anon_sym_RPAREN, - anon_sym_RBRACE, - [31011] = 8, + [30793] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(1650), 1, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1642), 1, anon_sym_DOT_DOT, - STATE(46), 1, + STATE(24), 1, sym_record_id_range, - STATE(355), 1, + STATE(456), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(9), 2, sym_array, sym_object, - [31038] = 8, + [30820] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 1, + ACTIONS(422), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(936), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1644), 1, anon_sym_DOT_DOT, - STATE(33), 1, + STATE(312), 1, sym_record_id_range, - STATE(500), 1, + STATE(369), 1, sym_record_id_value, - ACTIONS(347), 2, + ACTIONS(424), 2, sym_int, sym_record_id_ident, - STATE(16), 2, + STATE(251), 2, sym_array, sym_object, - [31065] = 8, + [30847] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(1654), 1, + ACTIONS(880), 1, + anon_sym_LBRACK, + ACTIONS(1646), 1, anon_sym_DOT_DOT, - STATE(46), 1, + STATE(119), 1, sym_record_id_range, - STATE(469), 1, + STATE(340), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(355), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(101), 2, sym_array, sym_object, - [31092] = 2, + [30874] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 9, + ACTIONS(1571), 1, + sym_keyword_unique, + ACTIONS(1573), 1, + sym_keyword_search, + STATE(1096), 3, + sym_unique_clause, + sym_search_analyzer_clause, + aux_sym_define_index_statement_repeat1, + ACTIONS(1648), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [31107] = 8, + [30895] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, + ACTIONS(341), 1, anon_sym_LBRACE, - ACTIONS(1658), 1, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, anon_sym_DOT_DOT, - STATE(46), 1, + STATE(24), 1, sym_record_id_range, - STATE(964), 1, + STATE(331), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(343), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(9), 2, sym_array, sym_object, - [31134] = 3, + [30922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1662), 1, + ACTIONS(1654), 1, sym_keyword_minkowski, - ACTIONS(1660), 8, + ACTIONS(1652), 8, sym_keyword_chebyshev, sym_keyword_cosine, sym_keyword_euclidean, @@ -81791,502 +81694,544 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_manhattan, sym_keyword_pearson, sym_int, - [31151] = 2, + [30939] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1664), 9, - ts_builtin_sym_end, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1656), 1, + anon_sym_DOT_DOT, + STATE(24), 1, + sym_record_id_range, + STATE(497), 1, + sym_record_id_value, + ACTIONS(343), 2, + sym_int, + sym_record_id_ident, + STATE(9), 2, + sym_array, + sym_object, + [30966] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(359), 1, + sym_keyword_return, + STATE(1133), 1, + sym_return_clause, + STATE(1223), 1, + sym_timeout_clause, + STATE(1401), 1, + sym_parallel_clause, + ACTIONS(1424), 3, sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [31166] = 5, + [30993] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1658), 1, + anon_sym_DOT_DOT, + STATE(24), 1, + sym_record_id_range, + STATE(514), 1, + sym_record_id_value, + ACTIONS(343), 2, + sym_int, + sym_record_id_ident, + STATE(9), 2, + sym_array, + sym_object, + [31020] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(345), 1, + anon_sym_LBRACE, + ACTIONS(518), 1, + anon_sym_LBRACK, + ACTIONS(1660), 1, + anon_sym_DOT_DOT, + STATE(268), 1, + sym_record_id_value, + STATE(294), 1, + sym_record_id_range, + ACTIONS(347), 2, + sym_int, + sym_record_id_ident, + STATE(266), 2, + sym_array, + sym_object, + [31047] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 1, sym_keyword_unique, - ACTIONS(1527), 1, + ACTIONS(1573), 1, sym_keyword_search, - STATE(1084), 3, + STATE(1049), 3, sym_unique_clause, sym_search_analyzer_clause, aux_sym_define_index_statement_repeat1, - ACTIONS(1666), 4, + ACTIONS(1662), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [31187] = 2, + [31068] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 9, + ACTIONS(1571), 1, + sym_keyword_unique, + ACTIONS(1573), 1, + sym_keyword_search, + STATE(1051), 3, + sym_unique_clause, + sym_search_analyzer_clause, + aux_sym_define_index_statement_repeat1, + ACTIONS(1662), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [31202] = 2, + [31089] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 8, + ACTIONS(377), 1, + anon_sym_LBRACE, + ACTIONS(563), 1, + anon_sym_LBRACK, + ACTIONS(1664), 1, + anon_sym_DOT_DOT, + STATE(295), 1, + sym_record_id_value, + STATE(346), 1, + sym_record_id_range, + ACTIONS(379), 2, + sym_int, + sym_record_id_ident, + STATE(283), 2, + sym_array, + sym_object, + [31116] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1577), 1, + anon_sym_COMMA, + STATE(1059), 1, + aux_sym_order_clause_repeat1, + ACTIONS(1490), 7, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_comment, - sym_keyword_session, - sym_keyword_signin, - sym_keyword_signup, - anon_sym_RPAREN, - anon_sym_RBRACE, - [31216] = 4, + sym_keyword_explain, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_fetch, + sym_keyword_limit, + [31135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1672), 1, + ACTIONS(1259), 1, anon_sym_COMMA, - STATE(1150), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1646), 6, + STATE(1061), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1666), 7, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_return, + sym_keyword_explain, sym_keyword_parallel, sym_keyword_timeout, - sym_keyword_where, - [31234] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [31154] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(341), 1, + anon_sym_LBRACE, + ACTIONS(476), 1, + anon_sym_LBRACK, + ACTIONS(1668), 1, + anon_sym_DOT_DOT, + STATE(24), 1, + sym_record_id_range, + STATE(530), 1, + sym_record_id_value, + ACTIONS(343), 2, + sym_int, + sym_record_id_ident, + STATE(9), 2, + sym_array, + sym_object, + [31181] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1670), 1, + anon_sym_DOT_DOT, + STATE(47), 1, + sym_record_id_range, + STATE(499), 1, + sym_record_id_value, + ACTIONS(426), 2, + sym_int, + sym_record_id_ident, + STATE(41), 2, + sym_array, + sym_object, + [31208] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1200), 1, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(403), 1, + sym_keyword_return, + STATE(1112), 1, + sym_return_clause, + STATE(1207), 1, + sym_timeout_clause, + STATE(1321), 1, sym_parallel_clause, - STATE(1277), 1, - sym_explain_clause, - ACTIONS(1273), 4, + ACTIONS(375), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [31256] = 4, + [31234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1672), 1, - anon_sym_COMMA, - STATE(1104), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1635), 6, + ACTIONS(1672), 8, ts_builtin_sym_end, sym_semi_colon, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, sym_keyword_where, - [31274] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1674), 8, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_tokenizers, - sym_keyword_function, - sym_keyword_filters, - sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [31288] = 4, + [31248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1672), 1, + ACTIONS(1674), 1, anon_sym_COMMA, - STATE(1153), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1641), 6, + STATE(1105), 1, + aux_sym_update_statement_repeat1, + ACTIONS(660), 6, ts_builtin_sym_end, sym_semi_colon, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, sym_keyword_where, - [31306] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1676), 8, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_comment, - sym_keyword_session, - sym_keyword_signin, - sym_keyword_signup, - anon_sym_RPAREN, - anon_sym_RBRACE, - [31320] = 2, + [31266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1678), 8, + ACTIONS(1677), 8, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_if, - sym_keyword_permissions, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_custom_function_name, - [31334] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, sym_keyword_explain, - ACTIONS(295), 1, sym_keyword_parallel, - STATE(1226), 1, - sym_parallel_clause, - STATE(1322), 1, - sym_explain_clause, - ACTIONS(1251), 4, - ts_builtin_sym_end, - sym_semi_colon, + sym_keyword_timeout, + sym_keyword_fetch, anon_sym_RPAREN, anon_sym_RBRACE, - [31356] = 6, + [31280] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1227), 1, + ACTIONS(403), 1, + sym_keyword_return, + STATE(1120), 1, + sym_return_clause, + STATE(1246), 1, sym_timeout_clause, - STATE(1412), 1, + STATE(1290), 1, sym_parallel_clause, - ACTIONS(1680), 4, + ACTIONS(1016), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [31378] = 2, + [31306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1682), 8, + ACTIONS(293), 1, + sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, + STATE(1225), 1, + sym_parallel_clause, + STATE(1352), 1, + sym_explain_clause, + ACTIONS(1290), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_comment, - sym_keyword_session, - sym_keyword_signin, - sym_keyword_signup, anon_sym_RPAREN, anon_sym_RBRACE, - [31392] = 6, + [31328] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - STATE(1210), 1, - sym_timeout_clause, - STATE(1362), 1, + STATE(1199), 1, sym_parallel_clause, - ACTIONS(371), 4, + STATE(1360), 1, + sym_explain_clause, + ACTIONS(1006), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [31414] = 5, + [31350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(1141), 1, sym_keyword_comment, - ACTIONS(1686), 1, + ACTIONS(1681), 1, sym_keyword_permissions, - ACTIONS(1684), 3, + ACTIONS(1679), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1128), 3, + STATE(1130), 3, sym_permissions_basic_clause, sym_comment_clause, aux_sym_define_function_statement_repeat1, - [31434] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - ACTIONS(295), 1, - sym_keyword_parallel, - STATE(1202), 1, - sym_parallel_clause, - STATE(1321), 1, - sym_explain_clause, - ACTIONS(1688), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [31456] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - STATE(1147), 1, - sym_return_clause, - STATE(1210), 1, - sym_timeout_clause, - STATE(1362), 1, - sym_parallel_clause, - ACTIONS(371), 2, - ts_builtin_sym_end, - sym_semi_colon, - [31482] = 4, + [31370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(1683), 1, anon_sym_COMMA, - STATE(1118), 1, + STATE(1136), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1620), 6, + ACTIONS(1589), 6, sym_semi_colon, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, anon_sym_RPAREN, anon_sym_RBRACE, - [31500] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1686), 1, - sym_keyword_permissions, - ACTIONS(1693), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1115), 3, - sym_permissions_basic_clause, - sym_comment_clause, - aux_sym_define_function_statement_repeat1, - [31520] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1686), 1, - sym_keyword_permissions, - ACTIONS(1693), 3, + [31388] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + STATE(1246), 1, + sym_timeout_clause, + STATE(1290), 1, + sym_parallel_clause, + ACTIONS(1016), 4, + ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1128), 3, - sym_permissions_basic_clause, - sym_comment_clause, - aux_sym_define_function_statement_repeat1, - [31540] = 4, + [31410] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - STATE(795), 1, + STATE(1147), 1, aux_sym_define_user_statement_repeat1, - ACTIONS(1695), 6, + ACTIONS(1685), 6, ts_builtin_sym_end, sym_semi_colon, sym_keyword_unique, sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [31558] = 6, + [31428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(1683), 1, + anon_sym_COMMA, + STATE(1137), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1595), 6, + sym_semi_colon, + sym_keyword_return, sym_keyword_parallel, - ACTIONS(297), 1, sym_keyword_timeout, - STATE(1209), 1, - sym_timeout_clause, - STATE(1350), 1, - sym_parallel_clause, - ACTIONS(670), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [31446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1687), 8, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + sym_keyword_where, anon_sym_RPAREN, anon_sym_RBRACE, - [31580] = 8, + [31460] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - STATE(1130), 1, - sym_return_clause, - STATE(1245), 1, + STATE(1237), 1, sym_timeout_clause, - STATE(1334), 1, + STATE(1408), 1, sym_parallel_clause, - ACTIONS(1556), 2, + ACTIONS(1689), 4, ts_builtin_sym_end, sym_semi_colon, - [31606] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [31482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, + ACTIONS(1691), 1, anon_sym_COMMA, - STATE(1118), 1, + STATE(1117), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1646), 6, + ACTIONS(1601), 6, sym_semi_colon, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, anon_sym_RPAREN, anon_sym_RBRACE, - [31624] = 4, + [31500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_COMMA, - STATE(1118), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1648), 6, - sym_semi_colon, - sym_keyword_return, + ACTIONS(295), 1, sym_keyword_parallel, + ACTIONS(297), 1, sym_keyword_timeout, + STATE(1249), 1, + sym_timeout_clause, + STATE(1288), 1, + sym_parallel_clause, + ACTIONS(1338), 4, + ts_builtin_sym_end, + sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [31642] = 8, + [31522] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(406), 1, + ACTIONS(403), 1, sym_keyword_return, - STATE(1165), 1, + STATE(1140), 1, sym_return_clause, - STATE(1209), 1, + STATE(1234), 1, sym_timeout_clause, - STATE(1350), 1, + STATE(1345), 1, sym_parallel_clause, - ACTIONS(670), 2, + ACTIONS(1480), 2, ts_builtin_sym_end, sym_semi_colon, - [31668] = 6, + [31548] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1205), 1, + STATE(1234), 1, sym_timeout_clause, - STATE(1332), 1, + STATE(1345), 1, sym_parallel_clause, - ACTIONS(1244), 4, + ACTIONS(1480), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [31690] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1701), 1, - sym_keyword_permissions, - ACTIONS(1704), 1, - sym_keyword_comment, - ACTIONS(1699), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1128), 3, - sym_permissions_basic_clause, - sym_comment_clause, - aux_sym_define_function_statement_repeat1, - [31710] = 8, + [31570] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - STATE(1131), 1, - sym_return_clause, - STATE(1205), 1, - sym_timeout_clause, - STATE(1332), 1, + STATE(1203), 1, sym_parallel_clause, - ACTIONS(1244), 2, + STATE(1302), 1, + sym_explain_clause, + ACTIONS(331), 4, ts_builtin_sym_end, sym_semi_colon, - [31736] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [31592] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1243), 1, + ACTIONS(403), 1, + sym_keyword_return, + STATE(1139), 1, + sym_return_clause, + STATE(1233), 1, sym_timeout_clause, - STATE(1376), 1, + STATE(1344), 1, sym_parallel_clause, - ACTIONS(1707), 4, + ACTIONS(1539), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [31758] = 6, + [31618] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1245), 1, + STATE(1233), 1, sym_timeout_clause, - STATE(1334), 1, + STATE(1344), 1, sym_parallel_clause, - ACTIONS(1556), 4, + ACTIONS(1539), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [31780] = 6, + [31640] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1237), 1, + ACTIONS(403), 1, + sym_keyword_return, + STATE(1123), 1, + sym_return_clause, + STATE(1249), 1, sym_timeout_clause, - STATE(1301), 1, + STATE(1288), 1, sym_parallel_clause, - ACTIONS(1709), 4, + ACTIONS(1338), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [31802] = 2, + [31666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1711), 8, + ACTIONS(1694), 8, ts_builtin_sym_end, sym_semi_colon, sym_keyword_return, @@ -82295,214 +82240,231 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_where, anon_sym_RPAREN, anon_sym_RBRACE, - [31816] = 6, + [31680] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1239), 1, + STATE(1236), 1, sym_timeout_clause, - STATE(1380), 1, + STATE(1287), 1, sym_parallel_clause, - ACTIONS(1544), 4, + ACTIONS(1537), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [31838] = 6, + [31702] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1234), 1, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(403), 1, + sym_keyword_return, + STATE(1129), 1, + sym_return_clause, + STATE(1236), 1, + sym_timeout_clause, + STATE(1287), 1, sym_parallel_clause, - STATE(1394), 1, - sym_explain_clause, - ACTIONS(1169), 4, + ACTIONS(1537), 2, ts_builtin_sym_end, sym_semi_colon, + [31728] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1681), 1, + sym_keyword_permissions, + ACTIONS(1696), 3, + sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [31860] = 6, + STATE(1157), 3, + sym_permissions_basic_clause, + sym_comment_clause, + aux_sym_define_function_statement_repeat1, + [31748] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1235), 1, + STATE(1230), 1, sym_timeout_clause, - STATE(1276), 1, + STATE(1337), 1, sym_parallel_clause, - ACTIONS(1532), 4, + ACTIONS(1698), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [31882] = 8, + [31770] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1681), 1, + sym_keyword_permissions, + ACTIONS(1696), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(1164), 3, + sym_permissions_basic_clause, + sym_comment_clause, + aux_sym_define_function_statement_repeat1, + [31790] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(406), 1, + ACTIONS(403), 1, sym_keyword_return, - STATE(1112), 1, + STATE(1133), 1, sym_return_clause, - STATE(1235), 1, + STATE(1223), 1, sym_timeout_clause, - STATE(1276), 1, + STATE(1401), 1, sym_parallel_clause, - ACTIONS(1532), 2, + ACTIONS(1424), 2, ts_builtin_sym_end, sym_semi_colon, - [31908] = 8, + [31816] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - STATE(1154), 1, - sym_return_clause, - STATE(1239), 1, - sym_timeout_clause, - STATE(1380), 1, + STATE(1224), 1, sym_parallel_clause, - ACTIONS(1544), 2, + STATE(1370), 1, + sym_explain_clause, + ACTIONS(1177), 4, ts_builtin_sym_end, sym_semi_colon, - [31934] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [31838] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1236), 1, + STATE(1211), 1, sym_timeout_clause, - STATE(1387), 1, + STATE(1371), 1, sym_parallel_clause, - ACTIONS(1478), 4, + ACTIONS(1545), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [31956] = 8, + [31860] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(406), 1, + ACTIONS(403), 1, sym_keyword_return, - STATE(1149), 1, + STATE(1150), 1, sym_return_clause, - STATE(1236), 1, + STATE(1211), 1, sym_timeout_clause, - STATE(1387), 1, + STATE(1371), 1, sym_parallel_clause, - ACTIONS(1478), 2, + ACTIONS(1545), 2, ts_builtin_sym_end, sym_semi_colon, - [31982] = 6, + [31886] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1244), 1, + STATE(1232), 1, sym_parallel_clause, - STATE(1280), 1, + STATE(1333), 1, sym_explain_clause, - ACTIONS(1042), 4, + ACTIONS(1461), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32004] = 8, + [31908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(1683), 1, + anon_sym_COMMA, + STATE(1117), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1606), 6, + sym_semi_colon, + sym_keyword_return, sym_keyword_parallel, - ACTIONS(297), 1, sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - STATE(1132), 1, - sym_return_clause, - STATE(1221), 1, - sym_timeout_clause, - STATE(1385), 1, - sym_parallel_clause, - ACTIONS(1540), 2, - ts_builtin_sym_end, - sym_semi_colon, - [32030] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1686), 1, - sym_keyword_permissions, - ACTIONS(1713), 3, - sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1120), 3, - sym_permissions_basic_clause, - sym_comment_clause, - aux_sym_define_function_statement_repeat1, - [32050] = 2, + [31926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1715), 8, - ts_builtin_sym_end, + ACTIONS(1683), 1, + anon_sym_COMMA, + STATE(1117), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1614), 6, sym_semi_colon, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, - sym_keyword_where, anon_sym_RPAREN, anon_sym_RBRACE, - [32064] = 6, + [31944] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1223), 1, + STATE(1241), 1, sym_parallel_clause, - STATE(1388), 1, + STATE(1315), 1, sym_explain_clause, - ACTIONS(1006), 4, + ACTIONS(1486), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32086] = 2, + [31966] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1717), 8, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_return, + ACTIONS(295), 1, sym_keyword_parallel, + ACTIONS(297), 1, sym_keyword_timeout, - sym_keyword_where, + STATE(1204), 1, + sym_timeout_clause, + STATE(1391), 1, + sym_parallel_clause, + ACTIONS(1700), 4, + ts_builtin_sym_end, + sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32100] = 6, + [31988] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -82511,402 +82473,391 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_timeout, STATE(1201), 1, sym_timeout_clause, - STATE(1314), 1, + STATE(1397), 1, sym_parallel_clause, - ACTIONS(1016), 4, + ACTIONS(1631), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32122] = 2, + [32010] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1719), 8, + ACTIONS(295), 1, + sym_keyword_parallel, + ACTIONS(297), 1, + sym_keyword_timeout, + ACTIONS(403), 1, + sym_keyword_return, + STATE(1116), 1, + sym_return_clause, + STATE(1201), 1, + sym_timeout_clause, + STATE(1397), 1, + sym_parallel_clause, + ACTIONS(1631), 2, ts_builtin_sym_end, sym_semi_colon, + [32036] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, sym_keyword_explain, + ACTIONS(295), 1, sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_fetch, + STATE(1239), 1, + sym_parallel_clause, + STATE(1418), 1, + sym_explain_clause, + ACTIONS(1042), 4, + ts_builtin_sym_end, + sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32136] = 6, + [32058] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1221), 1, + STATE(1207), 1, sym_timeout_clause, - STATE(1385), 1, + STATE(1321), 1, sym_parallel_clause, - ACTIONS(1540), 4, + ACTIONS(375), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1721), 1, - anon_sym_COMMA, - STATE(1150), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1620), 6, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_where, - [32176] = 6, + [32080] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1225), 1, + STATE(1243), 1, sym_parallel_clause, - STATE(1295), 1, + STATE(1305), 1, sym_explain_clause, - ACTIONS(291), 4, + ACTIONS(1702), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32198] = 4, + [32102] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_COMMA, - STATE(1124), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1635), 6, - sym_semi_colon, - sym_keyword_return, + ACTIONS(295), 1, sym_keyword_parallel, + ACTIONS(297), 1, sym_keyword_timeout, - anon_sym_RPAREN, - anon_sym_RBRACE, - [32216] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1672), 1, - anon_sym_COMMA, - STATE(1150), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1648), 6, + STATE(1209), 1, + sym_timeout_clause, + STATE(1328), 1, + sym_parallel_clause, + ACTIONS(664), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - sym_keyword_where, - [32234] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [32124] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1219), 1, + ACTIONS(403), 1, + sym_keyword_return, + STATE(1118), 1, + sym_return_clause, + STATE(1209), 1, sym_timeout_clause, - STATE(1381), 1, + STATE(1328), 1, sym_parallel_clause, - ACTIONS(1724), 4, + ACTIONS(664), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [32256] = 4, + [32150] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - STATE(1121), 1, + STATE(791), 1, aux_sym_define_user_statement_repeat1, - ACTIONS(1726), 6, + ACTIONS(1704), 6, ts_builtin_sym_end, sym_semi_colon, sym_keyword_unique, sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [32274] = 6, + [32168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1208), 1, + ACTIONS(297), 1, + sym_keyword_timeout, + STATE(1215), 1, + sym_timeout_clause, + STATE(1335), 1, sym_parallel_clause, - STATE(1339), 1, - sym_explain_clause, - ACTIONS(1445), 4, + ACTIONS(1255), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32296] = 4, + [32190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1697), 1, - anon_sym_COMMA, - STATE(1125), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1641), 6, + ACTIONS(1706), 8, + ts_builtin_sym_end, sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, + sym_keyword_tokenizers, + sym_keyword_function, + sym_keyword_filters, + sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [32314] = 6, + [32204] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1204), 1, + ACTIONS(297), 1, + sym_keyword_timeout, + STATE(1245), 1, + sym_timeout_clause, + STATE(1364), 1, sym_parallel_clause, - STATE(1326), 1, - sym_explain_clause, - ACTIONS(1489), 4, + ACTIONS(1708), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32336] = 8, + [32226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - STATE(1136), 1, - sym_return_clause, - STATE(1241), 1, - sym_timeout_clause, - STATE(1315), 1, - sym_parallel_clause, - ACTIONS(1396), 2, + ACTIONS(1710), 8, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_comment, + sym_keyword_session, + sym_keyword_signin, + sym_keyword_signup, + anon_sym_RPAREN, + anon_sym_RBRACE, + [32240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 8, ts_builtin_sym_end, sym_semi_colon, - [32362] = 6, + sym_keyword_comment, + sym_keyword_session, + sym_keyword_signin, + sym_keyword_signup, + anon_sym_RPAREN, + anon_sym_RBRACE, + [32254] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1241), 1, + ACTIONS(403), 1, + sym_keyword_return, + STATE(1126), 1, + sym_return_clause, + STATE(1215), 1, sym_timeout_clause, - STATE(1315), 1, + STATE(1335), 1, sym_parallel_clause, - ACTIONS(1396), 4, + ACTIONS(1255), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [32384] = 6, + [32280] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1240), 1, + STATE(1206), 1, sym_parallel_clause, - STATE(1291), 1, + STATE(1363), 1, sym_explain_clause, - ACTIONS(1046), 4, + ACTIONS(1253), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32406] = 8, + [32302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - STATE(1139), 1, - sym_return_clause, - STATE(1201), 1, - sym_timeout_clause, - STATE(1314), 1, - sym_parallel_clause, - ACTIONS(1016), 2, + ACTIONS(1714), 8, ts_builtin_sym_end, sym_semi_colon, - [32432] = 4, + sym_keyword_comment, + sym_keyword_session, + sym_keyword_signin, + sym_keyword_signup, + anon_sym_RPAREN, + anon_sym_RBRACE, + [32316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1728), 1, + ACTIONS(1716), 1, anon_sym_COMMA, - STATE(1163), 1, - aux_sym_update_statement_repeat1, - ACTIONS(656), 6, + STATE(1161), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1589), 6, ts_builtin_sym_end, sym_semi_colon, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, sym_keyword_where, - [32450] = 8, + [32334] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1681), 1, + sym_keyword_permissions, + ACTIONS(1718), 3, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(1164), 3, + sym_permissions_basic_clause, + sym_comment_clause, + aux_sym_define_function_statement_repeat1, + [32354] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, ACTIONS(295), 1, sym_keyword_parallel, - ACTIONS(297), 1, - sym_keyword_timeout, - ACTIONS(406), 1, - sym_keyword_return, - STATE(1134), 1, - sym_return_clause, - STATE(1238), 1, - sym_timeout_clause, - STATE(1319), 1, + STATE(1221), 1, sym_parallel_clause, - ACTIONS(1379), 2, + STATE(1400), 1, + sym_explain_clause, + ACTIONS(1075), 4, ts_builtin_sym_end, sym_semi_colon, - [32476] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [32376] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, ACTIONS(297), 1, sym_keyword_timeout, - STATE(1238), 1, + STATE(1223), 1, sym_timeout_clause, - STATE(1319), 1, + STATE(1401), 1, sym_parallel_clause, - ACTIONS(1379), 4, + ACTIONS(1424), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32498] = 4, + [32398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(1716), 1, anon_sym_COMMA, - STATE(1176), 1, + STATE(1162), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1646), 5, + ACTIONS(1614), 6, ts_builtin_sym_end, sym_semi_colon, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, - [32515] = 4, + sym_keyword_where, + [32416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(1716), 1, anon_sym_COMMA, - STATE(1176), 1, + STATE(1162), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1648), 5, + ACTIONS(1606), 6, ts_builtin_sym_end, sym_semi_colon, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, - [32532] = 4, + sym_keyword_where, + [32434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, + ACTIONS(1720), 1, anon_sym_COMMA, - STATE(1192), 1, - aux_sym_when_then_clause_repeat1, - ACTIONS(1733), 5, + STATE(1162), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1601), 6, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_comment, - anon_sym_RPAREN, - anon_sym_RBRACE, - [32549] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 1, - anon_sym_COMMA, - STATE(1169), 1, - aux_sym_update_statement_repeat1, - ACTIONS(656), 5, - sym_semi_colon, + sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, - anon_sym_RPAREN, - anon_sym_RBRACE, - [32566] = 4, + sym_keyword_where, + [32452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, - anon_sym_COMMA, - STATE(1184), 1, - aux_sym_when_then_clause_repeat1, - ACTIONS(1740), 5, + ACTIONS(1723), 8, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_if, + sym_keyword_permissions, sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [32583] = 4, + sym_custom_function_name, + [32466] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, - anon_sym_COMMA, - STATE(1192), 1, - aux_sym_when_then_clause_repeat1, - ACTIONS(1740), 5, - ts_builtin_sym_end, - sym_semi_colon, + ACTIONS(1727), 1, + sym_keyword_permissions, + ACTIONS(1730), 1, sym_keyword_comment, + ACTIONS(1725), 3, + sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [32600] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - anon_sym_snowball, - STATE(1056), 1, - sym_analyzer_filters, - ACTIONS(1744), 2, - anon_sym_edgengram, - anon_sym_ngram, - ACTIONS(1742), 3, - anon_sym_ascii, - anon_sym_lowercase, - anon_sym_uppercase, - [32619] = 4, + STATE(1164), 3, + sym_permissions_basic_clause, + sym_comment_clause, + aux_sym_define_function_statement_repeat1, + [32486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(1716), 1, anon_sym_COMMA, - STATE(1167), 1, + STATE(1160), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1641), 5, + ACTIONS(1595), 6, ts_builtin_sym_end, sym_semi_colon, sym_keyword_return, sym_keyword_parallel, sym_keyword_timeout, - [32636] = 4, + sym_keyword_where, + [32504] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1735), 1, anon_sym_COMMA, - STATE(1193), 1, + STATE(1172), 1, aux_sym_when_then_clause_repeat1, ACTIONS(1733), 5, ts_builtin_sym_end, @@ -82914,289 +82865,381 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [32653] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - ACTIONS(1750), 1, - sym_keyword_permissions, - ACTIONS(1748), 2, - sym_keyword_if, - sym_custom_function_name, - STATE(1191), 3, - sym_permissions_basic_clause, - sym_comment_clause, - aux_sym_define_function_statement_repeat1, - [32672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1752), 1, - anon_sym_COMMA, - STATE(1176), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1620), 5, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - [32689] = 6, + [32521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(49), 1, - sym_record_id_value, - ACTIONS(383), 2, - sym_int, - sym_record_id_ident, - STATE(45), 2, - sym_array, - sym_object, - [32710] = 5, + ACTIONS(1741), 1, + anon_sym_snowball, + STATE(1044), 1, + sym_analyzer_filters, + ACTIONS(1739), 2, + anon_sym_edgengram, + anon_sym_ngram, + ACTIONS(1737), 3, + anon_sym_ascii, + anon_sym_lowercase, + anon_sym_uppercase, + [32540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(1141), 1, sym_keyword_comment, - ACTIONS(1750), 1, + ACTIONS(1743), 1, sym_keyword_permissions, - ACTIONS(1755), 2, - sym_keyword_if, - sym_custom_function_name, - STATE(1188), 3, + ACTIONS(1718), 2, + ts_builtin_sym_end, + sym_semi_colon, + STATE(1171), 3, sym_permissions_basic_clause, sym_comment_clause, aux_sym_define_function_statement_repeat1, - [32729] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_LBRACE, - ACTIONS(1757), 1, - sym_keyword_when, - ACTIONS(1759), 1, - sym_keyword_then, - STATE(1232), 1, - sym_when_then_clause, - STATE(1195), 2, - sym_block, - sym_sub_query, - [32752] = 4, + [32559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(1735), 1, anon_sym_COMMA, STATE(1166), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1635), 5, + aux_sym_when_then_clause_repeat1, + ACTIONS(1745), 5, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_return, - sym_keyword_parallel, - sym_keyword_timeout, - [32769] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - anon_sym_snowball, - STATE(1013), 1, - sym_analyzer_filters, - ACTIONS(1744), 2, - anon_sym_edgengram, - anon_sym_ngram, - ACTIONS(1742), 3, - anon_sym_ascii, - anon_sym_lowercase, - anon_sym_uppercase, - [32788] = 5, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, + [32576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(710), 1, + anon_sym_COMMA, + STATE(1177), 1, + aux_sym_update_statement_repeat1, + ACTIONS(1747), 5, + sym_semi_colon, + sym_keyword_parallel, + sym_keyword_timeout, + anon_sym_RPAREN, + anon_sym_RBRACE, + [32593] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1730), 1, sym_keyword_comment, - ACTIONS(1761), 1, + ACTIONS(1749), 1, sym_keyword_permissions, - ACTIONS(1693), 2, + ACTIONS(1725), 2, ts_builtin_sym_end, sym_semi_colon, - STATE(1190), 3, + STATE(1171), 3, sym_permissions_basic_clause, sym_comment_clause, aux_sym_define_function_statement_repeat1, - [32807] = 4, + [32612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(716), 1, + ACTIONS(1754), 1, anon_sym_COMMA, - STATE(1169), 1, - aux_sym_update_statement_repeat1, - ACTIONS(1763), 5, + STATE(1172), 1, + aux_sym_when_then_clause_repeat1, + ACTIONS(1752), 5, + ts_builtin_sym_end, sym_semi_colon, - sym_keyword_parallel, - sym_keyword_timeout, + sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [32824] = 4, + [32629] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1735), 1, anon_sym_COMMA, - STATE(1192), 1, + STATE(1172), 1, aux_sym_when_then_clause_repeat1, - ACTIONS(1765), 5, + ACTIONS(1757), 5, ts_builtin_sym_end, sym_semi_colon, sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [32841] = 6, + [32646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(47), 1, - sym_record_id_value, - ACTIONS(383), 2, - sym_int, - sym_record_id_ident, - STATE(45), 2, - sym_array, - sym_object, - [32862] = 5, + ACTIONS(1735), 1, + anon_sym_COMMA, + STATE(1186), 1, + aux_sym_when_then_clause_repeat1, + ACTIONS(1757), 5, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_comment, + anon_sym_RPAREN, + anon_sym_RBRACE, + [32663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(1141), 1, sym_keyword_comment, - ACTIONS(1761), 1, + ACTIONS(1743), 1, sym_keyword_permissions, - ACTIONS(1693), 2, + ACTIONS(1679), 2, ts_builtin_sym_end, sym_semi_colon, STATE(1189), 3, sym_permissions_basic_clause, sym_comment_clause, aux_sym_define_function_statement_repeat1, - [32881] = 5, + [32682] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(1141), 1, sym_keyword_comment, ACTIONS(1761), 1, sym_keyword_permissions, - ACTIONS(1713), 2, - ts_builtin_sym_end, - sym_semi_colon, - STATE(1182), 3, + ACTIONS(1759), 2, + sym_keyword_if, + sym_custom_function_name, + STATE(1184), 3, sym_permissions_basic_clause, sym_comment_clause, aux_sym_define_function_statement_repeat1, - [32900] = 5, + [32701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1763), 1, + anon_sym_COMMA, + STATE(1177), 1, + aux_sym_update_statement_repeat1, + ACTIONS(660), 5, + sym_semi_colon, + sym_keyword_parallel, + sym_keyword_timeout, + anon_sym_RPAREN, + anon_sym_RBRACE, + [32718] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1766), 1, + anon_sym_COMMA, + STATE(1187), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1614), 5, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + [32735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1704), 1, + ACTIONS(1730), 1, sym_keyword_comment, - ACTIONS(1767), 1, + ACTIONS(1768), 1, sym_keyword_permissions, - ACTIONS(1699), 2, + ACTIONS(1725), 2, sym_keyword_if, sym_custom_function_name, - STATE(1188), 3, + STATE(1179), 3, sym_permissions_basic_clause, sym_comment_clause, aux_sym_define_function_statement_repeat1, - [32919] = 5, + [32754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(1141), 1, sym_keyword_comment, ACTIONS(1761), 1, sym_keyword_permissions, - ACTIONS(1684), 2, - ts_builtin_sym_end, - sym_semi_colon, - STATE(1190), 3, + ACTIONS(1759), 2, + sym_keyword_if, + sym_custom_function_name, + STATE(1179), 3, sym_permissions_basic_clause, sym_comment_clause, aux_sym_define_function_statement_repeat1, - [32938] = 5, + [32773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1704), 1, - sym_keyword_comment, - ACTIONS(1770), 1, - sym_keyword_permissions, - ACTIONS(1699), 2, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(46), 1, + sym_record_id_value, + ACTIONS(426), 2, + sym_int, + sym_record_id_ident, + STATE(41), 2, + sym_array, + sym_object, + [32794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1766), 1, + anon_sym_COMMA, + STATE(1187), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1606), 5, ts_builtin_sym_end, sym_semi_colon, - STATE(1190), 3, - sym_permissions_basic_clause, - sym_comment_clause, - aux_sym_define_function_statement_repeat1, - [32957] = 5, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + [32811] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(49), 1, + sym_record_id_value, + ACTIONS(426), 2, + sym_int, + sym_record_id_ident, + STATE(41), 2, + sym_array, + sym_object, + [32832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, sym_keyword_comment, - ACTIONS(1750), 1, + ACTIONS(1761), 1, sym_keyword_permissions, - ACTIONS(1773), 2, + ACTIONS(1771), 2, sym_keyword_if, sym_custom_function_name, - STATE(1188), 3, + STATE(1179), 3, sym_permissions_basic_clause, sym_comment_clause, aux_sym_define_function_statement_repeat1, - [32976] = 4, + [32851] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, + ACTIONS(1735), 1, anon_sym_COMMA, - STATE(1192), 1, + STATE(1194), 1, aux_sym_when_then_clause_repeat1, - ACTIONS(1775), 5, + ACTIONS(1773), 5, ts_builtin_sym_end, sym_semi_colon, sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [32993] = 4, + [32868] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1735), 1, anon_sym_COMMA, - STATE(1192), 1, + STATE(1172), 1, aux_sym_when_then_clause_repeat1, - ACTIONS(1780), 5, + ACTIONS(1773), 5, ts_builtin_sym_end, sym_semi_colon, sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [33010] = 4, + [32885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + anon_sym_COMMA, + STATE(1187), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1601), 5, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + [32902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1743), 1, + sym_keyword_permissions, + ACTIONS(1696), 2, + ts_builtin_sym_end, + sym_semi_colon, + STATE(1168), 3, + sym_permissions_basic_clause, + sym_comment_clause, + aux_sym_define_function_statement_repeat1, + [32921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + sym_keyword_comment, + ACTIONS(1743), 1, + sym_keyword_permissions, + ACTIONS(1696), 2, + ts_builtin_sym_end, + sym_semi_colon, + STATE(1171), 3, + sym_permissions_basic_clause, + sym_comment_clause, + aux_sym_define_function_statement_repeat1, + [32940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 1, + anon_sym_snowball, + STATE(1005), 1, + sym_analyzer_filters, + ACTIONS(1739), 2, + anon_sym_edgengram, + anon_sym_ngram, + ACTIONS(1737), 3, + anon_sym_ascii, + anon_sym_lowercase, + anon_sym_uppercase, + [32959] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, + anon_sym_LBRACE, + ACTIONS(1778), 1, + sym_keyword_when, + ACTIONS(1780), 1, + sym_keyword_then, + STATE(1222), 1, + sym_when_then_clause, + STATE(1169), 2, + sym_block, + sym_sub_query, + [32982] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1735), 1, anon_sym_COMMA, - STATE(1171), 1, + STATE(1173), 1, aux_sym_when_then_clause_repeat1, - ACTIONS(1780), 5, + ACTIONS(1733), 5, ts_builtin_sym_end, sym_semi_colon, sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [33027] = 4, + [32999] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1766), 1, + anon_sym_COMMA, + STATE(1182), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1589), 5, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + [33016] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1735), 1, anon_sym_COMMA, - STATE(1168), 1, + STATE(1172), 1, aux_sym_when_then_clause_repeat1, ACTIONS(1782), 5, ts_builtin_sym_end, @@ -83204,1105 +83247,1091 @@ static const uint16_t ts_small_parse_table[] = { sym_keyword_comment, anon_sym_RPAREN, anon_sym_RBRACE, - [33044] = 6, + [33033] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACK, ACTIONS(43), 1, anon_sym_LBRACE, - STATE(50), 1, + STATE(48), 1, sym_record_id_value, - ACTIONS(383), 2, + ACTIONS(426), 2, sym_int, sym_record_id_ident, - STATE(45), 2, + STATE(41), 2, sym_array, sym_object, - [33065] = 5, + [33054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(1766), 1, + anon_sym_COMMA, + STATE(1178), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1595), 5, + ts_builtin_sym_end, + sym_semi_colon, + sym_keyword_return, + sym_keyword_parallel, + sym_keyword_timeout, + [33071] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, sym_keyword_comment, - ACTIONS(1750), 1, + ACTIONS(1761), 1, sym_keyword_permissions, - ACTIONS(1773), 2, + ACTIONS(1784), 2, sym_keyword_if, sym_custom_function_name, - STATE(1178), 3, + STATE(1180), 3, sym_permissions_basic_clause, sym_comment_clause, aux_sym_define_function_statement_repeat1, - [33084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - STATE(1295), 1, - sym_explain_clause, - ACTIONS(291), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [33100] = 6, + [33090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - sym_keyword_where, ACTIONS(1788), 1, + sym_keyword_where, + ACTIONS(1790), 1, anon_sym_COMMA, - STATE(940), 1, + STATE(907), 1, sym_where_clause, - STATE(1253), 1, + STATE(1227), 1, aux_sym_permissions_for_clause_repeat1, - ACTIONS(1784), 2, + ACTIONS(1786), 2, sym_keyword_full, sym_keyword_none, - [33120] = 4, + [33110] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, sym_keyword_explain, - STATE(1339), 1, + STATE(1418), 1, sym_explain_clause, - ACTIONS(1445), 4, + ACTIONS(1042), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33136] = 4, + [33126] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1790), 1, + anon_sym_COMMA, + ACTIONS(1794), 1, + sym_keyword_where, + STATE(947), 1, + sym_where_clause, + STATE(1202), 1, + aux_sym_permissions_for_clause_repeat1, + ACTIONS(1792), 2, + sym_keyword_full, + sym_keyword_none, + [33146] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1387), 1, + STATE(1408), 1, sym_parallel_clause, - ACTIONS(1478), 4, + ACTIONS(1689), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33152] = 4, + [33162] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1790), 1, + anon_sym_COMMA, + ACTIONS(1794), 1, + sym_keyword_where, + STATE(934), 1, + sym_where_clause, + STATE(1259), 1, + aux_sym_permissions_for_clause_repeat1, + ACTIONS(1796), 2, + sym_keyword_full, + sym_keyword_none, + [33182] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, sym_keyword_explain, - STATE(1308), 1, + STATE(1360), 1, sym_explain_clause, - ACTIONS(1790), 4, + ACTIONS(1006), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33168] = 2, + [33198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1775), 6, + ACTIONS(295), 1, + sym_keyword_parallel, + STATE(1409), 1, + sym_parallel_clause, + ACTIONS(1798), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_comment, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [33180] = 4, + [33214] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 1, + anon_sym_RBRACE, + ACTIONS(1802), 1, + aux_sym_type_name_token1, + ACTIONS(1804), 1, + sym_string, + STATE(1457), 1, + sym_object_property, + STATE(1745), 1, + sym_object_content, + STATE(1810), 1, + sym_object_key, + [33236] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, sym_keyword_explain, - STATE(1321), 1, + STATE(1352), 1, sym_explain_clause, - ACTIONS(1688), 4, + ACTIONS(1290), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33196] = 4, + [33252] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1334), 1, + STATE(1290), 1, sym_parallel_clause, - ACTIONS(1556), 4, + ACTIONS(1016), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33212] = 2, + [33268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(714), 6, + ACTIONS(1806), 6, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_parallel, - sym_keyword_timeout, + sym_keyword_unique, + sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [33224] = 2, + [33280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1792), 6, + ACTIONS(295), 1, + sym_keyword_parallel, + STATE(1288), 1, + sym_parallel_clause, + ACTIONS(1338), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_explain, - sym_keyword_parallel, anon_sym_RPAREN, anon_sym_RBRACE, - [33236] = 4, + [33296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - STATE(1326), 1, - sym_explain_clause, - ACTIONS(1489), 4, + ACTIONS(1259), 1, + anon_sym_COMMA, + STATE(1219), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1808), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33252] = 4, + [33312] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1319), 1, + STATE(1364), 1, sym_parallel_clause, - ACTIONS(1379), 4, + ACTIONS(1708), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33268] = 4, + [33328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - STATE(1314), 1, - sym_parallel_clause, - ACTIONS(1016), 4, + ACTIONS(1810), 6, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_explain, + sym_keyword_parallel, anon_sym_RPAREN, anon_sym_RBRACE, - [33284] = 4, + [33340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - STATE(1332), 1, - sym_parallel_clause, - ACTIONS(1244), 4, + ACTIONS(708), 6, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_parallel, + sym_keyword_timeout, anon_sym_RPAREN, anon_sym_RBRACE, - [33300] = 6, + [33352] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 1, - anon_sym_COMMA, - ACTIONS(1796), 1, - sym_keyword_where, - STATE(946), 1, - sym_where_clause, - STATE(1273), 1, - aux_sym_permissions_for_clause_repeat1, - ACTIONS(1794), 2, - sym_keyword_full, - sym_keyword_none, - [33320] = 2, + ACTIONS(1802), 1, + aux_sym_type_name_token1, + ACTIONS(1804), 1, + sym_string, + ACTIONS(1812), 1, + anon_sym_RBRACE, + STATE(1457), 1, + sym_object_property, + STATE(1809), 1, + sym_object_content, + STATE(1810), 1, + sym_object_key, + [33374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1798), 6, + ACTIONS(295), 1, + sym_keyword_parallel, + STATE(1287), 1, + sym_parallel_clause, + ACTIONS(1537), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_unique, - sym_keyword_search, anon_sym_RPAREN, anon_sym_RBRACE, - [33332] = 7, + [33390] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_RBRACE, ACTIONS(1802), 1, aux_sym_type_name_token1, ACTIONS(1804), 1, sym_string, - STATE(1455), 1, + ACTIONS(1814), 1, + anon_sym_RBRACE, + STATE(1457), 1, sym_object_property, - STATE(1793), 1, - sym_object_key, - STATE(1828), 1, + STATE(1724), 1, sym_object_content, - [33354] = 6, + STATE(1810), 1, + sym_object_key, + [33412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 1, - anon_sym_COMMA, - ACTIONS(1808), 1, - sym_keyword_where, - STATE(918), 1, - sym_where_clause, - STATE(1217), 1, - aux_sym_permissions_for_clause_repeat1, - ACTIONS(1806), 2, - sym_keyword_full, - sym_keyword_none, - [33374] = 4, + ACTIONS(1141), 1, + sym_keyword_comment, + STATE(1285), 1, + sym_comment_clause, + ACTIONS(1816), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [33428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + sym_keyword_comment, + STATE(1377), 1, + sym_comment_clause, + ACTIONS(1818), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [33444] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - STATE(795), 1, + STATE(791), 1, aux_sym_define_user_statement_repeat1, - ACTIONS(1810), 4, + ACTIONS(1820), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33390] = 6, + [33460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 1, + ACTIONS(1790), 1, anon_sym_COMMA, - ACTIONS(1808), 1, + ACTIONS(1822), 1, sym_keyword_where, - STATE(946), 1, + STATE(947), 1, sym_where_clause, - STATE(1273), 1, + STATE(1255), 1, aux_sym_permissions_for_clause_repeat1, - ACTIONS(1794), 2, + ACTIONS(1792), 2, sym_keyword_full, sym_keyword_none, - [33410] = 6, + [33480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 1, - anon_sym_COMMA, - ACTIONS(1812), 1, - sym_keyword_where, - STATE(940), 1, - sym_where_clause, - STATE(1222), 1, - aux_sym_permissions_for_clause_repeat1, - ACTIONS(1784), 2, - sym_keyword_full, - sym_keyword_none, - [33430] = 4, + ACTIONS(293), 1, + sym_keyword_explain, + STATE(1370), 1, + sym_explain_clause, + ACTIONS(1177), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [33496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + sym_keyword_comment, + STATE(1311), 1, + sym_comment_clause, + ACTIONS(1824), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [33512] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1298), 1, + STATE(1371), 1, sym_parallel_clause, - ACTIONS(1814), 4, + ACTIONS(1545), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33446] = 7, + [33528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, - aux_sym_type_name_token1, - ACTIONS(1804), 1, - sym_string, - ACTIONS(1816), 1, + ACTIONS(293), 1, + sym_keyword_explain, + STATE(1363), 1, + sym_explain_clause, + ACTIONS(1253), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1455), 1, - sym_object_property, - STATE(1793), 1, - sym_object_key, - STATE(1815), 1, - sym_object_content, - [33468] = 4, + [33544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - STATE(1301), 1, - sym_parallel_clause, - ACTIONS(1709), 4, + ACTIONS(293), 1, + sym_keyword_explain, + STATE(1333), 1, + sym_explain_clause, + ACTIONS(1461), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33484] = 6, + [33560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 1, + ACTIONS(1790), 1, anon_sym_COMMA, - ACTIONS(1812), 1, + ACTIONS(1826), 1, sym_keyword_where, - STATE(930), 1, + STATE(907), 1, sym_where_clause, - STATE(1273), 1, + STATE(1240), 1, aux_sym_permissions_for_clause_repeat1, - ACTIONS(1818), 2, + ACTIONS(1786), 2, sym_keyword_full, sym_keyword_none, - [33504] = 4, + [33580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - STATE(1280), 1, - sym_explain_clause, - ACTIONS(1042), 4, + ACTIONS(1788), 1, + sym_keyword_where, + ACTIONS(1790), 1, + anon_sym_COMMA, + STATE(916), 1, + sym_where_clause, + STATE(1259), 1, + aux_sym_permissions_for_clause_repeat1, + ACTIONS(1828), 2, + sym_keyword_full, + sym_keyword_none, + [33600] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1259), 1, + anon_sym_COMMA, + STATE(1229), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1830), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33520] = 4, + [33616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(722), 1, + ACTIONS(1259), 1, anon_sym_COMMA, - STATE(1242), 1, - aux_sym_update_statement_repeat1, - ACTIONS(1763), 4, + STATE(791), 1, + aux_sym_define_user_statement_repeat1, + ACTIONS(1808), 4, ts_builtin_sym_end, sym_semi_colon, - sym_keyword_parallel, - sym_keyword_timeout, - [33536] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [33632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, + ACTIONS(295), 1, + sym_keyword_parallel, STATE(1388), 1, - sym_explain_clause, - ACTIONS(1006), 4, + sym_parallel_clause, + ACTIONS(1832), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [33648] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1752), 6, ts_builtin_sym_end, sym_semi_colon, + sym_keyword_comment, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - [33552] = 4, + [33660] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, sym_keyword_explain, - STATE(1277), 1, + STATE(1315), 1, sym_explain_clause, - ACTIONS(1273), 4, + ACTIONS(1486), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33568] = 4, + [33676] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1364), 1, + STATE(1391), 1, sym_parallel_clause, - ACTIONS(1820), 4, + ACTIONS(1700), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [33692] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(295), 1, + sym_keyword_parallel, + STATE(1397), 1, + sym_parallel_clause, + ACTIONS(1631), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33584] = 7, + [33708] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, aux_sym_type_name_token1, ACTIONS(1804), 1, sym_string, - ACTIONS(1822), 1, + ACTIONS(1834), 1, anon_sym_RBRACE, - STATE(1455), 1, + STATE(1457), 1, sym_object_property, - STATE(1770), 1, + STATE(1701), 1, sym_object_content, - STATE(1793), 1, + STATE(1810), 1, sym_object_key, - [33606] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - anon_sym_COMMA, - STATE(795), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1824), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [33622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - anon_sym_COMMA, - STATE(1216), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1824), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [33638] = 4, + [33730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - STATE(1366), 1, - sym_comment_clause, - ACTIONS(1826), 4, + ACTIONS(295), 1, + sym_keyword_parallel, + STATE(1337), 1, + sym_parallel_clause, + ACTIONS(1698), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33654] = 4, + [33746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, - sym_keyword_comment, - STATE(1278), 1, - sym_comment_clause, - ACTIONS(1828), 4, + ACTIONS(295), 1, + sym_keyword_parallel, + STATE(1375), 1, + sym_parallel_clause, + ACTIONS(1836), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33670] = 7, + [33762] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, aux_sym_type_name_token1, ACTIONS(1804), 1, sym_string, - ACTIONS(1830), 1, + ACTIONS(1838), 1, anon_sym_RBRACE, - STATE(1455), 1, + STATE(1457), 1, sym_object_property, STATE(1705), 1, sym_object_content, - STATE(1793), 1, + STATE(1810), 1, sym_object_key, - [33692] = 4, + [33784] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 1, + sym_keyword_explain, + STATE(1400), 1, + sym_explain_clause, + ACTIONS(1075), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [33800] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1790), 1, + anon_sym_COMMA, + ACTIONS(1826), 1, + sym_keyword_where, + STATE(916), 1, + sym_where_clause, + STATE(1259), 1, + aux_sym_permissions_for_clause_repeat1, + ACTIONS(1828), 2, + sym_keyword_full, + sym_keyword_none, + [33820] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, sym_keyword_explain, - STATE(1322), 1, + STATE(1305), 1, sym_explain_clause, - ACTIONS(1251), 4, + ACTIONS(1702), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33708] = 4, + [33836] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1412), 1, + STATE(1321), 1, sym_parallel_clause, - ACTIONS(1680), 4, + ACTIONS(375), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33724] = 4, + [33852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - STATE(1385), 1, - sym_parallel_clause, - ACTIONS(1540), 4, + ACTIONS(293), 1, + sym_keyword_explain, + STATE(1297), 1, + sym_explain_clause, + ACTIONS(1840), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33740] = 4, + [33868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - STATE(1363), 1, - sym_parallel_clause, - ACTIONS(1832), 4, + ACTIONS(1842), 1, + anon_sym_COMMA, + STATE(1244), 1, + aux_sym_update_statement_repeat1, + ACTIONS(660), 4, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [33756] = 4, + sym_keyword_parallel, + sym_keyword_timeout, + [33884] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1380), 1, + STATE(1353), 1, sym_parallel_clause, - ACTIONS(1544), 4, + ACTIONS(1845), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33772] = 4, + [33900] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1381), 1, + STATE(1345), 1, sym_parallel_clause, - ACTIONS(1724), 4, + ACTIONS(1480), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33788] = 4, + [33916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 1, - sym_keyword_explain, - STATE(1394), 1, - sym_explain_clause, - ACTIONS(1169), 4, + ACTIONS(295), 1, + sym_keyword_parallel, + STATE(1328), 1, + sym_parallel_clause, + ACTIONS(664), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33804] = 4, + [33932] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1276), 1, + STATE(1401), 1, sym_parallel_clause, - ACTIONS(1532), 4, + ACTIONS(1424), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33820] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1834), 1, - anon_sym_COMMA, - STATE(1242), 1, - aux_sym_update_statement_repeat1, - ACTIONS(656), 4, - ts_builtin_sym_end, - sym_semi_colon, - sym_keyword_parallel, - sym_keyword_timeout, - [33836] = 4, + [33948] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1373), 1, + STATE(1344), 1, sym_parallel_clause, - ACTIONS(1837), 4, + ACTIONS(1539), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33852] = 4, + [33964] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(293), 1, sym_keyword_explain, - STATE(1291), 1, + STATE(1302), 1, sym_explain_clause, - ACTIONS(1046), 4, + ACTIONS(331), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33868] = 4, + [33980] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, sym_keyword_parallel, - STATE(1376), 1, + STATE(1335), 1, sym_parallel_clause, - ACTIONS(1707), 4, + ACTIONS(1255), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33884] = 4, + [33996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - STATE(1350), 1, - sym_parallel_clause, - ACTIONS(670), 4, + ACTIONS(720), 1, + anon_sym_COMMA, + STATE(1244), 1, + aux_sym_update_statement_repeat1, + ACTIONS(1747), 4, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [33900] = 7, + sym_keyword_parallel, + sym_keyword_timeout, + [34012] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, aux_sym_type_name_token1, ACTIONS(1804), 1, sym_string, - ACTIONS(1839), 1, + ACTIONS(1847), 1, anon_sym_RBRACE, - STATE(1455), 1, + STATE(1457), 1, sym_object_property, - STATE(1792), 1, - sym_object_content, - STATE(1793), 1, + STATE(1810), 1, sym_object_key, - [33922] = 7, + STATE(1858), 1, + sym_object_content, + [34034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1802), 1, - aux_sym_type_name_token1, - ACTIONS(1804), 1, - sym_string, - ACTIONS(1841), 1, + ACTIONS(1141), 1, + sym_keyword_comment, + STATE(1354), 1, + sym_comment_clause, + ACTIONS(1849), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1455), 1, - sym_object_property, - STATE(1734), 1, - sym_object_content, - STATE(1793), 1, - sym_object_key, - [33944] = 6, + [34050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 1, + ACTIONS(1790), 1, anon_sym_COMMA, - ACTIONS(1796), 1, + ACTIONS(1822), 1, sym_keyword_where, - STATE(918), 1, + STATE(934), 1, sym_where_clause, - STATE(1212), 1, + STATE(1259), 1, aux_sym_permissions_for_clause_repeat1, - ACTIONS(1806), 2, + ACTIONS(1796), 2, sym_keyword_full, sym_keyword_none, - [33964] = 4, + [34070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - STATE(1362), 1, - sym_parallel_clause, - ACTIONS(371), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [33980] = 4, + STATE(995), 1, + sym_analyzer_tokenizers, + ACTIONS(1851), 4, + anon_sym_blank, + anon_sym_camel, + anon_sym_class, + anon_sym_punct, + [34083] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - STATE(1229), 1, - aux_sym_define_user_statement_repeat1, - ACTIONS(1843), 4, - ts_builtin_sym_end, + STATE(1261), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1853), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [33996] = 4, + [34098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym_keyword_parallel, - STATE(1315), 1, - sym_parallel_clause, - ACTIONS(1396), 4, - ts_builtin_sym_end, + ACTIONS(1855), 1, + anon_sym_COMMA, + STATE(1268), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1857), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34012] = 6, + [34113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1786), 1, - sym_keyword_where, - ACTIONS(1788), 1, + ACTIONS(1861), 1, anon_sym_COMMA, - STATE(930), 1, - sym_where_clause, - STATE(1273), 1, + STATE(1259), 1, aux_sym_permissions_for_clause_repeat1, - ACTIONS(1818), 2, + ACTIONS(1859), 3, sym_keyword_full, + sym_keyword_where, sym_keyword_none, - [34032] = 3, + [34128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, - sym_keyword_transaction, - ACTIONS(1845), 4, - ts_builtin_sym_end, - sym_semi_colon, + ACTIONS(736), 1, + sym_keyword_as, + ACTIONS(738), 1, + sym_keyword_where, + STATE(1428), 1, + sym_where_clause, + ACTIONS(740), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACE, - [34045] = 4, + [34145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - STATE(1256), 1, + STATE(1267), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1849), 3, + ACTIONS(1857), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34060] = 4, + [34160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_COMMA, - STATE(1266), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1853), 3, + ACTIONS(1866), 1, + sym_keyword_full, + ACTIONS(1864), 4, + ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34075] = 4, + [34173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_COMMA, - STATE(1258), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1853), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34090] = 4, + ACTIONS(1868), 1, + sym_keyword_if, + ACTIONS(1870), 1, + sym_keyword_overwrite, + ACTIONS(1872), 1, + aux_sym_type_name_token1, + STATE(923), 1, + sym_identifier, + STATE(1650), 1, + sym_if_not_exists_clause, + [34192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_COMMA, - STATE(1266), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1855), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34105] = 4, + ACTIONS(1868), 1, + sym_keyword_if, + ACTIONS(1872), 1, + aux_sym_type_name_token1, + ACTIONS(1874), 1, + sym_keyword_overwrite, + STATE(1254), 1, + sym_identifier, + STATE(1659), 1, + sym_if_not_exists_clause, + [34211] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_COMMA, - STATE(1260), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1855), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34120] = 4, + ACTIONS(1876), 1, + aux_sym_type_name_token1, + ACTIONS(1878), 1, + sym_int, + STATE(1669), 1, + sym_type, + STATE(862), 2, + sym_type_name, + sym_parameterized_type, + [34228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, - anon_sym_COMMA, - STATE(1266), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1857), 3, + ACTIONS(1880), 5, + ts_builtin_sym_end, sym_semi_colon, + sym_keyword_explain, anon_sym_RPAREN, anon_sym_RBRACE, - [34135] = 4, + [34239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1882), 1, anon_sym_COMMA, - STATE(1262), 1, + STATE(1267), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1857), 3, + ACTIONS(1601), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34150] = 4, + [34254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - STATE(1266), 1, + STATE(1267), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1859), 3, + ACTIONS(1885), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34165] = 4, + [34269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - STATE(1264), 1, + STATE(1267), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1859), 3, + ACTIONS(1887), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34180] = 4, + [34284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - STATE(1266), 1, + STATE(1269), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1861), 3, + ACTIONS(1889), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34195] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - sym_keyword_if, - ACTIONS(1865), 1, - sym_keyword_overwrite, - ACTIONS(1867), 1, - aux_sym_type_name_token1, - STATE(925), 1, - sym_identifier, - STATE(1643), 1, - sym_if_not_exists_clause, - [34214] = 4, + [34299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - STATE(1266), 1, + STATE(1267), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1620), 3, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1874), 1, - sym_keyword_transaction, - ACTIONS(1872), 4, - ts_builtin_sym_end, + ACTIONS(1889), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34242] = 3, + [34314] = 3, ACTIONS(3), 1, sym_comment, - STATE(1033), 1, + STATE(1046), 1, sym_analyzer_tokenizers, - ACTIONS(1876), 4, + ACTIONS(1851), 4, anon_sym_blank, anon_sym_camel, anon_sym_class, anon_sym_punct, - [34255] = 2, + [34327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1878), 5, - ts_builtin_sym_end, + ACTIONS(1855), 1, + anon_sym_COMMA, + STATE(1271), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1891), 3, sym_semi_colon, - sym_keyword_explain, anon_sym_RPAREN, anon_sym_RBRACE, - [34266] = 5, + [34342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(744), 1, - sym_keyword_as, - ACTIONS(746), 1, - sym_keyword_where, - STATE(1466), 1, - sym_where_clause, - ACTIONS(748), 2, + ACTIONS(1855), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [34283] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1014), 1, - sym_analyzer_tokenizers, - ACTIONS(1876), 4, - anon_sym_blank, - anon_sym_camel, - anon_sym_class, - anon_sym_punct, - [34296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1882), 1, - sym_keyword_full, - ACTIONS(1880), 4, - ts_builtin_sym_end, + STATE(1267), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1891), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34309] = 4, + [34357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1886), 1, + ACTIONS(1855), 1, anon_sym_COMMA, - STATE(1273), 1, - aux_sym_permissions_for_clause_repeat1, - ACTIONS(1884), 3, - sym_keyword_full, - sym_keyword_where, - sym_keyword_none, - [34324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1891), 1, - sym_keyword_transaction, - ACTIONS(1889), 4, - ts_builtin_sym_end, + STATE(1274), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1885), 3, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34337] = 5, + [34372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - aux_sym_type_name_token1, ACTIONS(1895), 1, - sym_int, - STATE(1610), 1, - sym_type, - STATE(869), 2, - sym_type_name, - sym_parameterized_type, - [34354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1680), 4, + sym_keyword_transaction, + ACTIONS(1893), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34364] = 2, + [34385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 4, + ACTIONS(1899), 1, + sym_keyword_transaction, + ACTIONS(1897), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34374] = 2, + [34398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 4, + ACTIONS(1903), 1, + sym_keyword_transaction, + ACTIONS(1901), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34384] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 1, - anon_sym_LPAREN, - ACTIONS(1901), 1, - anon_sym_LT, - STATE(83), 1, - sym_argument_list, - STATE(1599), 1, - sym_version, - [34400] = 2, + [34411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1046), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34410] = 5, + ACTIONS(53), 1, + sym_decimal, + STATE(1707), 1, + sym_number, + ACTIONS(51), 2, + sym_int, + sym_float, + [34425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - sym_keyword_if, - ACTIONS(1867), 1, - aux_sym_type_name_token1, - STATE(1645), 1, - sym_if_not_exists_clause, - STATE(1646), 1, - sym_identifier, - [34426] = 5, + ACTIONS(1859), 4, + sym_keyword_full, + sym_keyword_where, + sym_keyword_none, + anon_sym_COMMA, + [34435] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(1903), 1, - anon_sym_LBRACK, ACTIONS(1905), 1, + anon_sym_LBRACK, + ACTIONS(1907), 1, anon_sym_LPAREN, - STATE(1302), 1, + STATE(1291), 1, sym_object, - [34442] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(748), 1, - sym_assignment_operator, - ACTIONS(1907), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [34454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1367), 1, - sym_keyword_for, - STATE(923), 1, - aux_sym_permissions_for_clause_repeat2, - ACTIONS(1909), 2, - sym_keyword_full, - sym_keyword_none, - [34468] = 3, + [34451] = 5, ACTIONS(3), 1, sym_comment, - STATE(693), 1, - sym_assignment_operator, - ACTIONS(1907), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [34480] = 5, + ACTIONS(1909), 1, + anon_sym_STAR, + ACTIONS(1911), 1, + aux_sym_type_name_token1, + ACTIONS(1913), 1, + sym_function_name, + STATE(350), 1, + sym_identifier, + [34467] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, - ACTIONS(1911), 1, + ACTIONS(1915), 1, anon_sym_LBRACK, - ACTIONS(1913), 1, + ACTIONS(1917), 1, anon_sym_LPAREN, - STATE(1377), 1, + STATE(1318), 1, sym_object, - [34496] = 5, + [34483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_STAR, - ACTIONS(1917), 1, + ACTIONS(1876), 1, aux_sym_type_name_token1, - ACTIONS(1919), 1, - sym_function_name, - STATE(58), 1, - sym_identifier, - [34512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1884), 4, - sym_keyword_full, - sym_keyword_where, - sym_keyword_none, - anon_sym_COMMA, - [34522] = 4, + STATE(919), 1, + sym_type, + STATE(862), 2, + sym_type_name, + sym_parameterized_type, + [34497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - sym_decimal, - STATE(1803), 1, - sym_number, - ACTIONS(51), 2, - sym_int, - sym_float, - [34536] = 2, + ACTIONS(1919), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [34507] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1921), 4, @@ -84310,794 +84339,859 @@ static const uint16_t ts_small_parse_table[] = { sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34546] = 2, + [34517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1169), 4, + ACTIONS(1698), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34556] = 2, + [34527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 4, + ACTIONS(1539), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34566] = 5, + [34537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - sym_keyword_if, - ACTIONS(1867), 1, - aux_sym_type_name_token1, - STATE(1638), 1, - sym_if_not_exists_clause, - STATE(1639), 1, - sym_identifier, - [34582] = 2, + ACTIONS(1923), 1, + anon_sym_COMMA, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + ACTIONS(660), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + [34551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1925), 4, + ACTIONS(1480), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34592] = 2, + [34561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1006), 4, + ACTIONS(1926), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34602] = 5, + [34571] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1337), 1, - anon_sym_LT, - ACTIONS(1927), 1, - anon_sym_COMMA, - ACTIONS(1929), 1, - anon_sym_RPAREN, - STATE(1568), 1, - aux_sym_param_list_repeat1, - [34618] = 4, + ACTIONS(1928), 1, + anon_sym_STAR, + ACTIONS(1930), 1, + aux_sym_type_name_token1, + ACTIONS(1932), 1, + sym_function_name, + STATE(27), 1, + sym_identifier, + [34587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1931), 1, - anon_sym_COMMA, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - ACTIONS(656), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - [34632] = 2, + ACTIONS(1934), 4, + sym_keyword_select, + sym_keyword_create, + sym_keyword_delete, + sym_keyword_update, + [34597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1934), 4, + ACTIONS(1936), 1, + anon_sym_COMMA, + STATE(1374), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1887), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34642] = 5, + [34611] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1936), 1, - anon_sym_STAR, - ACTIONS(1938), 1, - aux_sym_type_name_token1, - ACTIONS(1940), 1, - sym_function_name, - STATE(38), 1, - sym_identifier, - [34658] = 4, + anon_sym_COMMA, + STATE(1294), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1889), 2, + ts_builtin_sym_end, + sym_semi_colon, + [34625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, + ACTIONS(1936), 1, anon_sym_COMMA, - STATE(1400), 1, + STATE(1374), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1861), 2, + ACTIONS(1889), 2, ts_builtin_sym_end, sym_semi_colon, - [34672] = 2, + [34639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1832), 4, + ACTIONS(1938), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34682] = 2, + [34649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 4, + ACTIONS(331), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34692] = 5, + [34659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1901), 1, - anon_sym_LT, - ACTIONS(1946), 1, + ACTIONS(1936), 1, + anon_sym_COMMA, + STATE(1296), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1891), 2, + ts_builtin_sym_end, + sym_semi_colon, + [34673] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1940), 1, anon_sym_LPAREN, - STATE(67), 1, + ACTIONS(1942), 1, + anon_sym_LT, + STATE(66), 1, sym_argument_list, - STATE(1666), 1, + STATE(1611), 1, sym_version, - [34708] = 2, + [34689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 4, + ACTIONS(1936), 1, + anon_sym_COMMA, + STATE(1374), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1891), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34718] = 4, + [34703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, - anon_sym_COMMA, - STATE(1300), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1859), 2, + ACTIONS(1006), 4, ts_builtin_sym_end, sym_semi_colon, - [34732] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [34713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1950), 1, + ACTIONS(1944), 1, anon_sym_LPAREN, - ACTIONS(1952), 1, + ACTIONS(1946), 1, anon_sym_QMARK, - ACTIONS(1954), 1, + ACTIONS(1948), 1, aux_sym_type_name_token1, - STATE(26), 1, + STATE(31), 1, sym_identifier, - [34748] = 4, + [34729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1859), 2, + ACTIONS(1950), 4, ts_builtin_sym_end, sym_semi_colon, - [34762] = 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [34739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 4, + ACTIONS(1840), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34772] = 5, + [34749] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + sym_decimal, + STATE(1106), 1, + sym_number, + ACTIONS(51), 2, + sym_int, + sym_float, + [34763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, + ACTIONS(1952), 1, sym_keyword_from, - ACTIONS(1960), 1, + ACTIONS(1954), 1, sym_keyword_omit, - STATE(1372), 1, + STATE(1402), 1, sym_from_clause, - STATE(1587), 1, + STATE(1602), 1, sym_omit_clause, - [34788] = 4, + [34779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, - anon_sym_COMMA, - STATE(1307), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1857), 2, - ts_builtin_sym_end, - sym_semi_colon, - [34802] = 2, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, + anon_sym_LBRACE, + STATE(1192), 2, + sym_block, + sym_sub_query, + [34793] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1962), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34812] = 2, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1905), 1, + anon_sym_LBRACK, + ACTIONS(1956), 1, + anon_sym_LPAREN, + STATE(1291), 1, + sym_object, + [34809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 4, + ACTIONS(1936), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1885), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34822] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(708), 1, - sym_assignment_operator, - ACTIONS(1907), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [34834] = 2, + [34823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1478), 4, + ACTIONS(1958), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34844] = 2, + [34833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1532), 4, + ACTIONS(1936), 1, + anon_sym_COMMA, + STATE(1374), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1885), 2, ts_builtin_sym_end, sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34854] = 4, + [34847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1351), 1, - sym_keyword_for, - STATE(921), 1, - aux_sym_permissions_for_clause_repeat2, - ACTIONS(1966), 2, - sym_keyword_full, - sym_keyword_none, - [34868] = 4, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, + anon_sym_LBRACE, + STATE(1231), 2, + sym_block, + sym_sub_query, + [34861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1857), 2, + ACTIONS(1868), 1, + sym_keyword_if, + ACTIONS(1872), 1, + aux_sym_type_name_token1, + STATE(815), 1, + sym_identifier, + STATE(1613), 1, + sym_if_not_exists_clause, + [34877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1702), 4, ts_builtin_sym_end, sym_semi_colon, - [34882] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [34887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN, + ACTIONS(1962), 1, + anon_sym_QMARK, + ACTIONS(1964), 1, aux_sym_type_name_token1, - ACTIONS(1968), 1, - anon_sym_STAR, - ACTIONS(1970), 1, - sym_function_name, - STATE(314), 1, + STATE(61), 1, sym_identifier, - [34898] = 2, + [34903] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1876), 1, + aux_sym_type_name_token1, + STATE(908), 1, + sym_type, + STATE(862), 2, + sym_type_name, + sym_parameterized_type, + [34917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1544), 4, + ACTIONS(1966), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34908] = 5, + [34927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - sym_keyword_if, - ACTIONS(1867), 1, + ACTIONS(1872), 1, aux_sym_type_name_token1, - STATE(1652), 1, - sym_if_not_exists_clause, - STATE(1759), 1, + ACTIONS(1968), 1, + anon_sym_STAR, + ACTIONS(1970), 1, + sym_function_name, + STATE(310), 1, sym_identifier, - [34924] = 2, + [34943] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1972), 4, + sym_keyword_select, + sym_keyword_create, + sym_keyword_delete, + sym_keyword_update, + [34953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 4, + ACTIONS(1016), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34934] = 2, + [34963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1974), 4, + sym_keyword_select, + sym_keyword_create, + sym_keyword_delete, + sym_keyword_update, + [34973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 4, + ACTIONS(780), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34944] = 2, + [34983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 4, + ACTIONS(1976), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34954] = 4, + [34993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, + ACTIONS(1936), 1, anon_sym_COMMA, - STATE(1317), 1, + STATE(1312), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1855), 2, + ACTIONS(1857), 2, ts_builtin_sym_end, sym_semi_colon, - [34968] = 4, + [35007] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, + ACTIONS(1954), 1, + sym_keyword_omit, + ACTIONS(1978), 1, + sym_keyword_from, + STATE(1402), 1, + sym_from_clause, + STATE(1645), 1, + sym_omit_clause, + [35023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, anon_sym_COMMA, - STATE(1400), 1, + STATE(1374), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1855), 2, + ACTIONS(1857), 2, ts_builtin_sym_end, sym_semi_colon, - [34982] = 2, + [35037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1688), 4, + ACTIONS(1338), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [34992] = 2, + [35047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1974), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [35002] = 2, + STATE(724), 1, + sym_assignment_operator, + ACTIONS(1980), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [35059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1244), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [35012] = 4, + ACTIONS(1876), 1, + aux_sym_type_name_token1, + STATE(1380), 1, + sym_type, + STATE(862), 2, + sym_type_name, + sym_parameterized_type, + [35073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 1, + ACTIONS(1984), 1, + sym_keyword_where, + STATE(1163), 1, + sym_where_clause, + ACTIONS(1982), 2, + sym_keyword_full, + sym_keyword_none, + [35087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1988), 1, anon_sym_COMMA, - STATE(1361), 1, + STATE(1405), 1, aux_sym_select_clause_repeat1, - ACTIONS(1976), 2, + ACTIONS(1986), 2, sym_keyword_from, sym_keyword_omit, - [35026] = 4, + [35101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, - anon_sym_COMMA, - STATE(1325), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1853), 2, + ACTIONS(1486), 4, ts_builtin_sym_end, sym_semi_colon, - [35040] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_LBRACE, - STATE(1170), 2, - sym_block, - sym_sub_query, - [35054] = 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [35111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 4, + ACTIONS(1990), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35064] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1982), 1, - sym_keyword_where, - STATE(1110), 1, - sym_where_clause, - ACTIONS(1980), 2, - sym_keyword_full, - sym_keyword_none, - [35078] = 2, + [35121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1707), 4, + ACTIONS(1537), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1403), 1, - sym_keyword_for, - STATE(956), 1, - aux_sym_permissions_for_clause_repeat2, - ACTIONS(1966), 2, - sym_keyword_full, - sym_keyword_none, - [35102] = 2, + [35131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(670), 4, + ACTIONS(1992), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35112] = 3, + [35141] = 2, ACTIONS(3), 1, sym_comment, - STATE(700), 1, - sym_assignment_operator, - ACTIONS(1907), 3, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - [35124] = 4, + ACTIONS(1832), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [35151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1853), 2, + ACTIONS(1994), 4, ts_builtin_sym_end, sym_semi_colon, - [35138] = 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [35161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 4, + ACTIONS(1996), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35148] = 5, + [35171] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - ACTIONS(1984), 1, - sym_keyword_if, - STATE(1290), 1, + ACTIONS(1998), 1, + anon_sym_LPAREN, + ACTIONS(2000), 1, + anon_sym_QMARK, + STATE(298), 1, sym_identifier, - STATE(1655), 1, - sym_if_exists_clause, - [35164] = 5, + [35187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1960), 1, - sym_keyword_omit, - ACTIONS(1986), 1, - sym_keyword_from, - STATE(1372), 1, - sym_from_clause, - STATE(1629), 1, - sym_omit_clause, - [35180] = 3, + ACTIONS(1428), 1, + sym_keyword_for, + STATE(960), 1, + aux_sym_permissions_for_clause_repeat2, + ACTIONS(2002), 2, + sym_keyword_full, + sym_keyword_none, + [35201] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + sym_keyword_where, + STATE(1163), 1, + sym_where_clause, + ACTIONS(1982), 2, + sym_keyword_full, + sym_keyword_none, + [35215] = 3, ACTIONS(3), 1, sym_comment, - STATE(720), 1, + STATE(694), 1, sym_assignment_operator, - ACTIONS(1907), 3, + ACTIONS(1980), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [35192] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1988), 1, - anon_sym_LPAREN, - ACTIONS(1990), 1, - anon_sym_QMARK, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(304), 1, - sym_identifier, - [35208] = 2, + [35227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1994), 4, + ACTIONS(1700), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35218] = 2, + [35237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(790), 4, + ACTIONS(1631), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35228] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1996), 4, - sym_keyword_select, - sym_keyword_create, - sym_keyword_delete, - sym_keyword_update, - [35238] = 2, + [35247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1998), 4, + ACTIONS(2006), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35248] = 4, + [35257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(1868), 1, + sym_keyword_if, + ACTIONS(1872), 1, aux_sym_type_name_token1, - STATE(916), 1, - sym_type, - STATE(869), 2, - sym_type_name, - sym_parameterized_type, - [35262] = 2, + STATE(1648), 1, + sym_if_not_exists_clause, + STATE(1649), 1, + sym_identifier, + [35273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2000), 4, + ACTIONS(2008), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35272] = 2, + [35283] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [35282] = 4, + ACTIONS(1868), 1, + sym_keyword_if, + ACTIONS(1872), 1, + aux_sym_type_name_token1, + STATE(1612), 1, + sym_identifier, + STATE(1693), 1, + sym_if_not_exists_clause, + [35299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, + ACTIONS(1936), 1, anon_sym_COMMA, - STATE(1338), 1, + STATE(1327), 1, aux_sym_insert_statement_repeat3, - ACTIONS(1849), 2, + ACTIONS(1853), 2, ts_builtin_sym_end, sym_semi_colon, - [35296] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_LBRACE, - STATE(1113), 2, - sym_block, - sym_sub_query, - [35310] = 4, + [35313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, - sym_keyword_where, - STATE(1110), 1, - sym_where_clause, - ACTIONS(1980), 2, - sym_keyword_full, - sym_keyword_none, - [35324] = 2, + ACTIONS(1868), 1, + sym_keyword_if, + ACTIONS(1872), 1, + aux_sym_type_name_token1, + STATE(1653), 1, + sym_if_not_exists_clause, + STATE(1677), 1, + sym_identifier, + [35329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2004), 4, + ACTIONS(1461), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35334] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - ACTIONS(2006), 1, - anon_sym_LPAREN, - ACTIONS(2008), 1, - anon_sym_QMARK, - STATE(59), 1, - sym_identifier, - [35350] = 2, + [35339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 4, + ACTIONS(2010), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35360] = 2, + [35349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(371), 4, + ACTIONS(1816), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35370] = 4, + [35359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_LBRACE, - STATE(1203), 2, - sym_block, - sym_sub_query, - [35384] = 4, + ACTIONS(1868), 1, + sym_keyword_if, + ACTIONS(1872), 1, + aux_sym_type_name_token1, + STATE(924), 1, + sym_identifier, + STATE(1655), 1, + sym_if_not_exists_clause, + [35375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_LBRACE, - STATE(1103), 2, - sym_block, - sym_sub_query, - [35398] = 5, + STATE(668), 1, + sym_assignment_operator, + ACTIONS(1980), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [35387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(1467), 1, + sym_keyword_for, + STATE(978), 1, + aux_sym_permissions_for_clause_repeat2, + ACTIONS(2012), 2, + sym_keyword_full, + sym_keyword_none, + [35401] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1868), 1, sym_keyword_if, - ACTIONS(2010), 1, + ACTIONS(1872), 1, aux_sym_type_name_token1, - STATE(1571), 1, + STATE(846), 1, sym_identifier, - STATE(1654), 1, - sym_if_exists_clause, - [35414] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1978), 1, - anon_sym_COMMA, - STATE(1407), 1, - aux_sym_select_clause_repeat1, - ACTIONS(2012), 2, - sym_keyword_from, - sym_keyword_omit, - [35428] = 2, + STATE(1656), 1, + sym_if_not_exists_clause, + [35417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1016), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [35438] = 2, + ACTIONS(2014), 1, + sym_keyword_where, + STATE(1163), 1, + sym_where_clause, + ACTIONS(1982), 2, + sym_keyword_full, + sym_keyword_none, + [35431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 4, + ACTIONS(1042), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35448] = 2, + [35441] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2016), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [35458] = 5, + ACTIONS(2016), 1, + anon_sym_LPAREN, + ACTIONS(2018), 1, + anon_sym_QMARK, + ACTIONS(2020), 1, + aux_sym_type_name_token1, + STATE(120), 1, + sym_identifier, + [35457] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1868), 1, + sym_keyword_if, + ACTIONS(1872), 1, aux_sym_type_name_token1, - ACTIONS(1915), 1, - anon_sym_STAR, - ACTIONS(1919), 1, - sym_function_name, - STATE(58), 1, + STATE(1657), 1, + sym_if_not_exists_clause, + STATE(1784), 1, sym_identifier, - [35474] = 2, + [35473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2018), 4, + ACTIONS(1290), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35484] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - aux_sym_type_name_token1, - STATE(1296), 1, - sym_type, - STATE(869), 2, - sym_type_name, - sym_parameterized_type, - [35498] = 2, + [35483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 4, + ACTIONS(1845), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2022), 1, - sym_keyword_where, - STATE(1110), 1, - sym_where_clause, - ACTIONS(1980), 2, - sym_keyword_full, - sym_keyword_none, - [35522] = 2, + [35493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2024), 4, + ACTIONS(2022), 4, sym_keyword_select, sym_keyword_create, sym_keyword_delete, sym_keyword_update, - [35532] = 5, + [35503] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2026), 1, + ACTIONS(1942), 1, + anon_sym_LT, + ACTIONS(2024), 1, anon_sym_LPAREN, - ACTIONS(2028), 1, - anon_sym_QMARK, - ACTIONS(2030), 1, + STATE(419), 1, + sym_argument_list, + STATE(1697), 1, + sym_version, + [35519] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, + anon_sym_LBRACE, + STATE(1152), 2, + sym_block, + sym_sub_query, + [35533] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1876), 1, + aux_sym_type_name_token1, + STATE(1490), 1, + sym_type, + STATE(862), 2, + sym_type_name, + sym_parameterized_type, + [35547] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1868), 1, + sym_keyword_if, + ACTIONS(1872), 1, aux_sym_type_name_token1, - STATE(116), 1, + STATE(1658), 1, + sym_if_not_exists_clause, + STATE(1782), 1, sym_identifier, - [35548] = 2, + [35563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2032), 4, + ACTIONS(1253), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35558] = 2, + [35573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2034), 4, + ACTIONS(1708), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35568] = 5, + [35583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1901), 1, - anon_sym_LT, - ACTIONS(2036), 1, + ACTIONS(728), 1, anon_sym_LPAREN, - STATE(436), 1, - sym_argument_list, - STATE(1603), 1, - sym_version, - [35584] = 2, + ACTIONS(730), 1, + anon_sym_LBRACE, + STATE(1151), 2, + sym_block, + sym_sub_query, + [35597] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, + anon_sym_LBRACE, + STATE(1185), 2, + sym_block, + sym_sub_query, + [35611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2026), 1, + anon_sym_COMMA, + STATE(1374), 1, + aux_sym_insert_statement_repeat3, + ACTIONS(1601), 2, + ts_builtin_sym_end, + sym_semi_colon, + [35625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 4, + ACTIONS(2029), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35594] = 2, + [35635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2031), 4, + sym_keyword_select, + sym_keyword_create, + sym_keyword_delete, + sym_keyword_update, + [35645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 4, + ACTIONS(2033), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35604] = 2, + [35655] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2037), 1, + anon_sym_COMMA, + STATE(1378), 1, + aux_sym_select_clause_repeat1, + ACTIONS(2035), 2, + sym_keyword_from, + sym_keyword_omit, + [35669] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2040), 4, @@ -85105,362 +85199,326 @@ static const uint16_t ts_small_parse_table[] = { sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35614] = 5, + [35679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(1903), 1, - anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_LT, ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(1302), 1, - sym_object, - [35630] = 5, + anon_sym_COMMA, + ACTIONS(2044), 1, + anon_sym_RPAREN, + STATE(1450), 1, + aux_sym_param_list_repeat1, + [35695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(2046), 1, sym_keyword_if, - ACTIONS(1867), 1, + ACTIONS(2048), 1, aux_sym_type_name_token1, - STATE(911), 1, + STATE(1441), 1, sym_identifier, - STATE(1649), 1, - sym_if_not_exists_clause, - [35646] = 2, + STATE(1661), 1, + sym_if_exists_clause, + [35711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1724), 4, + ACTIONS(2050), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35656] = 2, + [35721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1814), 4, + ACTIONS(2052), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35666] = 5, + [35731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - sym_keyword_if, - ACTIONS(1867), 1, + ACTIONS(1960), 1, + anon_sym_LPAREN, + ACTIONS(1962), 1, + anon_sym_QMARK, + ACTIONS(2054), 1, aux_sym_type_name_token1, - STATE(843), 1, + STATE(61), 1, sym_identifier, - STATE(1650), 1, - sym_if_not_exists_clause, - [35682] = 5, + [35747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1872), 1, aux_sym_type_name_token1, - ACTIONS(1984), 1, - sym_keyword_if, - STATE(1660), 1, - sym_if_exists_clause, - STATE(1741), 1, - sym_identifier, - [35698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2044), 1, - anon_sym_STAR, ACTIONS(2046), 1, - aux_sym_type_name_token1, - ACTIONS(2048), 1, - sym_function_name, - STATE(269), 1, + sym_keyword_if, + STATE(1417), 1, sym_identifier, - [35714] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [35724] = 2, + STATE(1662), 1, + sym_if_exists_clause, + [35763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 4, - sym_keyword_select, - sym_keyword_create, - sym_keyword_delete, - sym_keyword_update, - [35734] = 2, + STATE(678), 1, + sym_assignment_operator, + ACTIONS(1980), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [35775] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [35744] = 2, + ACTIONS(1413), 1, + sym_keyword_for, + STATE(942), 1, + aux_sym_permissions_for_clause_repeat2, + ACTIONS(2012), 2, + sym_keyword_full, + sym_keyword_none, + [35789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1042), 4, + ACTIONS(2056), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35754] = 4, + [35799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - aux_sym_type_name_token1, - STATE(936), 1, - sym_type, - STATE(869), 2, - sym_type_name, - sym_parameterized_type, - [35768] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1901), 1, + ACTIONS(1942), 1, anon_sym_LT, - ACTIONS(2052), 1, + ACTIONS(2058), 1, anon_sym_LPAREN, - STATE(482), 1, + STATE(186), 1, sym_argument_list, - STATE(1677), 1, + STATE(1682), 1, sym_version, - [35784] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(1911), 1, - anon_sym_LBRACK, - ACTIONS(2054), 1, - anon_sym_LPAREN, - STATE(1377), 1, - sym_object, - [35800] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2006), 1, - anon_sym_LPAREN, - ACTIONS(2008), 1, - anon_sym_QMARK, - ACTIONS(2056), 1, - aux_sym_type_name_token1, - STATE(59), 1, - sym_identifier, - [35816] = 5, + [35815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2058), 1, - anon_sym_LPAREN, ACTIONS(2060), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(2062), 1, aux_sym_type_name_token1, - STATE(335), 1, + ACTIONS(2064), 1, + sym_function_name, + STATE(299), 1, sym_identifier, - [35832] = 2, + [35831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 4, + ACTIONS(1798), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35842] = 2, + [35841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 4, - ts_builtin_sym_end, - sym_semi_colon, - anon_sym_RPAREN, - anon_sym_RBRACE, - [35852] = 5, + ACTIONS(1872), 1, + aux_sym_type_name_token1, + ACTIONS(2046), 1, + sym_keyword_if, + STATE(1664), 1, + sym_if_exists_clause, + STATE(1766), 1, + sym_identifier, + [35857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - sym_keyword_if, - ACTIONS(1867), 1, + ACTIONS(1872), 1, aux_sym_type_name_token1, - STATE(1651), 1, - sym_if_not_exists_clause, - STATE(1761), 1, + ACTIONS(2046), 1, + sym_keyword_if, + STATE(1665), 1, + sym_if_exists_clause, + STATE(1764), 1, sym_identifier, - [35868] = 2, + [35873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(291), 4, + ACTIONS(670), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35878] = 4, + [35883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 1, - anon_sym_LPAREN, - ACTIONS(730), 1, - anon_sym_LBRACE, - STATE(1174), 2, - sym_block, - sym_sub_query, - [35892] = 5, + ACTIONS(357), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [35893] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1901), 1, + ACTIONS(1942), 1, anon_sym_LT, ACTIONS(2066), 1, anon_sym_LPAREN, - STATE(171), 1, + STATE(458), 1, sym_argument_list, - STATE(1584), 1, + STATE(1644), 1, sym_version, - [35908] = 4, + [35909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1689), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [35919] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2068), 1, + anon_sym_STAR, + ACTIONS(2070), 1, + aux_sym_type_name_token1, + ACTIONS(2072), 1, + sym_function_name, + STATE(53), 1, + sym_identifier, + [35935] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2074), 1, + anon_sym_LPAREN, + ACTIONS(2076), 1, + anon_sym_QMARK, + ACTIONS(2078), 1, + aux_sym_type_name_token1, + STATE(354), 1, + sym_identifier, + [35951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 1, - anon_sym_COMMA, - STATE(1400), 1, - aux_sym_insert_statement_repeat3, - ACTIONS(1620), 2, + ACTIONS(1177), 4, ts_builtin_sym_end, sym_semi_colon, - [35922] = 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [35961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 4, + ACTIONS(1545), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [35932] = 5, + [35971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, - sym_keyword_if, - ACTIONS(1867), 1, - aux_sym_type_name_token1, - STATE(829), 1, - sym_identifier, - STATE(1591), 1, - sym_if_not_exists_clause, - [35948] = 5, + ACTIONS(2080), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [35981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1872), 1, aux_sym_type_name_token1, - ACTIONS(1984), 1, - sym_keyword_if, - STATE(1662), 1, - sym_if_exists_clause, - STATE(1733), 1, - sym_identifier, - [35964] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2073), 1, + ACTIONS(2068), 1, anon_sym_STAR, - ACTIONS(2075), 1, - aux_sym_type_name_token1, - ACTIONS(2077), 1, + ACTIONS(2072), 1, sym_function_name, - STATE(344), 1, + STATE(53), 1, sym_identifier, - [35980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_decimal, - STATE(1148), 1, - sym_number, - ACTIONS(51), 2, - sym_int, - sym_float, - [35994] = 2, + [35997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2079), 4, - sym_keyword_select, - sym_keyword_create, - sym_keyword_delete, - sym_keyword_update, - [36004] = 4, + ACTIONS(2082), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [36007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, + ACTIONS(1988), 1, anon_sym_COMMA, - STATE(1407), 1, + STATE(1378), 1, aux_sym_select_clause_repeat1, - ACTIONS(2081), 2, + ACTIONS(2084), 2, sym_keyword_from, sym_keyword_omit, - [36018] = 4, + [36021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 1, - sym_keyword_for, - STATE(980), 1, - aux_sym_permissions_for_clause_repeat2, - ACTIONS(1909), 2, - sym_keyword_full, - sym_keyword_none, - [36032] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(353), 4, + ACTIONS(2086), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [36042] = 2, + [36031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2086), 4, - sym_keyword_select, - sym_keyword_create, - sym_keyword_delete, - sym_keyword_update, - [36052] = 4, + ACTIONS(291), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [36041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - aux_sym_type_name_token1, - STATE(1483), 1, - sym_type, - STATE(869), 2, - sym_type_name, - sym_parameterized_type, - [36066] = 2, + ACTIONS(1836), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [36051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1820), 4, + ACTIONS(2088), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [36076] = 2, + [36061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(664), 4, + ACTIONS(1942), 1, + anon_sym_LT, + ACTIONS(2090), 1, + anon_sym_LPAREN, + STATE(80), 1, + sym_argument_list, + STATE(1626), 1, + sym_version, + [36077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2092), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [36086] = 5, + [36087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2088), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_QMARK, - ACTIONS(2092), 1, - aux_sym_type_name_token1, - STATE(311), 1, - sym_identifier, - [36102] = 5, + ACTIONS(1388), 1, + sym_keyword_for, + STATE(931), 1, + aux_sym_permissions_for_clause_repeat2, + ACTIONS(2002), 2, + sym_keyword_full, + sym_keyword_none, + [36101] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(709), 1, + sym_assignment_operator, + ACTIONS(1980), 3, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + [36113] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1802), 1, @@ -85469,3239 +85527,3297 @@ static const uint16_t ts_small_parse_table[] = { sym_string, STATE(1620), 1, sym_object_property, - STATE(1793), 1, + STATE(1810), 1, sym_object_key, - [36118] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1863), 1, - sym_keyword_if, - ACTIONS(1867), 1, - aux_sym_type_name_token1, - STATE(1590), 1, - sym_identifier, - STATE(1687), 1, - sym_if_not_exists_clause, - [36134] = 2, + [36129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 4, + ACTIONS(1424), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [36144] = 3, + [36139] = 3, ACTIONS(3), 1, sym_comment, - STATE(745), 1, + STATE(762), 1, sym_assignment_operator, - ACTIONS(1907), 3, + ACTIONS(1980), 3, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - [36156] = 5, + [36151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2094), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [36161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1075), 4, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RPAREN, + anon_sym_RBRACE, + [36171] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2096), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(2098), 1, - aux_sym_type_name_token1, + anon_sym_QMARK, ACTIONS(2100), 1, - sym_function_name, - STATE(123), 1, + aux_sym_type_name_token1, + STATE(317), 1, sym_identifier, - [36172] = 5, + [36187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1901), 1, + ACTIONS(1942), 1, anon_sym_LT, ACTIONS(2102), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(437), 1, sym_argument_list, - STATE(1684), 1, + STATE(1674), 1, sym_version, - [36188] = 2, + [36203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(331), 4, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(1915), 1, + anon_sym_LBRACK, + ACTIONS(2104), 1, + anon_sym_LPAREN, + STATE(1318), 1, + sym_object, + [36219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(375), 4, ts_builtin_sym_end, sym_semi_colon, anon_sym_RPAREN, anon_sym_RBRACE, - [36198] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(2104), 1, - anon_sym_RBRACK, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - [36211] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 3, - sym_keyword_namespace, - sym_keyword_scope, - sym_keyword_root, - [36220] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1022), 1, - sym_fields_columns_clause, - ACTIONS(2108), 2, - sym_keyword_fields, - sym_keyword_columns, - [36231] = 4, + [36229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, + ACTIONS(664), 4, ts_builtin_sym_end, - ACTIONS(2112), 1, sym_semi_colon, - STATE(1425), 1, - aux_sym_expressions_repeat1, - [36244] = 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [36239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 3, + ACTIONS(1255), 4, ts_builtin_sym_end, sym_semi_colon, + anon_sym_RPAREN, anon_sym_RBRACE, - [36253] = 4, + [36249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 1, - anon_sym_COMMA, - ACTIONS(2117), 1, - anon_sym_RBRACE, - STATE(1457), 1, - aux_sym_object_content_repeat1, - [36266] = 4, + ACTIONS(2106), 1, + anon_sym_STAR, + ACTIONS(2108), 1, + aux_sym_type_name_token1, + ACTIONS(2110), 1, + sym_function_name, + STATE(105), 1, + sym_identifier, + [36265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, - anon_sym_COMMA, - ACTIONS(2121), 1, + ACTIONS(2112), 4, + ts_builtin_sym_end, + sym_semi_colon, anon_sym_RPAREN, - STATE(1565), 1, - aux_sym_graph_path_repeat1, - [36279] = 4, + anon_sym_RBRACE, + [36275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, - sym_keyword_from, - ACTIONS(2123), 1, - anon_sym_COMMA, - STATE(1429), 1, - aux_sym_select_clause_repeat1, - [36292] = 4, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1193), 1, + sym_field_assignment, + STATE(1329), 1, + sym_identifier, + [36288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(2114), 1, + sym_keyword_as, + ACTIONS(2116), 2, anon_sym_COMMA, - ACTIONS(2126), 1, anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - [36305] = 4, + [36299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(2128), 1, - anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - [36318] = 2, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1196), 1, + sym_field_assignment, + STATE(1329), 1, + sym_identifier, + [36312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 3, - sym_keyword_from, - sym_keyword_omit, - anon_sym_COMMA, - [36327] = 4, + ACTIONS(55), 1, + sym_duration_part, + STATE(51), 1, + aux_sym_duration_repeat1, + STATE(1212), 1, + sym_duration, + [36325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2132), 1, - anon_sym_RBRACK, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - [36340] = 4, + ACTIONS(2120), 1, + anon_sym_RPAREN, + STATE(1548), 1, + aux_sym_graph_path_repeat1, + [36338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2134), 1, + ACTIONS(2122), 1, anon_sym_RPAREN, - STATE(795), 1, - aux_sym_define_user_statement_repeat1, - [36353] = 2, + STATE(1577), 1, + aux_sym_graph_path_repeat1, + [36351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 3, - sym_keyword_from, - sym_keyword_omit, - anon_sym_COMMA, - [36362] = 4, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1062), 1, + sym_field_assignment, + STATE(1413), 1, + sym_identifier, + [36364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2136), 1, - anon_sym_RBRACK, - STATE(1297), 1, + ACTIONS(2124), 1, + anon_sym_RPAREN, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [36375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, - anon_sym_COMMA, - ACTIONS(2140), 1, - anon_sym_RBRACK, - STATE(1479), 1, - aux_sym_insert_statement_repeat1, - [36388] = 4, + [36377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2075), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - ACTIONS(2142), 1, - sym_keyword_by, - STATE(961), 1, + STATE(1064), 1, + sym_field_assignment, + STATE(1413), 1, sym_identifier, - [36401] = 4, + [36390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2144), 1, + ACTIONS(2126), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [36414] = 4, + [36403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2075), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - ACTIONS(2146), 1, - sym_keyword_at, - STATE(944), 1, + STATE(1076), 1, + sym_field_assignment, + STATE(1416), 1, sym_identifier, - [36427] = 4, + [36416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2148), 1, + ACTIONS(2128), 1, + anon_sym_RBRACK, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + [36429] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1259), 1, + anon_sym_COMMA, + ACTIONS(2130), 1, anon_sym_RPAREN, - STATE(1449), 1, - aux_sym_graph_path_repeat1, - [36440] = 4, + STATE(791), 1, + aux_sym_define_user_statement_repeat1, + [36442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(2132), 1, anon_sym_COMMA, - ACTIONS(2150), 1, + ACTIONS(2134), 1, anon_sym_RBRACK, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - [36453] = 4, + STATE(1446), 1, + aux_sym_insert_statement_repeat1, + [36455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(1872), 1, aux_sym_type_name_token1, - ACTIONS(2152), 1, - sym_keyword_table, - STATE(810), 1, + ACTIONS(2136), 1, + sym_keyword_on, + STATE(1346), 1, sym_identifier, - [36466] = 3, + [36468] = 4, ACTIONS(3), 1, sym_comment, - STATE(1101), 1, - sym_fields_columns_clause, - ACTIONS(2108), 2, - sym_keyword_fields, - sym_keyword_columns, - [36477] = 4, + ACTIONS(2138), 1, + anon_sym_COMMA, + ACTIONS(2140), 1, + anon_sym_RBRACE, + STATE(1552), 1, + aux_sym_object_content_repeat1, + [36481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, - anon_sym_COMMA, - ACTIONS(2154), 1, - anon_sym_RPAREN, - STATE(1428), 1, - aux_sym_graph_path_repeat1, + ACTIONS(2142), 3, + ts_builtin_sym_end, + sym_semi_colon, + anon_sym_RBRACE, [36490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_COMMA, - ACTIONS(2140), 1, - anon_sym_RBRACK, - STATE(1458), 1, - aux_sym_insert_statement_repeat1, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1076), 1, + sym_field_assignment, + STATE(1413), 1, + sym_identifier, [36503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2156), 1, - anon_sym_RPAREN, - STATE(1297), 1, + ACTIONS(2144), 1, + anon_sym_RBRACK, + STATE(1289), 1, aux_sym_update_statement_repeat1, [36516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(2146), 1, anon_sym_COMMA, - ACTIONS(2158), 1, - anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_update_statement_repeat1, + ACTIONS(2149), 1, + anon_sym_RBRACK, + STATE(1446), 1, + aux_sym_insert_statement_repeat1, [36529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2160), 1, + ACTIONS(2151), 1, anon_sym_RPAREN, - STATE(1565), 1, + STATE(1455), 1, aux_sym_graph_path_repeat1, [36542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, - sym_keyword_from, - ACTIONS(2164), 1, + ACTIONS(754), 1, anon_sym_COMMA, - STATE(1429), 1, - aux_sym_select_clause_repeat1, + ACTIONS(2153), 1, + anon_sym_RBRACK, + STATE(1289), 1, + aux_sym_update_statement_repeat1, [36555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1075), 1, - sym_field_assignment, - STATE(1418), 1, - sym_identifier, + ACTIONS(2118), 1, + anon_sym_COMMA, + ACTIONS(2155), 1, + anon_sym_RPAREN, + STATE(1431), 1, + aux_sym_graph_path_repeat1, [36568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(2042), 1, anon_sym_COMMA, - ACTIONS(2166), 1, + ACTIONS(2157), 1, anon_sym_RPAREN, - STATE(1462), 1, - aux_sym_graph_path_repeat1, + STATE(1474), 1, + aux_sym_param_list_repeat1, [36581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(810), 1, - anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_update_statement_repeat1, + ACTIONS(2159), 1, + sym_keyword_if, + ACTIONS(2161), 1, + sym_variable_name, + STATE(1720), 1, + sym_if_not_exists_clause, [36594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(812), 1, - anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_update_statement_repeat1, + ACTIONS(2163), 1, + sym_keyword_if, + ACTIONS(2165), 1, + sym_custom_function_name, + STATE(1722), 1, + sym_if_not_exists_clause, [36607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2168), 1, - anon_sym_RBRACE, - STATE(1427), 1, - aux_sym_object_content_repeat1, + ACTIONS(2167), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_update_statement_repeat1, [36620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2170), 1, + ACTIONS(2169), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, [36633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2175), 1, - anon_sym_RBRACE, - STATE(1457), 1, - aux_sym_object_content_repeat1, + ACTIONS(2171), 1, + anon_sym_RPAREN, + STATE(1548), 1, + aux_sym_graph_path_repeat1, [36646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 1, - anon_sym_COMMA, - ACTIONS(2180), 1, - anon_sym_RBRACK, - STATE(1458), 1, - aux_sym_insert_statement_repeat1, + ACTIONS(506), 1, + ts_builtin_sym_end, + ACTIONS(2173), 1, + sym_semi_colon, + STATE(1494), 1, + aux_sym_expressions_repeat1, [36659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(192), 1, - anon_sym_DASH_GT, - ACTIONS(2182), 1, - anon_sym_GT, - ACTIONS(2184), 1, - anon_sym_DOT_DOT, + ACTIONS(2138), 1, + anon_sym_COMMA, + ACTIONS(2175), 1, + anon_sym_RBRACE, + STATE(1442), 1, + aux_sym_object_content_repeat1, [36672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 1, - sym_keyword_on_duplicate_key_update, - ACTIONS(2188), 1, - anon_sym_COMMA, - STATE(1513), 1, - aux_sym_insert_statement_repeat2, + ACTIONS(160), 1, + anon_sym_DASH_GT, + ACTIONS(2177), 1, + anon_sym_GT, + ACTIONS(2179), 1, + anon_sym_DOT_DOT, [36685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, - anon_sym_COMMA, - ACTIONS(2190), 1, - sym_keyword_on_duplicate_key_update, - STATE(1460), 1, - aux_sym_insert_statement_repeat2, + ACTIONS(2181), 1, + sym_keyword_if, + ACTIONS(2183), 1, + sym_variable_name, + STATE(1768), 1, + sym_if_exists_clause, [36698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, - anon_sym_COMMA, - ACTIONS(2192), 1, - anon_sym_RPAREN, - STATE(1565), 1, - aux_sym_graph_path_repeat1, - [36711] = 4, + ACTIONS(2183), 1, + sym_custom_function_name, + ACTIONS(2185), 1, + sym_keyword_if, + STATE(1769), 1, + sym_if_exists_clause, + [36711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2187), 3, + sym_keyword_from, + sym_keyword_omit, anon_sym_COMMA, - ACTIONS(2190), 1, - sym_keyword_on_duplicate_key_update, - STATE(1513), 1, - aux_sym_insert_statement_repeat2, - [36724] = 4, + [36720] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1076), 1, + sym_field_assignment, + STATE(1386), 1, + sym_identifier, + [36733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1270), 1, + sym_field_assignment, + STATE(1416), 1, + sym_identifier, + [36746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1273), 1, + sym_field_assignment, + STATE(1416), 1, + sym_identifier, + [36759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2035), 3, + sym_keyword_from, + sym_keyword_omit, anon_sym_COMMA, - ACTIONS(2194), 1, - sym_keyword_on_duplicate_key_update, - STATE(1463), 1, - aux_sym_insert_statement_repeat2, - [36737] = 4, + [36768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 1, + ACTIONS(2159), 1, sym_keyword_if, - ACTIONS(2198), 1, - sym_custom_function_name, - STATE(1817), 1, + ACTIONS(2189), 1, + sym_variable_name, + STATE(1777), 1, sym_if_not_exists_clause, - [36750] = 3, + [36781] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2200), 1, - sym_keyword_as, - ACTIONS(2202), 2, + ACTIONS(754), 1, anon_sym_COMMA, + ACTIONS(2191), 1, anon_sym_RPAREN, - [36761] = 4, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + [36794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1872), 1, + aux_sym_type_name_token1, + ACTIONS(2193), 1, + sym_keyword_table, + STATE(805), 1, + sym_identifier, + [36807] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1089), 1, + sym_fields_columns_clause, + ACTIONS(2195), 2, + sym_keyword_fields, + sym_keyword_columns, + [36818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2194), 1, - sym_keyword_on_duplicate_key_update, - STATE(1513), 1, - aux_sym_insert_statement_repeat2, - [36774] = 4, + ACTIONS(2197), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + [36831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2204), 1, - sym_keyword_on_duplicate_key_update, - STATE(1467), 1, - aux_sym_insert_statement_repeat2, - [36787] = 4, + ACTIONS(818), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + [36844] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1275), 1, + sym_field_assignment, + STATE(1416), 1, + sym_identifier, + [36857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2206), 1, + ACTIONS(812), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + [36870] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + anon_sym_COMMA, + ACTIONS(2202), 1, + anon_sym_RPAREN, + STATE(1474), 1, + aux_sym_param_list_repeat1, + [36883] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2118), 1, + anon_sym_COMMA, + ACTIONS(2204), 1, anon_sym_RPAREN, - STATE(1477), 1, + STATE(1483), 1, aux_sym_graph_path_repeat1, - [36800] = 4, + [36896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2208), 1, + ACTIONS(2206), 1, anon_sym_RBRACK, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [36813] = 4, + [36909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + sym_duration_part, + STATE(51), 1, + aux_sym_duration_repeat1, + STATE(1155), 1, + sym_duration, + [36922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2208), 1, + sym_keyword_from, + ACTIONS(2210), 1, anon_sym_COMMA, - ACTIONS(2204), 1, - sym_keyword_on_duplicate_key_update, - STATE(1513), 1, - aux_sym_insert_statement_repeat2, - [36826] = 2, + STATE(1500), 1, + aux_sym_select_clause_repeat1, + [36935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 3, - sym_keyword_namespace, - sym_keyword_root, - sym_keyword_database, - [36835] = 4, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1258), 1, + sym_field_assignment, + STATE(1416), 1, + sym_identifier, + [36948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, - anon_sym_COMMA, + ACTIONS(2163), 1, + sym_keyword_if, ACTIONS(2212), 1, - sym_keyword_on_duplicate_key_update, - STATE(1471), 1, - aux_sym_insert_statement_repeat2, - [36848] = 4, + sym_custom_function_name, + STATE(1779), 1, + sym_if_not_exists_clause, + [36961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, ACTIONS(2214), 1, anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - [36861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(2216), 1, - anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [36874] = 4, + [36974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2218), 1, + ACTIONS(2216), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [36887] = 4, + [36987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2220), 1, + ACTIONS(2218), 1, anon_sym_RPAREN, - STATE(1565), 1, + STATE(1548), 1, aux_sym_graph_path_repeat1, - [36900] = 2, + [37000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 3, - sym_keyword_namespace, - sym_keyword_scope, - sym_keyword_root, - [36909] = 4, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1257), 1, + sym_field_assignment, + STATE(1416), 1, + sym_identifier, + [37013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2220), 1, + sym_keyword_on_duplicate_key_update, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2224), 1, - anon_sym_RBRACK, - STATE(1458), 1, - aux_sym_insert_statement_repeat1, - [36922] = 4, + STATE(1497), 1, + aux_sym_insert_statement_repeat2, + [37026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1263), 1, + STATE(1076), 1, sym_field_assignment, - STATE(1283), 1, + STATE(1356), 1, sym_identifier, - [36935] = 4, + [37039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1261), 1, - sym_field_assignment, - STATE(1283), 1, - sym_identifier, - [36948] = 4, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(822), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + [37052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, - ts_builtin_sym_end, - ACTIONS(2226), 1, - sym_semi_colon, - STATE(1425), 1, - aux_sym_expressions_repeat1, - [36961] = 3, + ACTIONS(55), 1, + sym_duration_part, + STATE(51), 1, + aux_sym_duration_repeat1, + STATE(973), 1, + sym_duration, + [37065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1337), 1, - anon_sym_LT, - ACTIONS(2228), 2, + ACTIONS(2210), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [36972] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1259), 1, - sym_field_assignment, - STATE(1283), 1, - sym_identifier, - [36985] = 4, + ACTIONS(2224), 1, + sym_keyword_from, + STATE(1500), 1, + aux_sym_select_clause_repeat1, + [37078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, + ACTIONS(1314), 1, + anon_sym_LT, + ACTIONS(2226), 2, anon_sym_COMMA, - ACTIONS(2230), 1, anon_sym_RPAREN, - STATE(795), 1, - aux_sym_define_user_statement_repeat1, - [36998] = 4, + [37089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1257), 1, - sym_field_assignment, - STATE(1283), 1, - sym_identifier, - [37011] = 4, + ACTIONS(2230), 1, + sym_keyword_relation, + ACTIONS(2228), 2, + sym_keyword_any, + sym_keyword_normal, + [37100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1351), 1, + STATE(1350), 1, sym_field_assignment, - STATE(1418), 1, + STATE(1356), 1, sym_identifier, - [37024] = 4, + [37113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1255), 1, - sym_field_assignment, - STATE(1283), 1, - sym_identifier, - [37037] = 4, + ACTIONS(2210), 1, + anon_sym_COMMA, + ACTIONS(2232), 1, + sym_keyword_from, + STATE(1489), 1, + aux_sym_select_clause_repeat1, + [37126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2232), 1, - sym_keyword_if, + ACTIONS(2142), 1, + ts_builtin_sym_end, ACTIONS(2234), 1, - sym_variable_name, - STATE(1747), 1, - sym_if_exists_clause, - [37050] = 4, + sym_semi_colon, + STATE(1494), 1, + aux_sym_expressions_repeat1, + [37139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(1259), 1, anon_sym_COMMA, - ACTIONS(2236), 1, - sym_keyword_on_duplicate_key_update, - STATE(1513), 1, - aux_sym_insert_statement_repeat2, - [37063] = 4, + ACTIONS(2237), 1, + anon_sym_RPAREN, + STATE(1439), 1, + aux_sym_define_user_statement_repeat1, + [37152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1180), 1, - sym_field_assignment, - STATE(1342), 1, - sym_identifier, - [37076] = 4, + ACTIONS(2132), 1, + anon_sym_COMMA, + ACTIONS(2239), 1, + anon_sym_RBRACK, + STATE(1440), 1, + aux_sym_insert_statement_repeat1, + [37165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2236), 1, + ACTIONS(2241), 1, sym_keyword_on_duplicate_key_update, - STATE(1514), 1, + STATE(1516), 1, aux_sym_insert_statement_repeat2, - [37089] = 2, + [37178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 3, + ACTIONS(2243), 3, sym_keyword_namespace, + sym_keyword_scope, sym_keyword_root, - sym_keyword_database, - [37098] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2240), 1, - anon_sym_COMMA, - ACTIONS(2243), 1, - anon_sym_RPAREN, - STATE(1494), 1, - aux_sym_param_list_repeat1, - [37111] = 4, + [37187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(1259), 1, anon_sym_COMMA, - ACTIONS(774), 1, + ACTIONS(2237), 1, anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - [37124] = 4, + STATE(791), 1, + aux_sym_define_user_statement_repeat1, + [37200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 1, - anon_sym_COMMA, - ACTIONS(2245), 1, + ACTIONS(2035), 1, sym_keyword_from, - STATE(1450), 1, + ACTIONS(2245), 1, + anon_sym_COMMA, + STATE(1500), 1, aux_sym_select_clause_repeat1, - [37137] = 4, + [37213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, - anon_sym_COMMA, - ACTIONS(2247), 1, - sym_keyword_on_duplicate_key_update, - STATE(1490), 1, - aux_sym_insert_statement_repeat2, - [37150] = 4, + ACTIONS(2248), 3, + sym_keyword_namespace, + sym_keyword_root, + sym_keyword_database, + [37222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(764), 1, + ACTIONS(802), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [37163] = 4, + [37235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2249), 1, - sym_keyword_from, - STATE(1429), 1, - aux_sym_select_clause_repeat1, - [37176] = 4, + ACTIONS(2250), 1, + anon_sym_RPAREN, + STATE(1511), 1, + aux_sym_graph_path_repeat1, + [37248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, - sym_keyword_select, - STATE(1341), 1, - sym_select_clause, - STATE(1349), 1, - sym_select_statement, - [37189] = 4, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(2252), 1, + anon_sym_RBRACK, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + [37261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1152), 1, + STATE(1076), 1, sym_field_assignment, - STATE(1337), 1, + STATE(1343), 1, + sym_identifier, + [37274] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2132), 1, + anon_sym_COMMA, + ACTIONS(2239), 1, + anon_sym_RBRACK, + STATE(1446), 1, + aux_sym_insert_statement_repeat1, + [37287] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1872), 1, + aux_sym_type_name_token1, + ACTIONS(2254), 1, + sym_keyword_on, + STATE(1286), 1, sym_identifier, - [37202] = 4, + [37300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1108), 1, + STATE(1325), 1, sym_field_assignment, - STATE(1285), 1, + STATE(1356), 1, sym_identifier, - [37215] = 4, + [37313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2253), 1, + ACTIONS(2256), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [37228] = 4, + [37326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2255), 1, + ACTIONS(2258), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [37241] = 4, + [37339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2257), 1, + ACTIONS(2260), 1, anon_sym_RPAREN, - STATE(1565), 1, + STATE(1548), 1, aux_sym_graph_path_repeat1, - [37254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1157), 1, - sym_field_assignment, - STATE(1337), 1, - sym_identifier, - [37267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2259), 1, - sym_keyword_if, - ACTIONS(2261), 1, - sym_variable_name, - STATE(1790), 1, - sym_if_not_exists_clause, - [37280] = 4, + [37352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2263), 1, - sym_keyword_from, - STATE(1499), 1, - aux_sym_select_clause_repeat1, - [37293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2196), 1, - sym_keyword_if, - ACTIONS(2265), 1, - sym_custom_function_name, - STATE(1782), 1, - sym_if_not_exists_clause, - [37306] = 4, + ACTIONS(2262), 1, + anon_sym_RPAREN, + STATE(1548), 1, + aux_sym_graph_path_repeat1, + [37365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 1, - ts_builtin_sym_end, - ACTIONS(2269), 1, - sym_semi_colon, - STATE(1482), 1, - aux_sym_expressions_repeat1, - [37319] = 4, + ACTIONS(2264), 3, + sym_keyword_namespace, + sym_keyword_scope, + sym_keyword_root, + [37374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1075), 1, - sym_field_assignment, - STATE(1337), 1, - sym_identifier, - [37332] = 4, + ACTIONS(2264), 3, + sym_keyword_namespace, + sym_keyword_root, + sym_keyword_database, + [37383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1330), 1, - sym_field_assignment, - STATE(1418), 1, - sym_identifier, - [37345] = 4, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(2266), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + [37396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2268), 1, sym_keyword_on_duplicate_key_update, - ACTIONS(2273), 1, + ACTIONS(2270), 1, anon_sym_COMMA, - STATE(1513), 1, + STATE(1516), 1, aux_sym_insert_statement_repeat2, - [37358] = 4, + [37409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2276), 1, + ACTIONS(2273), 1, sym_keyword_on_duplicate_key_update, - STATE(1513), 1, + STATE(1516), 1, aux_sym_insert_statement_repeat2, - [37371] = 4, + [37422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2278), 1, + ACTIONS(2275), 1, anon_sym_RPAREN, - STATE(1505), 1, - aux_sym_graph_path_repeat1, - [37384] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(2280), 1, - anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [37397] = 4, + [37435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2276), 1, + ACTIONS(2273), 1, sym_keyword_on_duplicate_key_update, - STATE(1540), 1, + STATE(1527), 1, aux_sym_insert_statement_repeat2, - [37410] = 4, + [37448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2282), 1, + ACTIONS(2277), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [37423] = 4, + [37461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 1, - sym_custom_function_name, - ACTIONS(2284), 1, - sym_keyword_if, - STATE(1748), 1, - sym_if_exists_clause, - [37436] = 4, + ACTIONS(2279), 3, + sym_keyword_from, + sym_keyword_omit, + anon_sym_COMMA, + [37470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2286), 1, + ACTIONS(2281), 1, anon_sym_RPAREN, - STATE(1565), 1, - aux_sym_graph_path_repeat1, - [37449] = 4, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + [37483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, - sym_keyword_if, - ACTIONS(2288), 1, - sym_variable_name, - STATE(1755), 1, - sym_if_not_exists_clause, - [37462] = 4, + ACTIONS(2142), 1, + anon_sym_RBRACE, + ACTIONS(2283), 1, + sym_semi_colon, + STATE(1523), 1, + aux_sym_expressions_repeat1, + [37496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2290), 1, - anon_sym_RPAREN, - STATE(1297), 1, + ACTIONS(2286), 1, + anon_sym_RBRACK, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [37475] = 4, + [37509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2292), 1, + ACTIONS(2288), 1, anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - [37488] = 4, + STATE(1512), 1, + aux_sym_graph_path_repeat1, + [37522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1106), 1, + STATE(1310), 1, sym_field_assignment, - STATE(1285), 1, + STATE(1356), 1, sym_identifier, - [37501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 3, - sym_keyword_namespace, - sym_keyword_root, - sym_keyword_database, - [37510] = 2, + [37535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2294), 3, - sym_keyword_from, - sym_keyword_omit, + ACTIONS(2222), 1, anon_sym_COMMA, - [37519] = 4, + ACTIONS(2290), 1, + sym_keyword_on_duplicate_key_update, + STATE(1516), 1, + aux_sym_insert_statement_repeat2, + [37548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2296), 1, + ACTIONS(2292), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [37532] = 4, + [37561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2298), 1, - anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - [37545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 3, - sym_keyword_namespace, - sym_keyword_root, - sym_keyword_database, - [37554] = 4, + ACTIONS(2290), 1, + sym_keyword_on_duplicate_key_update, + STATE(1538), 1, + aux_sym_insert_statement_repeat2, + [37574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(975), 1, - sym_duration, - [37567] = 4, + ACTIONS(506), 1, + anon_sym_RBRACE, + ACTIONS(2294), 1, + sym_semi_colon, + STATE(1523), 1, + aux_sym_expressions_repeat1, + [37587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, + ACTIONS(2210), 1, anon_sym_COMMA, - ACTIONS(2134), 1, - anon_sym_RPAREN, - STATE(1485), 1, - aux_sym_define_user_statement_repeat1, - [37580] = 2, + ACTIONS(2296), 1, + sym_keyword_from, + STATE(1478), 1, + aux_sym_select_clause_repeat1, + [37600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 3, - sym_keyword_namespace, - sym_keyword_scope, - sym_keyword_root, - [37589] = 4, + ACTIONS(2298), 1, + ts_builtin_sym_end, + ACTIONS(2300), 1, + sym_semi_colon, + STATE(1456), 1, + aux_sym_expressions_repeat1, + [37613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, ACTIONS(2302), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, - [37602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2306), 1, - sym_keyword_relation, - ACTIONS(2304), 2, - sym_keyword_any, - sym_keyword_normal, - [37613] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1075), 1, - sym_field_assignment, - STATE(1342), 1, - sym_identifier, [37626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1324), 1, - sym_field_assignment, - STATE(1418), 1, - sym_identifier, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(2304), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_update_statement_repeat1, [37639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2259), 1, + ACTIONS(2163), 1, sym_keyword_if, - ACTIONS(2308), 1, - sym_variable_name, - STATE(1856), 1, + ACTIONS(2306), 1, + sym_custom_function_name, + STATE(1823), 1, sym_if_not_exists_clause, [37652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, - anon_sym_COMMA, - ACTIONS(2310), 1, - anon_sym_RPAREN, - STATE(1297), 1, - aux_sym_update_statement_repeat1, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1299), 1, + sym_field_assignment, + STATE(1356), 1, + sym_identifier, [37665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, - aux_sym_type_name_token1, - ACTIONS(2312), 1, - sym_keyword_on, - STATE(1347), 1, - sym_identifier, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(2308), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_update_statement_repeat1, [37678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2314), 1, + ACTIONS(2310), 1, sym_keyword_on_duplicate_key_update, - STATE(1513), 1, + STATE(1516), 1, aux_sym_insert_statement_repeat2, [37691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2316), 1, + ACTIONS(2312), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, [37704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2222), 1, anon_sym_COMMA, ACTIONS(2314), 1, sym_keyword_on_duplicate_key_update, - STATE(1551), 1, + STATE(1516), 1, aux_sym_insert_statement_repeat2, [37717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 1, - sym_keyword_if, - ACTIONS(2318), 1, - sym_custom_function_name, - STATE(1757), 1, - sym_if_not_exists_clause, - [37730] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2110), 1, + ACTIONS(2298), 1, anon_sym_RBRACE, - ACTIONS(2320), 1, + ACTIONS(2316), 1, sym_semi_colon, - STATE(1544), 1, + STATE(1530), 1, aux_sym_expressions_repeat1, + [37730] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2222), 1, + anon_sym_COMMA, + ACTIONS(2318), 1, + sym_keyword_on_duplicate_key_update, + STATE(1543), 1, + aux_sym_insert_statement_repeat2, [37743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(1109), 1, - sym_duration, + ACTIONS(2222), 1, + anon_sym_COMMA, + ACTIONS(2320), 1, + sym_keyword_on_duplicate_key_update, + STATE(1516), 1, + aux_sym_insert_statement_repeat2, [37756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(754), 1, anon_sym_COMMA, - ACTIONS(2323), 1, + ACTIONS(2322), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1289), 1, aux_sym_update_statement_repeat1, [37769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(756), 1, + ACTIONS(2222), 1, anon_sym_COMMA, - ACTIONS(2325), 1, - anon_sym_RBRACK, - STATE(1297), 1, - aux_sym_update_statement_repeat1, - [37782] = 2, + ACTIONS(2320), 1, + sym_keyword_on_duplicate_key_update, + STATE(1565), 1, + aux_sym_insert_statement_repeat2, + [37782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 3, - sym_keyword_namespace, - sym_keyword_scope, - sym_keyword_root, - [37791] = 4, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1165), 1, + sym_field_assignment, + STATE(1386), 1, + sym_identifier, + [37795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1156), 1, + sym_field_assignment, + STATE(1386), 1, + sym_identifier, + [37808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 1, + ACTIONS(2324), 1, anon_sym_COMMA, - ACTIONS(2329), 1, + ACTIONS(2327), 1, anon_sym_RPAREN, - STATE(1520), 1, + STATE(1548), 1, aux_sym_graph_path_repeat1, - [37804] = 4, + [37821] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(754), 1, + anon_sym_COMMA, + ACTIONS(2329), 1, + anon_sym_RPAREN, + STATE(1289), 1, + aux_sym_update_statement_repeat1, + [37834] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2331), 1, + sym_keyword_select, + STATE(1307), 1, + sym_select_clause, + STATE(1379), 1, + sym_select_statement, + [37847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1310), 1, + STATE(1295), 1, sym_field_assignment, - STATE(1418), 1, + STATE(1356), 1, sym_identifier, - [37817] = 4, + [37860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2333), 1, anon_sym_COMMA, + ACTIONS(2336), 1, + anon_sym_RBRACE, + STATE(1552), 1, + aux_sym_object_content_repeat1, + [37873] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(2331), 1, - sym_keyword_on_duplicate_key_update, - STATE(1513), 1, - aux_sym_insert_statement_repeat2, - [37830] = 4, + sym_keyword_select, + STATE(1326), 1, + sym_select_clause, + STATE(1379), 1, + sym_select_statement, + [37886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1911), 1, aux_sym_type_name_token1, - STATE(1173), 1, - sym_field_assignment, - STATE(1342), 1, + ACTIONS(2338), 1, + sym_keyword_table, + STATE(805), 1, sym_identifier, - [37843] = 4, + [37899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(55), 1, - sym_duration_part, - STATE(52), 1, - aux_sym_duration_repeat1, - STATE(1207), 1, - sym_duration, - [37856] = 4, + ACTIONS(2159), 1, + sym_keyword_if, + ACTIONS(2340), 1, + sym_variable_name, + STATE(1863), 1, + sym_if_not_exists_clause, + [37912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, - anon_sym_RBRACE, - ACTIONS(2333), 1, - sym_semi_colon, - STATE(1544), 1, - aux_sym_expressions_repeat1, - [37869] = 4, + STATE(1097), 1, + sym_fields_columns_clause, + ACTIONS(2195), 2, + sym_keyword_fields, + sym_keyword_columns, + [37923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1259), 1, + anon_sym_COMMA, + ACTIONS(2342), 1, + anon_sym_RPAREN, + STATE(1499), 1, + aux_sym_define_user_statement_repeat1, + [37936] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2132), 1, anon_sym_COMMA, - ACTIONS(2335), 1, + ACTIONS(2344), 1, anon_sym_RBRACK, - STATE(1446), 1, + STATE(1506), 1, aux_sym_insert_statement_repeat1, - [37882] = 4, + [37949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1259), 1, + anon_sym_COMMA, + ACTIONS(2346), 1, + anon_sym_RPAREN, + STATE(1566), 1, + aux_sym_define_user_statement_repeat1, + [37962] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1872), 1, + aux_sym_type_name_token1, + ACTIONS(2348), 1, + sym_keyword_by, + STATE(900), 1, + sym_identifier, + [37975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1076), 1, + sym_field_assignment, + STATE(1329), 1, + sym_identifier, + [37988] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2222), 1, + anon_sym_COMMA, + ACTIONS(2241), 1, + sym_keyword_on_duplicate_key_update, + STATE(1517), 1, + aux_sym_insert_statement_repeat2, + [38001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2350), 3, + sym_keyword_namespace, + sym_keyword_root, + sym_keyword_database, + [38010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1305), 1, - sym_field_assignment, - STATE(1418), 1, - sym_identifier, - [37895] = 4, + ACTIONS(2350), 3, + sym_keyword_namespace, + sym_keyword_scope, + sym_keyword_root, + [38019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 1, - anon_sym_RBRACE, - ACTIONS(2337), 1, - sym_semi_colon, - STATE(1554), 1, - aux_sym_expressions_repeat1, - [37908] = 4, + ACTIONS(2222), 1, + anon_sym_COMMA, + ACTIONS(2352), 1, + sym_keyword_on_duplicate_key_update, + STATE(1516), 1, + aux_sym_insert_statement_repeat2, + [38032] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - ACTIONS(2339), 1, + ACTIONS(2354), 1, anon_sym_RPAREN, - STATE(1434), 1, + STATE(791), 1, aux_sym_define_user_statement_repeat1, - [37921] = 4, + [38045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1911), 1, aux_sym_type_name_token1, - STATE(1075), 1, - sym_field_assignment, - STATE(1313), 1, + ACTIONS(2356), 1, + sym_keyword_by, + STATE(951), 1, sym_identifier, - [37934] = 4, + [38058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1911), 1, aux_sym_type_name_token1, - STATE(1090), 1, - sym_field_assignment, - STATE(1313), 1, + ACTIONS(2358), 1, + sym_keyword_at, + STATE(922), 1, sym_identifier, - [37947] = 4, + [38071] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2222), 1, + anon_sym_COMMA, + ACTIONS(2352), 1, + sym_keyword_on_duplicate_key_update, + STATE(1570), 1, + aux_sym_insert_statement_repeat2, + [38084] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2222), 1, + anon_sym_COMMA, + ACTIONS(2360), 1, + sym_keyword_on_duplicate_key_update, + STATE(1516), 1, + aux_sym_insert_statement_repeat2, + [38097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2222), 1, + anon_sym_COMMA, + ACTIONS(2360), 1, + sym_keyword_on_duplicate_key_update, + STATE(1540), 1, + aux_sym_insert_statement_repeat2, + [38110] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - ACTIONS(2341), 1, + ACTIONS(2354), 1, anon_sym_RPAREN, - STATE(1564), 1, + STATE(1578), 1, aux_sym_define_user_statement_repeat1, - [37960] = 4, + [38123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1086), 1, + STATE(1114), 1, sym_field_assignment, - STATE(1313), 1, + STATE(1343), 1, sym_identifier, - [37973] = 4, + [38136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2362), 3, + sym_keyword_namespace, + sym_keyword_root, + sym_keyword_database, + [38145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2075), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - ACTIONS(2343), 1, - sym_keyword_table, - STATE(810), 1, + STATE(1111), 1, + sym_field_assignment, + STATE(1343), 1, sym_identifier, - [37986] = 4, + [38158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, - anon_sym_COMMA, - ACTIONS(2345), 1, - anon_sym_RPAREN, - STATE(795), 1, - aux_sym_define_user_statement_repeat1, - [37999] = 4, + ACTIONS(2364), 3, + sym_keyword_namespace, + sym_keyword_scope, + sym_keyword_root, + [38167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2347), 1, + ACTIONS(2118), 1, anon_sym_COMMA, - ACTIONS(2350), 1, + ACTIONS(2366), 1, anon_sym_RPAREN, - STATE(1565), 1, + STATE(1548), 1, aux_sym_graph_path_repeat1, - [38012] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1867), 1, - aux_sym_type_name_token1, - ACTIONS(2352), 1, - sym_keyword_by, - STATE(894), 1, - sym_identifier, - [38025] = 4, + [38180] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1259), 1, anon_sym_COMMA, - ACTIONS(2345), 1, + ACTIONS(2368), 1, anon_sym_RPAREN, - STATE(1570), 1, + STATE(791), 1, aux_sym_define_user_statement_repeat1, - [38038] = 4, + [38193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1927), 1, - anon_sym_COMMA, - ACTIONS(2354), 1, - anon_sym_RPAREN, - STATE(1494), 1, - aux_sym_param_list_repeat1, - [38051] = 4, + ACTIONS(2370), 1, + anon_sym_LPAREN, + STATE(64), 1, + sym_argument_list, + [38203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_LPAREN, + STATE(1621), 1, + sym_param_list, + [38213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(730), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_block, + [38223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 1, + sym_keyword_into, + ACTIONS(2376), 1, + sym_keyword_ignore, + [38233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1075), 1, - sym_field_assignment, - STATE(1285), 1, + STATE(1281), 1, sym_identifier, - [38064] = 4, + [38243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 1, - anon_sym_COMMA, - ACTIONS(2356), 1, - anon_sym_RPAREN, - STATE(795), 1, - aux_sym_define_user_statement_repeat1, - [38077] = 4, + ACTIONS(2078), 1, + aux_sym_type_name_token1, + STATE(964), 1, + sym_identifier, + [38253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1867), 1, + ACTIONS(2078), 1, aux_sym_type_name_token1, - ACTIONS(2358), 1, - sym_keyword_on, - STATE(1327), 1, + STATE(914), 1, sym_identifier, - [38090] = 4, + [38263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2327), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1075), 1, - sym_field_assignment, - STATE(1283), 1, + STATE(1698), 1, sym_identifier, - [38103] = 4, + [38281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, - sym_keyword_select, - STATE(1309), 1, - sym_select_clause, - STATE(1349), 1, - sym_select_statement, - [38116] = 3, + ACTIONS(2378), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [38289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1089), 1, + STATE(1283), 1, sym_identifier, - [38126] = 3, + [38299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(765), 1, + STATE(1495), 1, sym_identifier, - [38136] = 3, + [38309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - sym_keyword_into, - ACTIONS(2362), 1, - sym_keyword_ignore, - [38146] = 3, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(1496), 1, + sym_object, + [38319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1282), 1, + STATE(1336), 1, sym_identifier, - [38156] = 3, + [38329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 2, + sym_keyword_on, + aux_sym_type_name_token1, + [38337] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(730), 1, anon_sym_LBRACE, - STATE(1187), 1, + STATE(1188), 1, sym_block, - [38166] = 3, + [38347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(2078), 1, aux_sym_type_name_token1, - STATE(1286), 1, + STATE(771), 1, sym_identifier, - [38176] = 2, + [38357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 2, + ACTIONS(1964), 1, aux_sym_type_name_token1, - sym_variable_name, - [38184] = 3, + STATE(1572), 1, + sym_identifier, + [38367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(770), 1, + STATE(1559), 1, sym_identifier, - [38194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2366), 1, - anon_sym_RPAREN, - ACTIONS(2368), 1, - sym_variable_name, - [38204] = 3, + [38377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(874), 1, - sym_identifier, - [38214] = 3, + ACTIONS(2380), 2, + sym_keyword_password, + sym_keyword_password_hash, + [38385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 1, - anon_sym_LPAREN, - STATE(182), 1, - sym_argument_list, - [38224] = 3, + ACTIONS(2382), 1, + sym_keyword_type, + STATE(1710), 1, + sym_token_type_clause, + [38395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1567), 1, + STATE(881), 1, sym_identifier, - [38234] = 3, + [38405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(2078), 1, aux_sym_type_name_token1, - STATE(1561), 1, + STATE(809), 1, sym_identifier, - [38244] = 3, + [38415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, + ACTIONS(1952), 1, sym_keyword_from, - STATE(1417), 1, + STATE(1406), 1, sym_from_clause, - [38254] = 2, + [38425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2370), 2, - sym_keyword_on_duplicate_key_update, - anon_sym_COMMA, - [38262] = 2, + ACTIONS(2384), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym_argument_list_count, + [38435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 2, - sym_keyword_on_duplicate_key_update, - anon_sym_COMMA, - [38270] = 3, + ACTIONS(2386), 1, + sym_keyword_into, + ACTIONS(2388), 1, + sym_keyword_ignore, + [38445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - sym_keyword_on, - STATE(796), 1, - sym_on_table_clause, - [38280] = 3, + ACTIONS(2372), 1, + anon_sym_LPAREN, + STATE(1581), 1, + sym_param_list, + [38455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(730), 1, + anon_sym_LBRACE, + STATE(1197), 1, + sym_block, + [38465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(825), 1, + STATE(1113), 1, sym_identifier, - [38290] = 3, + [38475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1230), 1, + STATE(809), 1, sym_identifier, - [38300] = 3, + [38485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2376), 1, - sym_keyword_into, - ACTIONS(2378), 1, - sym_keyword_ignore, - [38310] = 3, + ACTIONS(2390), 2, + sym_keyword_on_duplicate_key_update, + anon_sym_COMMA, + [38493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2380), 1, - anon_sym_LPAREN, - STATE(83), 1, - sym_argument_list_count, - [38320] = 3, + ACTIONS(2392), 2, + aux_sym_type_name_token1, + sym_variable_name, + [38501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 1, + ACTIONS(1940), 1, anon_sym_LPAREN, - STATE(324), 1, + STATE(67), 1, sym_argument_list, - [38330] = 3, + [38511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(2394), 1, sym_keyword_on, - STATE(798), 1, + STATE(794), 1, sym_on_table_clause, - [38340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_RBRACK, - ACTIONS(2384), 1, - anon_sym_QMARK, - [38350] = 3, + [38521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(883), 1, + STATE(816), 1, sym_identifier, - [38360] = 3, + [38531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 1, + ACTIONS(2396), 1, anon_sym_LPAREN, - STATE(79), 1, - sym_argument_list, - [38370] = 3, + STATE(80), 1, + sym_argument_list_count, + [38541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2398), 1, sym_keyword_index, - ACTIONS(2388), 1, + ACTIONS(2400), 1, sym_keyword_no_index, - [38380] = 3, + [38551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 1, - sym_keyword_function, - ACTIONS(2392), 1, - sym_keyword_param, - [38390] = 3, + ACTIONS(2394), 1, + sym_keyword_on, + STATE(797), 1, + sym_on_table_clause, + [38561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1251), 1, + STATE(1100), 1, sym_identifier, - [38400] = 3, + [38571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, - anon_sym_LPAREN, - STATE(445), 1, - sym_argument_list, - [38410] = 3, + ACTIONS(2402), 2, + sym_keyword_on_duplicate_key_update, + anon_sym_COMMA, + [38579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1555), 1, - sym_object, - [38420] = 3, + ACTIONS(2400), 1, + sym_keyword_no_index, + ACTIONS(2404), 1, + sym_keyword_index, + [38589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2336), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [38597] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(730), 1, anon_sym_LBRACE, - STATE(1119), 1, + STATE(1128), 1, sym_block, - [38430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2374), 1, - sym_keyword_on, - STATE(801), 1, - sym_on_table_clause, - [38440] = 3, + [38607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - aux_sym_type_name_token1, - STATE(813), 1, - sym_identifier, - [38450] = 3, + ACTIONS(832), 1, + anon_sym_RBRACK, + ACTIONS(2406), 1, + anon_sym_QMARK, + [38617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 1, + ACTIONS(2408), 1, anon_sym_LPAREN, - STATE(436), 1, - sym_argument_list_count, - [38460] = 3, + STATE(28), 1, + sym_argument_list, + [38627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1558), 1, + STATE(1588), 1, sym_identifier, - [38470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 1, - anon_sym_LT, - ACTIONS(2396), 1, - anon_sym_GT, - [38480] = 3, + [38637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1644), 1, + STATE(1749), 1, sym_identifier, - [38490] = 3, + [38647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2398), 1, + ACTIONS(2090), 1, anon_sym_LPAREN, - STATE(117), 1, + STATE(83), 1, sym_argument_list, - [38500] = 3, + [38657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(834), 1, - anon_sym_RBRACK, - ACTIONS(2400), 1, - anon_sym_QMARK, - [38510] = 3, + ACTIONS(2410), 1, + sym_keyword_function, + ACTIONS(2412), 1, + sym_keyword_param, + [38667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1661), 1, + STATE(1652), 1, sym_identifier, - [38520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2402), 1, - anon_sym_LPAREN, - STATE(1693), 1, - sym_param_list, - [38530] = 3, + [38677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1231), 1, + STATE(1218), 1, sym_identifier, - [38540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2180), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [38548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2402), 1, - anon_sym_LPAREN, - STATE(1670), 1, - sym_param_list, - [38558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2404), 1, - anon_sym_LPAREN, - STATE(330), 1, - sym_argument_list, - [38568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2175), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [38576] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [38584] = 3, + [38687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(770), 1, + STATE(1557), 1, sym_identifier, - [38594] = 3, + [38697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 1, - anon_sym_LPAREN, - STATE(171), 1, - sym_argument_list_count, - [38604] = 3, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1210), 1, + sym_identifier, + [38707] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, - STATE(1617), 1, + STATE(1558), 1, sym_object, - [38614] = 3, + [38717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(2414), 1, aux_sym_type_name_token1, - STATE(1391), 1, + STATE(842), 1, sym_identifier, - [38624] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 2, - sym_keyword_on, - aux_sym_type_name_token1, - [38632] = 3, + [38727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1368), 1, + STATE(879), 1, sym_identifier, - [38642] = 3, + [38737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1375), 1, + STATE(871), 1, sym_identifier, - [38652] = 3, + [38747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1986), 1, - sym_keyword_from, - STATE(1417), 1, - sym_from_clause, - [38662] = 2, + ACTIONS(2382), 1, + sym_keyword_type, + STATE(1715), 1, + sym_token_type_clause, + [38757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2410), 2, + ACTIONS(2416), 2, sym_keyword_password, sym_keyword_password_hash, - [38670] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2012), 2, - sym_keyword_from, - sym_keyword_omit, - [38678] = 3, + [38765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(2414), 1, aux_sym_type_name_token1, - STATE(1432), 1, + STATE(771), 1, sym_identifier, - [38688] = 3, + [38775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 1, + ACTIONS(2372), 1, anon_sym_LPAREN, - STATE(1686), 1, + STATE(1699), 1, sym_param_list, - [38698] = 3, + [38785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 1, - anon_sym_LPAREN, - STATE(278), 1, - sym_argument_list, - [38708] = 3, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1383), 1, + sym_identifier, + [38795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 1, - sym_keyword_type, - STATE(1807), 1, - sym_token_type_clause, - [38718] = 3, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1421), 1, + sym_identifier, + [38805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2388), 1, - sym_keyword_no_index, - ACTIONS(2416), 1, - sym_keyword_index, - [38728] = 3, + ACTIONS(2418), 1, + anon_sym_LPAREN, + STATE(458), 1, + sym_argument_list_count, + [38815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - sym_keyword_on, - STATE(1424), 1, - sym_on_table_clause, - [38738] = 3, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(1678), 1, + sym_object, + [38825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1637), 1, - sym_identifier, - [38748] = 3, + ACTIONS(2066), 1, + anon_sym_LPAREN, + STATE(483), 1, + sym_argument_list, + [38835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, - sym_keyword_on, - STATE(1444), 1, - sym_on_table_clause, - [38758] = 3, + ACTIONS(1978), 1, + sym_keyword_from, + STATE(1406), 1, + sym_from_clause, + [38845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(899), 1, - sym_identifier, - [38768] = 3, + ACTIONS(2084), 2, + sym_keyword_from, + sym_keyword_omit, + [38853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(835), 1, + STATE(1461), 1, sym_identifier, - [38778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_RBRACK, - ACTIONS(2422), 1, - anon_sym_QMARK, - [38788] = 3, + [38863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(938), 1, + STATE(1683), 1, sym_identifier, - [38798] = 3, + [38873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 1, + ACTIONS(2420), 1, sym_keyword_on, - STATE(1179), 1, + STATE(1469), 1, sym_on_table_clause, - [38808] = 3, + [38883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1606), 1, + STATE(933), 1, sym_identifier, - [38818] = 3, + [38893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(2422), 2, + aux_sym_type_name_token1, + sym_variable_name, + [38901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, sym_keyword_on, - STATE(812), 1, + STATE(1191), 1, sym_on_table_clause, - [38828] = 3, + [38911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1806), 1, + STATE(1685), 1, sym_identifier, - [38838] = 3, + [38921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 1, - anon_sym_LBRACE, - STATE(1197), 1, - sym_block, - [38848] = 3, + ACTIONS(844), 1, + anon_sym_RBRACK, + ACTIONS(2424), 1, + anon_sym_QMARK, + [38931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(945), 1, + STATE(936), 1, sym_identifier, - [38858] = 3, + [38941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(855), 1, + STATE(850), 1, sym_identifier, - [38868] = 3, + [38951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1874), 1, + STATE(1860), 1, sym_identifier, - [38878] = 3, + [38961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1875), 1, + STATE(1793), 1, sym_identifier, - [38888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2402), 1, - anon_sym_LPAREN, - STATE(1578), 1, - sym_param_list, - [38898] = 3, + [38971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1539), 1, + STATE(1217), 1, sym_identifier, - [38908] = 3, + [38981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1327), 1, - sym_identifier, - [38918] = 3, + ACTIONS(2372), 1, + anon_sym_LPAREN, + STATE(1689), 1, + sym_param_list, + [38991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, + ACTIONS(2426), 1, aux_sym_type_name_token1, - STATE(977), 1, + STATE(1507), 1, sym_identifier, - [38928] = 3, + [39001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(871), 1, + STATE(1346), 1, sym_identifier, - [38938] = 3, + [39011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 1, - aux_sym_type_name_token1, - STATE(914), 1, - sym_identifier, - [38948] = 3, + ACTIONS(2428), 1, + anon_sym_LPAREN, + STATE(337), 1, + sym_argument_list, + [39021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1621), 1, + STATE(1806), 1, sym_identifier, - [38958] = 3, + [39031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1871), 1, + STATE(1815), 1, sym_identifier, - [38968] = 2, + [39041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [38976] = 3, + ACTIONS(43), 1, + anon_sym_LBRACE, + STATE(1125), 1, + sym_object, + [39051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1867), 1, + STATE(1228), 1, sym_identifier, - [38986] = 3, + [39061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1531), 1, + STATE(887), 1, sym_identifier, - [38996] = 3, + [39071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + anon_sym_LT, + ACTIONS(2430), 1, + anon_sym_GT, + [39081] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_LBRACE, - STATE(1437), 1, + STATE(1115), 1, sym_object, - [39006] = 3, + [39091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 1, + ACTIONS(39), 1, + anon_sym_LBRACK, + STATE(1104), 1, + sym_array, + [39101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1309), 1, + sym_identifier, + [39111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2432), 1, anon_sym_LPAREN, - STATE(67), 1, + STATE(437), 1, sym_argument_list_count, - [39016] = 3, + [39121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(2102), 1, anon_sym_LPAREN, - STATE(73), 1, + STATE(451), 1, sym_argument_list, - [39026] = 3, + [39131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1133), 1, - sym_object, - [39036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(848), 1, + ACTIONS(838), 1, anon_sym_RBRACK, - ACTIONS(2430), 1, + ACTIONS(2434), 1, anon_sym_QMARK, - [39046] = 3, + [39141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 1, + ACTIONS(2436), 1, anon_sym_LPAREN, - STATE(23), 1, + STATE(290), 1, sym_argument_list, - [39056] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(730), 1, - anon_sym_LBRACE, - STATE(1186), 1, - sym_block, - [39066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(1146), 1, - sym_object, - [39076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACK, - STATE(1144), 1, - sym_array, - [39086] = 2, + [39151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 2, - sym_keyword_password, - sym_keyword_password_hash, - [39094] = 3, + ACTIONS(2394), 1, + sym_keyword_on, + STATE(801), 1, + sym_on_table_clause, + [39161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 1, - sym_keyword_type, - STATE(1783), 1, - sym_token_type_clause, - [39104] = 3, + ACTIONS(2149), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [39169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 1, - aux_sym_type_name_token1, - STATE(770), 1, - sym_identifier, - [39114] = 3, + ACTIONS(2438), 1, + anon_sym_COMMA, + ACTIONS(2440), 1, + anon_sym_PIPE_GT, + [39179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 1, + ACTIONS(856), 1, + anon_sym_RBRACK, + ACTIONS(2442), 1, + anon_sym_QMARK, + [39189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2444), 1, anon_sym_LPAREN, - STATE(482), 1, + STATE(186), 1, sym_argument_list_count, - [39124] = 3, + [39199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 1, + ACTIONS(2058), 1, anon_sym_LPAREN, - STATE(484), 1, + STATE(174), 1, sym_argument_list, - [39134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1378), 1, - sym_identifier, - [39144] = 3, + [39209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, - anon_sym_RBRACK, - ACTIONS(2438), 1, - anon_sym_QMARK, - [39154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2350), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [39162] = 3, + ACTIONS(2420), 1, + sym_keyword_on, + STATE(1556), 1, + sym_on_table_clause, + [39219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 1, + ACTIONS(2372), 1, anon_sym_LPAREN, - STATE(1648), 1, + STATE(1606), 1, sym_param_list, - [39172] = 3, + [39229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2440), 1, - anon_sym_LPAREN, - STATE(56), 1, - sym_argument_list, - [39182] = 3, + ACTIONS(2394), 1, + sym_keyword_on, + STATE(802), 1, + sym_on_table_clause, + [39239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(856), 1, + ACTIONS(852), 1, anon_sym_RBRACK, - ACTIONS(2442), 1, + ACTIONS(2446), 1, anon_sym_QMARK, - [39192] = 3, + [39249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 1, + ACTIONS(2448), 1, anon_sym_LPAREN, - STATE(443), 1, + STATE(117), 1, sym_argument_list, - [39202] = 3, + [39259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, - anon_sym_COMMA, - ACTIONS(2446), 1, - anon_sym_PIPE_GT, - [39212] = 3, + ACTIONS(2372), 1, + anon_sym_LPAREN, + STATE(1594), 1, + sym_param_list, + [39269] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(730), 1, anon_sym_LBRACE, STATE(1175), 1, sym_block, - [39222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(1596), 1, - sym_identifier, - [39232] = 3, + [39279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 1, + ACTIONS(2450), 1, anon_sym_LPAREN, - STATE(418), 1, - sym_argument_list_count, - [39242] = 2, + STATE(273), 1, + sym_argument_list, + [39289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 2, - aux_sym_type_name_token1, + ACTIONS(2452), 1, + anon_sym_RPAREN, + ACTIONS(2454), 1, sym_variable_name, - [39250] = 3, + [39299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, - aux_sym_type_name_token1, - STATE(813), 1, - sym_identifier, - [39260] = 3, + ACTIONS(836), 1, + anon_sym_RBRACK, + ACTIONS(2456), 1, + anon_sym_QMARK, + [39309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2402), 1, - anon_sym_LPAREN, - STATE(1605), 1, - sym_param_list, - [39270] = 3, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(1616), 1, + sym_identifier, + [39319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1992), 1, + ACTIONS(1964), 1, aux_sym_type_name_token1, - STATE(1155), 1, + STATE(771), 1, sym_identifier, - [39280] = 3, + [39329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 1, - anon_sym_LBRACE, - STATE(1143), 1, - sym_block, - [39290] = 2, + ACTIONS(1964), 1, + aux_sym_type_name_token1, + STATE(765), 1, + sym_identifier, + [39339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - sym_keyword_select, - [39297] = 2, + ACTIONS(2458), 1, + anon_sym_LPAREN, + STATE(419), 1, + sym_argument_list_count, + [39349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_AT, - [39304] = 2, + ACTIONS(2024), 1, + anon_sym_LPAREN, + STATE(445), 1, + sym_argument_list, + [39359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, + ACTIONS(2460), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [39311] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2456), 1, - sym_keyword_value, - [39318] = 2, + [39367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, - anon_sym_DOT_DOT, - [39325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2460), 1, - anon_sym_RPAREN, - [39332] = 2, + ACTIONS(730), 1, + anon_sym_LBRACE, + STATE(1110), 1, + sym_block, + [39377] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2462), 1, - sym_decimal, - [39339] = 2, + anon_sym_COLON, + [39384] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2464), 1, - anon_sym_COLON, - [39346] = 2, + anon_sym_RBRACE, + [39391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 1, - anon_sym_COLON, - [39353] = 2, + ACTIONS(760), 1, + anon_sym_RPAREN, + [39398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(806), 1, - anon_sym_RPAREN, - [39360] = 2, + ACTIONS(2466), 1, + sym_keyword_select, + [39405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2468), 1, - anon_sym_LPAREN, - [39367] = 2, + sym_keyword_values, + [39412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2470), 1, anon_sym_RBRACE, - [39374] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(800), 1, - anon_sym_RPAREN, - [39381] = 2, + [39419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2472), 1, anon_sym_RPAREN, - [39388] = 2, + [39426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2474), 1, - anon_sym_DASH_GT, - [39395] = 2, + anon_sym_PIPE_GT, + [39433] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2476), 1, - anon_sym_LPAREN, - [39402] = 2, + sym_keyword_select, + [39440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2478), 1, - anon_sym_COLON, - [39409] = 2, + anon_sym_COMMA, + [39447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2480), 1, - anon_sym_COLON, - [39416] = 2, + sym_keyword_value, + [39454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2482), 1, - anon_sym_COLON, - [39423] = 2, + anon_sym_RPAREN, + [39461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2484), 1, - sym_keyword_type, - [39430] = 2, + anon_sym_COLON, + [39468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2486), 1, - anon_sym_COLON, - [39437] = 2, + sym_keyword_value, + [39475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(814), 1, + anon_sym_RPAREN, + [39482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2488), 1, - anon_sym_COLON, - [39444] = 2, + sym_keyword_value, + [39489] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2490), 1, anon_sym_COLON, - [39451] = 2, + [39496] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2492), 1, - anon_sym_COLON, - [39458] = 2, + sym_keyword_value, + [39503] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2494), 1, - anon_sym_COLON, - [39465] = 2, + sym_string, + [39510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2496), 1, - anon_sym_LBRACE, - [39472] = 2, + sym_custom_function_name, + [39517] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2498), 1, - anon_sym_COLON, - [39479] = 2, + sym_variable_name, + [39524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2500), 1, - anon_sym_COLON, - [39486] = 2, + sym_keyword_value, + [39531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2502), 1, - sym_keyword_table, - [39493] = 2, + sym_custom_function_name, + [39538] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2504), 1, - anon_sym_RPAREN, - [39500] = 2, + anon_sym_COLON, + [39545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2506), 1, - sym_keyword_value, - [39507] = 2, + anon_sym_RBRACE, + [39552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2508), 1, - sym_string, - [39514] = 2, + anon_sym_RPAREN, + [39559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2510), 1, - sym_keyword_exists, - [39521] = 2, + anon_sym_COLON, + [39566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2512), 1, - anon_sym_COLON, - [39528] = 2, + sym_keyword_exists, + [39573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2514), 1, - anon_sym_COLON, - [39535] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(788), 1, - anon_sym_RPAREN, - [39542] = 2, + anon_sym_LPAREN, + [39580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2516), 1, - anon_sym_COLON, - [39549] = 2, + sym_string, + [39587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2518), 1, - sym_keyword_exists, - [39556] = 2, + sym_string, + [39594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2520), 1, - sym_keyword_value, - [39563] = 2, + anon_sym_COLON, + [39601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2522), 1, - sym_keyword_on, - [39570] = 2, + sym_keyword_roles, + [39608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2524), 1, - anon_sym_RBRACE, - [39577] = 2, + anon_sym_COLON, + [39615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2526), 1, - anon_sym_RPAREN, - [39584] = 2, + anon_sym_COLON, + [39622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2528), 1, anon_sym_COLON, - [39591] = 2, + [39629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2440), 1, + anon_sym_AT, + [39636] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2530), 1, - anon_sym_COLON, - [39598] = 2, + anon_sym_RPAREN, + [39643] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2532), 1, anon_sym_COLON, - [39605] = 2, + [39650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2534), 1, anon_sym_COLON, - [39612] = 2, + [39657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2536), 1, anon_sym_COLON, - [39619] = 2, + [39664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2538), 1, - sym_keyword_on, - [39626] = 2, + anon_sym_COLON, + [39671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(788), 1, + anon_sym_RPAREN, + [39678] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2540), 1, - anon_sym_DASH_GT, - [39633] = 2, + anon_sym_LPAREN, + [39685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2542), 1, - anon_sym_COLON, - [39640] = 2, + sym_keyword_values, + [39692] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2544), 1, - anon_sym_COLON, - [39647] = 2, + anon_sym_RBRACE, + [39699] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2546), 1, - anon_sym_COLON, - [39654] = 2, + sym_decimal, + [39706] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2548), 1, - anon_sym_COLON, - [39661] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 1, - sym_variable_name, - [39668] = 2, + anon_sym_RPAREN, + [39713] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2550), 1, - sym_custom_function_name, - [39675] = 2, + anon_sym_COLON, + [39720] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2552), 1, - anon_sym_COLON, - [39682] = 2, + anon_sym_RPAREN, + [39727] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2554), 1, anon_sym_COLON, - [39689] = 2, + [39734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(794), 1, + anon_sym_RPAREN, + [39741] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2556), 1, - anon_sym_COLON, - [39696] = 2, + anon_sym_DASH_GT, + [39748] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2558), 1, - anon_sym_PIPE_GT, - [39703] = 2, + anon_sym_COLON, + [39755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(776), 1, + anon_sym_RPAREN, + [39762] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2560), 1, anon_sym_COLON, - [39710] = 2, + [39769] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2562), 1, - sym_keyword_exists, - [39717] = 2, + sym_keyword_analyzer, + [39776] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2564), 1, - sym_variable_name, - [39724] = 2, + anon_sym_COLON, + [39783] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2566), 1, - sym_keyword_value, - [39731] = 2, + anon_sym_COLON, + [39790] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2568), 1, - sym_custom_function_name, - [39738] = 2, + sym_string, + [39797] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2570), 1, - anon_sym_COLON, - [39745] = 2, + sym_keyword_roles, + [39804] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2572), 1, - sym_keyword_on, - [39752] = 2, + anon_sym_COLON, + [39811] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2574), 1, anon_sym_COLON, - [39759] = 2, + [39818] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2576), 1, - sym_keyword_on, - [39766] = 2, + anon_sym_DOT_DOT, + [39825] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2578), 1, - anon_sym_COLON, - [39773] = 2, + sym_keyword_on, + [39832] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2580), 1, anon_sym_COLON, - [39780] = 2, + [39839] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2582), 1, - anon_sym_COLON, - [39787] = 2, + sym_keyword_on, + [39846] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2584), 1, - sym_keyword_analyzer, - [39794] = 2, + anon_sym_COLON, + [39853] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2586), 1, - anon_sym_COLON, - [39801] = 2, + sym_variable_name, + [39860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2586), 1, + sym_custom_function_name, + [39867] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2588), 1, - sym_int, - [39808] = 2, + anon_sym_RPAREN, + [39874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2590), 1, - anon_sym_COLON, - [39815] = 2, + sym_variable_name, + [39881] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2592), 1, anon_sym_COLON, - [39822] = 2, + [39888] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2594), 1, - anon_sym_RBRACE, - [39829] = 2, + anon_sym_COLON, + [39895] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2596), 1, - sym_decimal, - [39836] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(814), 1, - anon_sym_RPAREN, - [39843] = 2, + anon_sym_LBRACE, + [39902] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2598), 1, - anon_sym_RBRACE, - [39850] = 2, + anon_sym_COLON, + [39909] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2600), 1, - anon_sym_COLON, - [39857] = 2, + sym_keyword_exists, + [39916] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2602), 1, - anon_sym_LPAREN, - [39864] = 2, + sym_variable_name, + [39923] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2604), 1, - sym_keyword_exists, - [39871] = 2, + sym_keyword_value, + [39930] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2606), 1, - sym_decimal, - [39878] = 2, + sym_custom_function_name, + [39937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2608), 1, - sym_keyword_not, - [39885] = 2, + anon_sym_COLON, + [39944] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2610), 1, - anon_sym_GT, - [39892] = 2, + anon_sym_COLON, + [39951] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2612), 1, - anon_sym_COLON, - [39899] = 2, + sym_keyword_on, + [39958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2614), 1, - sym_decimal, - [39906] = 2, + anon_sym_COLON, + [39965] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2616), 1, - sym_custom_function_name, - [39913] = 2, + sym_keyword_on, + [39972] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2618), 1, - sym_keyword_value, - [39920] = 2, + anon_sym_COLON, + [39979] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2620), 1, - sym_keyword_value, - [39927] = 2, + anon_sym_COLON, + [39986] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2622), 1, sym_int, - [39934] = 2, + [39993] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2624), 1, - sym_int, - [39941] = 2, + anon_sym_COLON, + [40000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2626), 1, - sym_keyword_in, - [39948] = 2, + anon_sym_COLON, + [40007] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2628), 1, anon_sym_COLON, - [39955] = 2, + [40014] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2630), 1, - sym_string, - [39962] = 2, + anon_sym_COLON, + [40021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2392), 1, + sym_custom_function_name, + [40028] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2632), 1, - sym_variable_name, - [39969] = 2, + sym_keyword_on, + [40035] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2634), 1, - anon_sym_RPAREN, - [39976] = 2, + sym_decimal, + [40042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2636), 1, - anon_sym_RBRACE, - [39983] = 2, + anon_sym_RPAREN, + [40049] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2638), 1, - anon_sym_COLON, - [39990] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(114), 1, - anon_sym_COLON, - [39997] = 2, + sym_keyword_not, + [40056] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2640), 1, - anon_sym_RPAREN, - [40004] = 2, + anon_sym_GT, + [40063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2642), 1, - anon_sym_DASH_GT, - [40011] = 2, + anon_sym_RPAREN, + [40070] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2644), 1, - sym_keyword_into, - [40018] = 2, + sym_keyword_table, + [40077] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2646), 1, - sym_decimal, - [40025] = 2, + anon_sym_COLON, + [40084] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2648), 1, - sym_custom_function_name, - [40032] = 2, + anon_sym_LPAREN, + [40091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2650), 1, - anon_sym_COLON, - [40039] = 2, + sym_int, + [40098] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2652), 1, - sym_keyword_values, - [40046] = 2, + sym_int, + [40105] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2654), 1, - sym_string, - [40053] = 2, + sym_keyword_in, + [40112] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2656), 1, - anon_sym_PIPE_GT, - [40060] = 2, + anon_sym_DOT_DOT, + [40119] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2658), 1, - anon_sym_RPAREN, - [40067] = 2, + sym_keyword_on, + [40126] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2660), 1, - anon_sym_COMMA, - [40074] = 2, + sym_keyword_values, + [40133] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2662), 1, - anon_sym_RPAREN, - [40081] = 2, + sym_decimal, + [40140] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2664), 1, - sym_keyword_value, - [40088] = 2, + anon_sym_RBRACE, + [40147] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2666), 1, - sym_keyword_value, - [40095] = 2, + anon_sym_COLON, + [40154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_COLON, + [40161] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2668), 1, - sym_string, - [40102] = 2, + anon_sym_RPAREN, + [40168] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2670), 1, - sym_string, - [40109] = 2, + anon_sym_DASH_GT, + [40175] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2672), 1, - sym_keyword_roles, - [40116] = 2, + sym_keyword_into, + [40182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2674), 1, - anon_sym_RPAREN, - [40123] = 2, + sym_keyword_on, + [40189] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2676), 1, - anon_sym_LPAREN, - [40130] = 2, + sym_int, + [40196] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2678), 1, - anon_sym_DASH_GT, - [40137] = 2, + sym_int, + [40203] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2680), 1, - anon_sym_RBRACE, - [40144] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(792), 1, - anon_sym_RPAREN, - [40151] = 2, + sym_int, + [40210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2682), 1, - sym_custom_function_name, - [40158] = 2, + sym_int, + [40217] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2684), 1, anon_sym_DASH_GT, - [40165] = 2, + [40224] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2686), 1, - sym_keyword_values, - [40172] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2688), 1, sym_int, - [40179] = 2, + [40231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_GT, - [40186] = 2, + ACTIONS(2688), 1, + anon_sym_COLON, + [40238] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2690), 1, - anon_sym_DASH_GT, - [40193] = 2, + sym_custom_function_name, + [40245] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2692), 1, - anon_sym_RPAREN, - [40200] = 2, + anon_sym_DASH_GT, + [40252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2694), 1, - anon_sym_DASH_GT, - [40207] = 2, + sym_int, + [40259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2696), 1, sym_string, - [40214] = 2, + [40266] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2698), 1, - sym_keyword_roles, - [40221] = 2, + sym_int, + [40273] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2700), 1, - anon_sym_RPAREN, - [40228] = 2, + sym_int, + [40280] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2702), 1, - anon_sym_RBRACE, - [40235] = 2, + anon_sym_RPAREN, + [40287] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2704), 1, - sym_variable_name, - [40242] = 2, + sym_decimal, + [40294] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2706), 1, - anon_sym_LBRACE, - [40249] = 2, + anon_sym_COLON, + [40301] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2708), 1, - anon_sym_LPAREN, - [40256] = 2, + anon_sym_COLON, + [40308] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2710), 1, - sym_keyword_values, - [40263] = 2, + anon_sym_LBRACE, + [40315] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2712), 1, - anon_sym_DASH_GT, - [40270] = 2, + anon_sym_LPAREN, + [40322] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2714), 1, - sym_version_number, - [40277] = 2, + sym_float, + [40329] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2716), 1, - sym_int, - [40284] = 2, + anon_sym_COMMA, + [40336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2718), 1, - sym_int, - [40291] = 2, + anon_sym_LPAREN, + [40343] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2720), 1, - sym_int, - [40298] = 2, + sym_decimal, + [40350] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2722), 1, sym_int, - [40305] = 2, + [40357] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2724), 1, - anon_sym_COLON, - [40312] = 2, + anon_sym_RBRACE, + [40364] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2726), 1, - sym_int, - [40319] = 2, + anon_sym_COLON, + [40371] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2728), 1, - sym_int, - [40326] = 2, + sym_float, + [40378] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2730), 1, - sym_int, - [40333] = 2, + anon_sym_RPAREN, + [40385] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2732), 1, - sym_int, - [40340] = 2, + sym_keyword_value, + [40392] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2734), 1, - ts_builtin_sym_end, - [40347] = 2, + sym_string, + [40399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2736), 1, - ts_builtin_sym_end, - [40354] = 2, + sym_keyword_exists, + [40406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_RPAREN, - [40361] = 2, + ACTIONS(2430), 1, + anon_sym_GT, + [40413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(782), 1, - anon_sym_RPAREN, - [40368] = 2, + ACTIONS(2738), 1, + sym_version_number, + [40420] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2740), 1, - sym_decimal, - [40375] = 2, + anon_sym_DASH_GT, + [40427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2742), 1, - anon_sym_RPAREN, - [40382] = 2, + anon_sym_DASH_GT, + [40434] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2744), 1, - anon_sym_DOT_DOT, - [40389] = 2, + anon_sym_COLON, + [40441] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2746), 1, - anon_sym_COLON, - [40396] = 2, + anon_sym_RPAREN, + [40448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(758), 1, + anon_sym_RPAREN, + [40455] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2748), 1, - anon_sym_LBRACE, - [40403] = 2, + sym_keyword_exists, + [40462] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2750), 1, - anon_sym_LPAREN, - [40410] = 2, + sym_keyword_value, + [40469] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2752), 1, - sym_float, - [40417] = 2, + ts_builtin_sym_end, + [40476] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2754), 1, - anon_sym_COMMA, - [40424] = 2, + ts_builtin_sym_end, + [40483] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2756), 1, - sym_variable_name, - [40431] = 2, + anon_sym_RBRACE, + [40490] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2758), 1, - anon_sym_LPAREN, - [40438] = 2, + anon_sym_RPAREN, + [40497] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2760), 1, - sym_float, - [40445] = 2, + sym_keyword_on, + [40504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2762), 1, - anon_sym_RPAREN, - [40452] = 2, + anon_sym_DASH_GT, + [40511] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2764), 1, - sym_keyword_not, - [40459] = 2, + sym_decimal, + [40518] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2766), 1, - anon_sym_LPAREN, - [40466] = 2, + sym_variable_name, + [40525] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2768), 1, - anon_sym_LPAREN, - [40473] = 2, + sym_keyword_not, + [40532] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2770), 1, - anon_sym_LPAREN, - [40480] = 2, + anon_sym_COLON, + [40539] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2772), 1, - sym_keyword_values, - [40487] = 2, + sym_keyword_value, + [40546] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2774), 1, - sym_keyword_values, - [40494] = 2, + anon_sym_LPAREN, + [40553] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2776), 1, - sym_keyword_values, - [40501] = 2, + anon_sym_LPAREN, + [40560] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2778), 1, - sym_keyword_on, - [40508] = 2, + anon_sym_LPAREN, + [40567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2780), 1, - sym_keyword_select, - [40515] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2364), 1, - sym_custom_function_name, - [40522] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2450), 1, - sym_custom_function_name, - [40529] = 2, + sym_keyword_values, + [40574] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2782), 1, - sym_keyword_on, - [40536] = 2, + sym_keyword_values, + [40581] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2784), 1, - sym_keyword_table, - [40543] = 2, + sym_keyword_values, + [40588] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2786), 1, - anon_sym_COLON, - [40550] = 2, + anon_sym_LPAREN, + [40595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + sym_custom_function_name, + [40602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2788), 1, - sym_keyword_on, - [40557] = 2, + anon_sym_LPAREN, + [40609] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2790), 1, - sym_keyword_on, - [40564] = 2, + sym_keyword_type, + [40616] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2792), 1, - anon_sym_DOT_DOT, - [40571] = 2, + anon_sym_RPAREN, + [40623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2794), 1, - sym_keyword_value, - [40578] = 2, + anon_sym_LBRACE, + [40630] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2796), 1, + anon_sym_COLON, + [40637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2798), 1, + anon_sym_DOT_DOT, + [40644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym_keyword_table, + [40651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + anon_sym_DASH_GT, + [40658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2804), 1, + anon_sym_PIPE_GT, + [40665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2806), 1, sym_keyword_into, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(517)] = 0, - [SMALL_STATE(518)] = 75, + [SMALL_STATE(518)] = 89, [SMALL_STATE(519)] = 164, - [SMALL_STATE(520)] = 237, - [SMALL_STATE(521)] = 312, + [SMALL_STATE(520)] = 257, + [SMALL_STATE(521)] = 330, [SMALL_STATE(522)] = 405, [SMALL_STATE(523)] = 494, [SMALL_STATE(524)] = 583, [SMALL_STATE(525)] = 658, [SMALL_STATE(526)] = 730, - [SMALL_STATE(527)] = 804, - [SMALL_STATE(528)] = 892, - [SMALL_STATE(529)] = 986, - [SMALL_STATE(530)] = 1058, - [SMALL_STATE(531)] = 1130, - [SMALL_STATE(532)] = 1218, - [SMALL_STATE(533)] = 1306, - [SMALL_STATE(534)] = 1378, - [SMALL_STATE(535)] = 1450, - [SMALL_STATE(536)] = 1522, - [SMALL_STATE(537)] = 1594, - [SMALL_STATE(538)] = 1688, + [SMALL_STATE(527)] = 824, + [SMALL_STATE(528)] = 912, + [SMALL_STATE(529)] = 984, + [SMALL_STATE(530)] = 1072, + [SMALL_STATE(531)] = 1144, + [SMALL_STATE(532)] = 1238, + [SMALL_STATE(533)] = 1310, + [SMALL_STATE(534)] = 1384, + [SMALL_STATE(535)] = 1456, + [SMALL_STATE(536)] = 1530, + [SMALL_STATE(537)] = 1602, + [SMALL_STATE(538)] = 1674, [SMALL_STATE(539)] = 1762, - [SMALL_STATE(540)] = 1835, + [SMALL_STATE(540)] = 1849, [SMALL_STATE(541)] = 1922, [SMALL_STATE(542)] = 1995, [SMALL_STATE(543)] = 2084, - [SMALL_STATE(544)] = 2157, - [SMALL_STATE(545)] = 2230, - [SMALL_STATE(546)] = 2317, + [SMALL_STATE(544)] = 2171, + [SMALL_STATE(545)] = 2258, + [SMALL_STATE(546)] = 2331, [SMALL_STATE(547)] = 2404, - [SMALL_STATE(548)] = 2492, - [SMALL_STATE(549)] = 2578, - [SMALL_STATE(550)] = 2664, - [SMALL_STATE(551)] = 2754, - [SMALL_STATE(552)] = 2844, - [SMALL_STATE(553)] = 2934, - [SMALL_STATE(554)] = 3024, - [SMALL_STATE(555)] = 3114, - [SMALL_STATE(556)] = 3186, - [SMALL_STATE(557)] = 3276, - [SMALL_STATE(558)] = 3366, - [SMALL_STATE(559)] = 3456, - [SMALL_STATE(560)] = 3546, - [SMALL_STATE(561)] = 3636, - [SMALL_STATE(562)] = 3726, - [SMALL_STATE(563)] = 3798, - [SMALL_STATE(564)] = 3888, - [SMALL_STATE(565)] = 3978, - [SMALL_STATE(566)] = 4068, - [SMALL_STATE(567)] = 4158, - [SMALL_STATE(568)] = 4248, - [SMALL_STATE(569)] = 4320, - [SMALL_STATE(570)] = 4406, - [SMALL_STATE(571)] = 4478, - [SMALL_STATE(572)] = 4568, - [SMALL_STATE(573)] = 4658, - [SMALL_STATE(574)] = 4748, + [SMALL_STATE(548)] = 2490, + [SMALL_STATE(549)] = 2576, + [SMALL_STATE(550)] = 2666, + [SMALL_STATE(551)] = 2756, + [SMALL_STATE(552)] = 2846, + [SMALL_STATE(553)] = 2936, + [SMALL_STATE(554)] = 3008, + [SMALL_STATE(555)] = 3098, + [SMALL_STATE(556)] = 3170, + [SMALL_STATE(557)] = 3260, + [SMALL_STATE(558)] = 3350, + [SMALL_STATE(559)] = 3440, + [SMALL_STATE(560)] = 3530, + [SMALL_STATE(561)] = 3616, + [SMALL_STATE(562)] = 3706, + [SMALL_STATE(563)] = 3796, + [SMALL_STATE(564)] = 3886, + [SMALL_STATE(565)] = 3972, + [SMALL_STATE(566)] = 4062, + [SMALL_STATE(567)] = 4134, + [SMALL_STATE(568)] = 4224, + [SMALL_STATE(569)] = 4314, + [SMALL_STATE(570)] = 4402, + [SMALL_STATE(571)] = 4474, + [SMALL_STATE(572)] = 4564, + [SMALL_STATE(573)] = 4654, + [SMALL_STATE(574)] = 4744, [SMALL_STATE(575)] = 4834, - [SMALL_STATE(576)] = 4924, - [SMALL_STATE(577)] = 5014, - [SMALL_STATE(578)] = 5104, - [SMALL_STATE(579)] = 5194, - [SMALL_STATE(580)] = 5284, - [SMALL_STATE(581)] = 5370, - [SMALL_STATE(582)] = 5460, - [SMALL_STATE(583)] = 5550, - [SMALL_STATE(584)] = 5640, - [SMALL_STATE(585)] = 5730, - [SMALL_STATE(586)] = 5820, - [SMALL_STATE(587)] = 5910, - [SMALL_STATE(588)] = 6000, + [SMALL_STATE(576)] = 4920, + [SMALL_STATE(577)] = 5010, + [SMALL_STATE(578)] = 5096, + [SMALL_STATE(579)] = 5186, + [SMALL_STATE(580)] = 5276, + [SMALL_STATE(581)] = 5366, + [SMALL_STATE(582)] = 5456, + [SMALL_STATE(583)] = 5546, + [SMALL_STATE(584)] = 5636, + [SMALL_STATE(585)] = 5726, + [SMALL_STATE(586)] = 5816, + [SMALL_STATE(587)] = 5906, + [SMALL_STATE(588)] = 5996, [SMALL_STATE(589)] = 6086, - [SMALL_STATE(590)] = 6171, - [SMALL_STATE(591)] = 6242, - [SMALL_STATE(592)] = 6327, - [SMALL_STATE(593)] = 6412, - [SMALL_STATE(594)] = 6497, - [SMALL_STATE(595)] = 6582, + [SMALL_STATE(590)] = 6173, + [SMALL_STATE(591)] = 6244, + [SMALL_STATE(592)] = 6329, + [SMALL_STATE(593)] = 6414, + [SMALL_STATE(594)] = 6499, + [SMALL_STATE(595)] = 6584, [SMALL_STATE(596)] = 6669, [SMALL_STATE(597)] = 6754, [SMALL_STATE(598)] = 6838, @@ -88714,7 +88830,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(605)] = 7426, [SMALL_STATE(606)] = 7510, [SMALL_STATE(607)] = 7594, - [SMALL_STATE(608)] = 7664, + [SMALL_STATE(608)] = 7678, [SMALL_STATE(609)] = 7748, [SMALL_STATE(610)] = 7832, [SMALL_STATE(611)] = 7916, @@ -88877,32 +88993,32 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(768)] = 20918, [SMALL_STATE(769)] = 20993, [SMALL_STATE(770)] = 21067, - [SMALL_STATE(771)] = 21097, + [SMALL_STATE(771)] = 21141, [SMALL_STATE(772)] = 21171, - [SMALL_STATE(773)] = 21204, + [SMALL_STATE(773)] = 21232, [SMALL_STATE(774)] = 21265, [SMALL_STATE(775)] = 21326, - [SMALL_STATE(776)] = 21386, + [SMALL_STATE(776)] = 21356, [SMALL_STATE(777)] = 21416, [SMALL_STATE(778)] = 21446, [SMALL_STATE(779)] = 21476, [SMALL_STATE(780)] = 21506, [SMALL_STATE(781)] = 21536, - [SMALL_STATE(782)] = 21566, + [SMALL_STATE(782)] = 21596, [SMALL_STATE(783)] = 21626, [SMALL_STATE(784)] = 21656, [SMALL_STATE(785)] = 21719, [SMALL_STATE(786)] = 21782, [SMALL_STATE(787)] = 21845, - [SMALL_STATE(788)] = 21907, - [SMALL_STATE(789)] = 21969, - [SMALL_STATE(790)] = 22031, + [SMALL_STATE(788)] = 21871, + [SMALL_STATE(789)] = 21933, + [SMALL_STATE(790)] = 21995, [SMALL_STATE(791)] = 22057, - [SMALL_STATE(792)] = 22114, - [SMALL_STATE(793)] = 22171, - [SMALL_STATE(794)] = 22228, - [SMALL_STATE(795)] = 22271, - [SMALL_STATE(796)] = 22300, + [SMALL_STATE(792)] = 22086, + [SMALL_STATE(793)] = 22129, + [SMALL_STATE(794)] = 22186, + [SMALL_STATE(795)] = 22229, + [SMALL_STATE(796)] = 22286, [SMALL_STATE(797)] = 22343, [SMALL_STATE(798)] = 22386, [SMALL_STATE(799)] = 22429, @@ -88910,1081 +89026,1087 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(801)] = 22529, [SMALL_STATE(802)] = 22571, [SMALL_STATE(803)] = 22613, - [SMALL_STATE(804)] = 22651, - [SMALL_STATE(805)] = 22693, - [SMALL_STATE(806)] = 22749, - [SMALL_STATE(807)] = 22805, - [SMALL_STATE(808)] = 22843, - [SMALL_STATE(809)] = 22885, - [SMALL_STATE(810)] = 22941, - [SMALL_STATE(811)] = 22965, - [SMALL_STATE(812)] = 23003, - [SMALL_STATE(813)] = 23045, + [SMALL_STATE(804)] = 22655, + [SMALL_STATE(805)] = 22711, + [SMALL_STATE(806)] = 22735, + [SMALL_STATE(807)] = 22773, + [SMALL_STATE(808)] = 22815, + [SMALL_STATE(809)] = 22857, + [SMALL_STATE(810)] = 22881, + [SMALL_STATE(811)] = 22937, + [SMALL_STATE(812)] = 22975, + [SMALL_STATE(813)] = 23013, [SMALL_STATE(814)] = 23069, [SMALL_STATE(815)] = 23125, - [SMALL_STATE(816)] = 23150, - [SMALL_STATE(817)] = 23187, - [SMALL_STATE(818)] = 23238, - [SMALL_STATE(819)] = 23275, - [SMALL_STATE(820)] = 23312, - [SMALL_STATE(821)] = 23347, - [SMALL_STATE(822)] = 23398, - [SMALL_STATE(823)] = 23435, + [SMALL_STATE(816)] = 23162, + [SMALL_STATE(817)] = 23199, + [SMALL_STATE(818)] = 23250, + [SMALL_STATE(819)] = 23301, + [SMALL_STATE(820)] = 23338, + [SMALL_STATE(821)] = 23375, + [SMALL_STATE(822)] = 23412, + [SMALL_STATE(823)] = 23449, [SMALL_STATE(824)] = 23486, - [SMALL_STATE(825)] = 23523, - [SMALL_STATE(826)] = 23560, - [SMALL_STATE(827)] = 23595, - [SMALL_STATE(828)] = 23646, - [SMALL_STATE(829)] = 23683, + [SMALL_STATE(825)] = 23537, + [SMALL_STATE(826)] = 23574, + [SMALL_STATE(827)] = 23625, + [SMALL_STATE(828)] = 23650, + [SMALL_STATE(829)] = 23685, [SMALL_STATE(830)] = 23720, [SMALL_STATE(831)] = 23771, - [SMALL_STATE(832)] = 23793, - [SMALL_STATE(833)] = 23815, - [SMALL_STATE(834)] = 23851, - [SMALL_STATE(835)] = 23901, - [SMALL_STATE(836)] = 23929, + [SMALL_STATE(832)] = 23821, + [SMALL_STATE(833)] = 23857, + [SMALL_STATE(834)] = 23907, + [SMALL_STATE(835)] = 23935, + [SMALL_STATE(836)] = 23957, [SMALL_STATE(837)] = 23979, [SMALL_STATE(838)] = 24015, - [SMALL_STATE(839)] = 24041, - [SMALL_STATE(840)] = 24091, - [SMALL_STATE(841)] = 24141, - [SMALL_STATE(842)] = 24175, - [SMALL_STATE(843)] = 24211, - [SMALL_STATE(844)] = 24247, - [SMALL_STATE(845)] = 24269, - [SMALL_STATE(846)] = 24291, - [SMALL_STATE(847)] = 24313, - [SMALL_STATE(848)] = 24335, - [SMALL_STATE(849)] = 24361, - [SMALL_STATE(850)] = 24383, - [SMALL_STATE(851)] = 24405, - [SMALL_STATE(852)] = 24427, - [SMALL_STATE(853)] = 24461, - [SMALL_STATE(854)] = 24489, - [SMALL_STATE(855)] = 24539, + [SMALL_STATE(839)] = 24065, + [SMALL_STATE(840)] = 24099, + [SMALL_STATE(841)] = 24121, + [SMALL_STATE(842)] = 24171, + [SMALL_STATE(843)] = 24199, + [SMALL_STATE(844)] = 24221, + [SMALL_STATE(845)] = 24243, + [SMALL_STATE(846)] = 24265, + [SMALL_STATE(847)] = 24301, + [SMALL_STATE(848)] = 24327, + [SMALL_STATE(849)] = 24349, + [SMALL_STATE(850)] = 24371, + [SMALL_STATE(851)] = 24407, + [SMALL_STATE(852)] = 24433, + [SMALL_STATE(853)] = 24469, + [SMALL_STATE(854)] = 24503, + [SMALL_STATE(855)] = 24525, [SMALL_STATE(856)] = 24575, - [SMALL_STATE(857)] = 24600, - [SMALL_STATE(858)] = 24645, - [SMALL_STATE(859)] = 24690, - [SMALL_STATE(860)] = 24731, - [SMALL_STATE(861)] = 24772, - [SMALL_STATE(862)] = 24817, - [SMALL_STATE(863)] = 24838, - [SMALL_STATE(864)] = 24859, - [SMALL_STATE(865)] = 24884, - [SMALL_STATE(866)] = 24929, - [SMALL_STATE(867)] = 24974, - [SMALL_STATE(868)] = 24995, - [SMALL_STATE(869)] = 25040, + [SMALL_STATE(857)] = 24596, + [SMALL_STATE(858)] = 24637, + [SMALL_STATE(859)] = 24662, + [SMALL_STATE(860)] = 24683, + [SMALL_STATE(861)] = 24728, + [SMALL_STATE(862)] = 24749, + [SMALL_STATE(863)] = 24770, + [SMALL_STATE(864)] = 24815, + [SMALL_STATE(865)] = 24840, + [SMALL_STATE(866)] = 24885, + [SMALL_STATE(867)] = 24930, + [SMALL_STATE(868)] = 24971, + [SMALL_STATE(869)] = 25016, [SMALL_STATE(870)] = 25061, - [SMALL_STATE(871)] = 25101, - [SMALL_STATE(872)] = 25125, - [SMALL_STATE(873)] = 25149, - [SMALL_STATE(874)] = 25173, - [SMALL_STATE(875)] = 25197, - [SMALL_STATE(876)] = 25237, - [SMALL_STATE(877)] = 25261, - [SMALL_STATE(878)] = 25285, - [SMALL_STATE(879)] = 25325, - [SMALL_STATE(880)] = 25365, - [SMALL_STATE(881)] = 25389, - [SMALL_STATE(882)] = 25429, - [SMALL_STATE(883)] = 25453, - [SMALL_STATE(884)] = 25477, - [SMALL_STATE(885)] = 25521, - [SMALL_STATE(886)] = 25545, - [SMALL_STATE(887)] = 25589, - [SMALL_STATE(888)] = 25613, - [SMALL_STATE(889)] = 25637, - [SMALL_STATE(890)] = 25661, - [SMALL_STATE(891)] = 25701, - [SMALL_STATE(892)] = 25745, - [SMALL_STATE(893)] = 25789, - [SMALL_STATE(894)] = 25825, - [SMALL_STATE(895)] = 25849, - [SMALL_STATE(896)] = 25873, - [SMALL_STATE(897)] = 25913, - [SMALL_STATE(898)] = 25957, - [SMALL_STATE(899)] = 25997, - [SMALL_STATE(900)] = 26021, - [SMALL_STATE(901)] = 26045, - [SMALL_STATE(902)] = 26069, - [SMALL_STATE(903)] = 26109, - [SMALL_STATE(904)] = 26145, + [SMALL_STATE(871)] = 25105, + [SMALL_STATE(872)] = 25129, + [SMALL_STATE(873)] = 25173, + [SMALL_STATE(874)] = 25197, + [SMALL_STATE(875)] = 25237, + [SMALL_STATE(876)] = 25281, + [SMALL_STATE(877)] = 25325, + [SMALL_STATE(878)] = 25349, + [SMALL_STATE(879)] = 25389, + [SMALL_STATE(880)] = 25413, + [SMALL_STATE(881)] = 25437, + [SMALL_STATE(882)] = 25461, + [SMALL_STATE(883)] = 25485, + [SMALL_STATE(884)] = 25509, + [SMALL_STATE(885)] = 25553, + [SMALL_STATE(886)] = 25593, + [SMALL_STATE(887)] = 25633, + [SMALL_STATE(888)] = 25657, + [SMALL_STATE(889)] = 25681, + [SMALL_STATE(890)] = 25717, + [SMALL_STATE(891)] = 25753, + [SMALL_STATE(892)] = 25793, + [SMALL_STATE(893)] = 25817, + [SMALL_STATE(894)] = 25857, + [SMALL_STATE(895)] = 25881, + [SMALL_STATE(896)] = 25905, + [SMALL_STATE(897)] = 25949, + [SMALL_STATE(898)] = 25973, + [SMALL_STATE(899)] = 26013, + [SMALL_STATE(900)] = 26053, + [SMALL_STATE(901)] = 26077, + [SMALL_STATE(902)] = 26101, + [SMALL_STATE(903)] = 26125, + [SMALL_STATE(904)] = 26165, [SMALL_STATE(905)] = 26189, - [SMALL_STATE(906)] = 26218, - [SMALL_STATE(907)] = 26251, - [SMALL_STATE(908)] = 26274, - [SMALL_STATE(909)] = 26307, - [SMALL_STATE(910)] = 26340, + [SMALL_STATE(906)] = 26212, + [SMALL_STATE(907)] = 26241, + [SMALL_STATE(908)] = 26260, + [SMALL_STATE(909)] = 26281, + [SMALL_STATE(910)] = 26324, [SMALL_STATE(911)] = 26363, - [SMALL_STATE(912)] = 26392, - [SMALL_STATE(913)] = 26415, - [SMALL_STATE(914)] = 26444, - [SMALL_STATE(915)] = 26467, - [SMALL_STATE(916)] = 26500, - [SMALL_STATE(917)] = 26521, - [SMALL_STATE(918)] = 26554, - [SMALL_STATE(919)] = 26573, - [SMALL_STATE(920)] = 26606, - [SMALL_STATE(921)] = 26635, - [SMALL_STATE(922)] = 26658, - [SMALL_STATE(923)] = 26687, - [SMALL_STATE(924)] = 26710, - [SMALL_STATE(925)] = 26739, - [SMALL_STATE(926)] = 26768, - [SMALL_STATE(927)] = 26801, - [SMALL_STATE(928)] = 26840, - [SMALL_STATE(929)] = 26873, - [SMALL_STATE(930)] = 26910, - [SMALL_STATE(931)] = 26929, - [SMALL_STATE(932)] = 26958, - [SMALL_STATE(933)] = 26997, - [SMALL_STATE(934)] = 27030, - [SMALL_STATE(935)] = 27053, - [SMALL_STATE(936)] = 27076, - [SMALL_STATE(937)] = 27097, - [SMALL_STATE(938)] = 27120, - [SMALL_STATE(939)] = 27149, - [SMALL_STATE(940)] = 27168, - [SMALL_STATE(941)] = 27187, - [SMALL_STATE(942)] = 27210, - [SMALL_STATE(943)] = 27247, - [SMALL_STATE(944)] = 27280, - [SMALL_STATE(945)] = 27303, - [SMALL_STATE(946)] = 27332, - [SMALL_STATE(947)] = 27351, - [SMALL_STATE(948)] = 27374, - [SMALL_STATE(949)] = 27408, - [SMALL_STATE(950)] = 27442, - [SMALL_STATE(951)] = 27464, - [SMALL_STATE(952)] = 27486, - [SMALL_STATE(953)] = 27520, - [SMALL_STATE(954)] = 27554, - [SMALL_STATE(955)] = 27572, - [SMALL_STATE(956)] = 27590, - [SMALL_STATE(957)] = 27612, - [SMALL_STATE(958)] = 27646, - [SMALL_STATE(959)] = 27666, - [SMALL_STATE(960)] = 27694, - [SMALL_STATE(961)] = 27734, - [SMALL_STATE(962)] = 27756, - [SMALL_STATE(963)] = 27794, - [SMALL_STATE(964)] = 27812, - [SMALL_STATE(965)] = 27834, - [SMALL_STATE(966)] = 27868, - [SMALL_STATE(967)] = 27890, - [SMALL_STATE(968)] = 27908, - [SMALL_STATE(969)] = 27940, - [SMALL_STATE(970)] = 27958, - [SMALL_STATE(971)] = 27976, - [SMALL_STATE(972)] = 27994, - [SMALL_STATE(973)] = 28030, - [SMALL_STATE(974)] = 28070, - [SMALL_STATE(975)] = 28088, - [SMALL_STATE(976)] = 28106, - [SMALL_STATE(977)] = 28124, - [SMALL_STATE(978)] = 28146, - [SMALL_STATE(979)] = 28164, - [SMALL_STATE(980)] = 28186, - [SMALL_STATE(981)] = 28208, - [SMALL_STATE(982)] = 28242, - [SMALL_STATE(983)] = 28278, - [SMALL_STATE(984)] = 28296, - [SMALL_STATE(985)] = 28328, - [SMALL_STATE(986)] = 28362, - [SMALL_STATE(987)] = 28400, - [SMALL_STATE(988)] = 28429, - [SMALL_STATE(989)] = 28462, - [SMALL_STATE(990)] = 28495, - [SMALL_STATE(991)] = 28512, - [SMALL_STATE(992)] = 28533, - [SMALL_STATE(993)] = 28566, - [SMALL_STATE(994)] = 28595, - [SMALL_STATE(995)] = 28615, - [SMALL_STATE(996)] = 28631, - [SMALL_STATE(997)] = 28647, - [SMALL_STATE(998)] = 28679, - [SMALL_STATE(999)] = 28711, - [SMALL_STATE(1000)] = 28739, - [SMALL_STATE(1001)] = 28755, - [SMALL_STATE(1002)] = 28787, - [SMALL_STATE(1003)] = 28815, - [SMALL_STATE(1004)] = 28835, - [SMALL_STATE(1005)] = 28855, - [SMALL_STATE(1006)] = 28883, - [SMALL_STATE(1007)] = 28903, - [SMALL_STATE(1008)] = 28931, - [SMALL_STATE(1009)] = 28959, - [SMALL_STATE(1010)] = 28987, - [SMALL_STATE(1011)] = 29007, - [SMALL_STATE(1012)] = 29035, - [SMALL_STATE(1013)] = 29055, - [SMALL_STATE(1014)] = 29075, - [SMALL_STATE(1015)] = 29095, - [SMALL_STATE(1016)] = 29115, - [SMALL_STATE(1017)] = 29131, - [SMALL_STATE(1018)] = 29159, - [SMALL_STATE(1019)] = 29175, - [SMALL_STATE(1020)] = 29203, - [SMALL_STATE(1021)] = 29223, - [SMALL_STATE(1022)] = 29243, - [SMALL_STATE(1023)] = 29264, - [SMALL_STATE(1024)] = 29283, - [SMALL_STATE(1025)] = 29310, - [SMALL_STATE(1026)] = 29337, - [SMALL_STATE(1027)] = 29364, - [SMALL_STATE(1028)] = 29391, - [SMALL_STATE(1029)] = 29418, - [SMALL_STATE(1030)] = 29445, - [SMALL_STATE(1031)] = 29472, - [SMALL_STATE(1032)] = 29499, - [SMALL_STATE(1033)] = 29526, - [SMALL_STATE(1034)] = 29541, - [SMALL_STATE(1035)] = 29568, - [SMALL_STATE(1036)] = 29595, - [SMALL_STATE(1037)] = 29622, - [SMALL_STATE(1038)] = 29649, - [SMALL_STATE(1039)] = 29676, - [SMALL_STATE(1040)] = 29703, - [SMALL_STATE(1041)] = 29730, - [SMALL_STATE(1042)] = 29757, - [SMALL_STATE(1043)] = 29784, - [SMALL_STATE(1044)] = 29811, - [SMALL_STATE(1045)] = 29838, - [SMALL_STATE(1046)] = 29865, - [SMALL_STATE(1047)] = 29892, - [SMALL_STATE(1048)] = 29919, - [SMALL_STATE(1049)] = 29946, - [SMALL_STATE(1050)] = 29973, - [SMALL_STATE(1051)] = 30000, - [SMALL_STATE(1052)] = 30027, - [SMALL_STATE(1053)] = 30054, - [SMALL_STATE(1054)] = 30081, - [SMALL_STATE(1055)] = 30108, - [SMALL_STATE(1056)] = 30135, - [SMALL_STATE(1057)] = 30150, - [SMALL_STATE(1058)] = 30177, - [SMALL_STATE(1059)] = 30204, - [SMALL_STATE(1060)] = 30231, - [SMALL_STATE(1061)] = 30258, - [SMALL_STATE(1062)] = 30285, - [SMALL_STATE(1063)] = 30312, - [SMALL_STATE(1064)] = 30339, - [SMALL_STATE(1065)] = 30360, - [SMALL_STATE(1066)] = 30379, - [SMALL_STATE(1067)] = 30406, - [SMALL_STATE(1068)] = 30433, - [SMALL_STATE(1069)] = 30460, - [SMALL_STATE(1070)] = 30487, - [SMALL_STATE(1071)] = 30514, - [SMALL_STATE(1072)] = 30541, - [SMALL_STATE(1073)] = 30560, - [SMALL_STATE(1074)] = 30579, - [SMALL_STATE(1075)] = 30606, - [SMALL_STATE(1076)] = 30621, - [SMALL_STATE(1077)] = 30648, - [SMALL_STATE(1078)] = 30667, - [SMALL_STATE(1079)] = 30686, - [SMALL_STATE(1080)] = 30713, - [SMALL_STATE(1081)] = 30734, - [SMALL_STATE(1082)] = 30761, - [SMALL_STATE(1083)] = 30776, - [SMALL_STATE(1084)] = 30803, - [SMALL_STATE(1085)] = 30824, - [SMALL_STATE(1086)] = 30851, - [SMALL_STATE(1087)] = 30870, - [SMALL_STATE(1088)] = 30889, - [SMALL_STATE(1089)] = 30916, - [SMALL_STATE(1090)] = 30935, - [SMALL_STATE(1091)] = 30954, - [SMALL_STATE(1092)] = 30973, - [SMALL_STATE(1093)] = 30992, - [SMALL_STATE(1094)] = 31011, - [SMALL_STATE(1095)] = 31038, - [SMALL_STATE(1096)] = 31065, - [SMALL_STATE(1097)] = 31092, - [SMALL_STATE(1098)] = 31107, - [SMALL_STATE(1099)] = 31134, - [SMALL_STATE(1100)] = 31151, - [SMALL_STATE(1101)] = 31166, - [SMALL_STATE(1102)] = 31187, - [SMALL_STATE(1103)] = 31202, - [SMALL_STATE(1104)] = 31216, - [SMALL_STATE(1105)] = 31234, - [SMALL_STATE(1106)] = 31256, - [SMALL_STATE(1107)] = 31274, - [SMALL_STATE(1108)] = 31288, - [SMALL_STATE(1109)] = 31306, - [SMALL_STATE(1110)] = 31320, - [SMALL_STATE(1111)] = 31334, - [SMALL_STATE(1112)] = 31356, - [SMALL_STATE(1113)] = 31378, - [SMALL_STATE(1114)] = 31392, - [SMALL_STATE(1115)] = 31414, - [SMALL_STATE(1116)] = 31434, - [SMALL_STATE(1117)] = 31456, - [SMALL_STATE(1118)] = 31482, - [SMALL_STATE(1119)] = 31500, - [SMALL_STATE(1120)] = 31520, - [SMALL_STATE(1121)] = 31540, - [SMALL_STATE(1122)] = 31558, - [SMALL_STATE(1123)] = 31580, - [SMALL_STATE(1124)] = 31606, - [SMALL_STATE(1125)] = 31624, - [SMALL_STATE(1126)] = 31642, - [SMALL_STATE(1127)] = 31668, - [SMALL_STATE(1128)] = 31690, - [SMALL_STATE(1129)] = 31710, - [SMALL_STATE(1130)] = 31736, - [SMALL_STATE(1131)] = 31758, - [SMALL_STATE(1132)] = 31780, - [SMALL_STATE(1133)] = 31802, - [SMALL_STATE(1134)] = 31816, - [SMALL_STATE(1135)] = 31838, - [SMALL_STATE(1136)] = 31860, - [SMALL_STATE(1137)] = 31882, - [SMALL_STATE(1138)] = 31908, - [SMALL_STATE(1139)] = 31934, - [SMALL_STATE(1140)] = 31956, - [SMALL_STATE(1141)] = 31982, - [SMALL_STATE(1142)] = 32004, - [SMALL_STATE(1143)] = 32030, - [SMALL_STATE(1144)] = 32050, - [SMALL_STATE(1145)] = 32064, - [SMALL_STATE(1146)] = 32086, - [SMALL_STATE(1147)] = 32100, - [SMALL_STATE(1148)] = 32122, - [SMALL_STATE(1149)] = 32136, - [SMALL_STATE(1150)] = 32158, - [SMALL_STATE(1151)] = 32176, - [SMALL_STATE(1152)] = 32198, - [SMALL_STATE(1153)] = 32216, - [SMALL_STATE(1154)] = 32234, - [SMALL_STATE(1155)] = 32256, - [SMALL_STATE(1156)] = 32274, - [SMALL_STATE(1157)] = 32296, - [SMALL_STATE(1158)] = 32314, - [SMALL_STATE(1159)] = 32336, - [SMALL_STATE(1160)] = 32362, - [SMALL_STATE(1161)] = 32384, - [SMALL_STATE(1162)] = 32406, - [SMALL_STATE(1163)] = 32432, - [SMALL_STATE(1164)] = 32450, - [SMALL_STATE(1165)] = 32476, - [SMALL_STATE(1166)] = 32498, - [SMALL_STATE(1167)] = 32515, - [SMALL_STATE(1168)] = 32532, - [SMALL_STATE(1169)] = 32549, - [SMALL_STATE(1170)] = 32566, - [SMALL_STATE(1171)] = 32583, - [SMALL_STATE(1172)] = 32600, - [SMALL_STATE(1173)] = 32619, - [SMALL_STATE(1174)] = 32636, - [SMALL_STATE(1175)] = 32653, - [SMALL_STATE(1176)] = 32672, - [SMALL_STATE(1177)] = 32689, - [SMALL_STATE(1178)] = 32710, - [SMALL_STATE(1179)] = 32729, - [SMALL_STATE(1180)] = 32752, - [SMALL_STATE(1181)] = 32769, - [SMALL_STATE(1182)] = 32788, - [SMALL_STATE(1183)] = 32807, - [SMALL_STATE(1184)] = 32824, - [SMALL_STATE(1185)] = 32841, - [SMALL_STATE(1186)] = 32862, - [SMALL_STATE(1187)] = 32881, - [SMALL_STATE(1188)] = 32900, - [SMALL_STATE(1189)] = 32919, - [SMALL_STATE(1190)] = 32938, - [SMALL_STATE(1191)] = 32957, - [SMALL_STATE(1192)] = 32976, - [SMALL_STATE(1193)] = 32993, - [SMALL_STATE(1194)] = 33010, - [SMALL_STATE(1195)] = 33027, - [SMALL_STATE(1196)] = 33044, - [SMALL_STATE(1197)] = 33065, - [SMALL_STATE(1198)] = 33084, - [SMALL_STATE(1199)] = 33100, - [SMALL_STATE(1200)] = 33120, - [SMALL_STATE(1201)] = 33136, - [SMALL_STATE(1202)] = 33152, - [SMALL_STATE(1203)] = 33168, - [SMALL_STATE(1204)] = 33180, - [SMALL_STATE(1205)] = 33196, - [SMALL_STATE(1206)] = 33212, - [SMALL_STATE(1207)] = 33224, - [SMALL_STATE(1208)] = 33236, - [SMALL_STATE(1209)] = 33252, - [SMALL_STATE(1210)] = 33268, - [SMALL_STATE(1211)] = 33284, - [SMALL_STATE(1212)] = 33300, - [SMALL_STATE(1213)] = 33320, - [SMALL_STATE(1214)] = 33332, - [SMALL_STATE(1215)] = 33354, - [SMALL_STATE(1216)] = 33374, - [SMALL_STATE(1217)] = 33390, - [SMALL_STATE(1218)] = 33410, - [SMALL_STATE(1219)] = 33430, - [SMALL_STATE(1220)] = 33446, - [SMALL_STATE(1221)] = 33468, - [SMALL_STATE(1222)] = 33484, - [SMALL_STATE(1223)] = 33504, - [SMALL_STATE(1224)] = 33520, - [SMALL_STATE(1225)] = 33536, - [SMALL_STATE(1226)] = 33552, - [SMALL_STATE(1227)] = 33568, - [SMALL_STATE(1228)] = 33584, - [SMALL_STATE(1229)] = 33606, - [SMALL_STATE(1230)] = 33622, - [SMALL_STATE(1231)] = 33638, - [SMALL_STATE(1232)] = 33654, - [SMALL_STATE(1233)] = 33670, + [SMALL_STATE(912)] = 26386, + [SMALL_STATE(913)] = 26409, + [SMALL_STATE(914)] = 26432, + [SMALL_STATE(915)] = 26455, + [SMALL_STATE(916)] = 26488, + [SMALL_STATE(917)] = 26507, + [SMALL_STATE(918)] = 26540, + [SMALL_STATE(919)] = 26569, + [SMALL_STATE(920)] = 26590, + [SMALL_STATE(921)] = 26623, + [SMALL_STATE(922)] = 26662, + [SMALL_STATE(923)] = 26685, + [SMALL_STATE(924)] = 26714, + [SMALL_STATE(925)] = 26743, + [SMALL_STATE(926)] = 26762, + [SMALL_STATE(927)] = 26795, + [SMALL_STATE(928)] = 26828, + [SMALL_STATE(929)] = 26851, + [SMALL_STATE(930)] = 26884, + [SMALL_STATE(931)] = 26907, + [SMALL_STATE(932)] = 26930, + [SMALL_STATE(933)] = 26959, + [SMALL_STATE(934)] = 26988, + [SMALL_STATE(935)] = 27007, + [SMALL_STATE(936)] = 27036, + [SMALL_STATE(937)] = 27065, + [SMALL_STATE(938)] = 27088, + [SMALL_STATE(939)] = 27117, + [SMALL_STATE(940)] = 27150, + [SMALL_STATE(941)] = 27183, + [SMALL_STATE(942)] = 27212, + [SMALL_STATE(943)] = 27235, + [SMALL_STATE(944)] = 27272, + [SMALL_STATE(945)] = 27305, + [SMALL_STATE(946)] = 27328, + [SMALL_STATE(947)] = 27371, + [SMALL_STATE(948)] = 27390, + [SMALL_STATE(949)] = 27423, + [SMALL_STATE(950)] = 27460, + [SMALL_STATE(951)] = 27494, + [SMALL_STATE(952)] = 27516, + [SMALL_STATE(953)] = 27534, + [SMALL_STATE(954)] = 27572, + [SMALL_STATE(955)] = 27590, + [SMALL_STATE(956)] = 27624, + [SMALL_STATE(957)] = 27658, + [SMALL_STATE(958)] = 27676, + [SMALL_STATE(959)] = 27710, + [SMALL_STATE(960)] = 27732, + [SMALL_STATE(961)] = 27754, + [SMALL_STATE(962)] = 27782, + [SMALL_STATE(963)] = 27814, + [SMALL_STATE(964)] = 27836, + [SMALL_STATE(965)] = 27858, + [SMALL_STATE(966)] = 27890, + [SMALL_STATE(967)] = 27912, + [SMALL_STATE(968)] = 27930, + [SMALL_STATE(969)] = 27950, + [SMALL_STATE(970)] = 27972, + [SMALL_STATE(971)] = 27990, + [SMALL_STATE(972)] = 28024, + [SMALL_STATE(973)] = 28042, + [SMALL_STATE(974)] = 28060, + [SMALL_STATE(975)] = 28094, + [SMALL_STATE(976)] = 28128, + [SMALL_STATE(977)] = 28146, + [SMALL_STATE(978)] = 28164, + [SMALL_STATE(979)] = 28186, + [SMALL_STATE(980)] = 28222, + [SMALL_STATE(981)] = 28258, + [SMALL_STATE(982)] = 28292, + [SMALL_STATE(983)] = 28314, + [SMALL_STATE(984)] = 28332, + [SMALL_STATE(985)] = 28370, + [SMALL_STATE(986)] = 28388, + [SMALL_STATE(987)] = 28406, + [SMALL_STATE(988)] = 28435, + [SMALL_STATE(989)] = 28456, + [SMALL_STATE(990)] = 28489, + [SMALL_STATE(991)] = 28518, + [SMALL_STATE(992)] = 28551, + [SMALL_STATE(993)] = 28568, + [SMALL_STATE(994)] = 28601, + [SMALL_STATE(995)] = 28617, + [SMALL_STATE(996)] = 28637, + [SMALL_STATE(997)] = 28665, + [SMALL_STATE(998)] = 28693, + [SMALL_STATE(999)] = 28709, + [SMALL_STATE(1000)] = 28741, + [SMALL_STATE(1001)] = 28769, + [SMALL_STATE(1002)] = 28797, + [SMALL_STATE(1003)] = 28817, + [SMALL_STATE(1004)] = 28845, + [SMALL_STATE(1005)] = 28865, + [SMALL_STATE(1006)] = 28885, + [SMALL_STATE(1007)] = 28905, + [SMALL_STATE(1008)] = 28933, + [SMALL_STATE(1009)] = 28953, + [SMALL_STATE(1010)] = 28973, + [SMALL_STATE(1011)] = 28993, + [SMALL_STATE(1012)] = 29009, + [SMALL_STATE(1013)] = 29025, + [SMALL_STATE(1014)] = 29053, + [SMALL_STATE(1015)] = 29069, + [SMALL_STATE(1016)] = 29089, + [SMALL_STATE(1017)] = 29109, + [SMALL_STATE(1018)] = 29137, + [SMALL_STATE(1019)] = 29165, + [SMALL_STATE(1020)] = 29197, + [SMALL_STATE(1021)] = 29217, + [SMALL_STATE(1022)] = 29249, + [SMALL_STATE(1023)] = 29276, + [SMALL_STATE(1024)] = 29303, + [SMALL_STATE(1025)] = 29330, + [SMALL_STATE(1026)] = 29357, + [SMALL_STATE(1027)] = 29384, + [SMALL_STATE(1028)] = 29399, + [SMALL_STATE(1029)] = 29426, + [SMALL_STATE(1030)] = 29453, + [SMALL_STATE(1031)] = 29480, + [SMALL_STATE(1032)] = 29507, + [SMALL_STATE(1033)] = 29522, + [SMALL_STATE(1034)] = 29549, + [SMALL_STATE(1035)] = 29576, + [SMALL_STATE(1036)] = 29603, + [SMALL_STATE(1037)] = 29630, + [SMALL_STATE(1038)] = 29657, + [SMALL_STATE(1039)] = 29684, + [SMALL_STATE(1040)] = 29711, + [SMALL_STATE(1041)] = 29738, + [SMALL_STATE(1042)] = 29765, + [SMALL_STATE(1043)] = 29792, + [SMALL_STATE(1044)] = 29819, + [SMALL_STATE(1045)] = 29834, + [SMALL_STATE(1046)] = 29861, + [SMALL_STATE(1047)] = 29876, + [SMALL_STATE(1048)] = 29903, + [SMALL_STATE(1049)] = 29930, + [SMALL_STATE(1050)] = 29951, + [SMALL_STATE(1051)] = 29966, + [SMALL_STATE(1052)] = 29987, + [SMALL_STATE(1053)] = 30014, + [SMALL_STATE(1054)] = 30033, + [SMALL_STATE(1055)] = 30060, + [SMALL_STATE(1056)] = 30087, + [SMALL_STATE(1057)] = 30102, + [SMALL_STATE(1058)] = 30129, + [SMALL_STATE(1059)] = 30156, + [SMALL_STATE(1060)] = 30175, + [SMALL_STATE(1061)] = 30194, + [SMALL_STATE(1062)] = 30213, + [SMALL_STATE(1063)] = 30232, + [SMALL_STATE(1064)] = 30259, + [SMALL_STATE(1065)] = 30278, + [SMALL_STATE(1066)] = 30305, + [SMALL_STATE(1067)] = 30332, + [SMALL_STATE(1068)] = 30351, + [SMALL_STATE(1069)] = 30370, + [SMALL_STATE(1070)] = 30397, + [SMALL_STATE(1071)] = 30424, + [SMALL_STATE(1072)] = 30451, + [SMALL_STATE(1073)] = 30470, + [SMALL_STATE(1074)] = 30497, + [SMALL_STATE(1075)] = 30524, + [SMALL_STATE(1076)] = 30551, + [SMALL_STATE(1077)] = 30566, + [SMALL_STATE(1078)] = 30585, + [SMALL_STATE(1079)] = 30612, + [SMALL_STATE(1080)] = 30639, + [SMALL_STATE(1081)] = 30666, + [SMALL_STATE(1082)] = 30693, + [SMALL_STATE(1083)] = 30720, + [SMALL_STATE(1084)] = 30747, + [SMALL_STATE(1085)] = 30766, + [SMALL_STATE(1086)] = 30793, + [SMALL_STATE(1087)] = 30820, + [SMALL_STATE(1088)] = 30847, + [SMALL_STATE(1089)] = 30874, + [SMALL_STATE(1090)] = 30895, + [SMALL_STATE(1091)] = 30922, + [SMALL_STATE(1092)] = 30939, + [SMALL_STATE(1093)] = 30966, + [SMALL_STATE(1094)] = 30993, + [SMALL_STATE(1095)] = 31020, + [SMALL_STATE(1096)] = 31047, + [SMALL_STATE(1097)] = 31068, + [SMALL_STATE(1098)] = 31089, + [SMALL_STATE(1099)] = 31116, + [SMALL_STATE(1100)] = 31135, + [SMALL_STATE(1101)] = 31154, + [SMALL_STATE(1102)] = 31181, + [SMALL_STATE(1103)] = 31208, + [SMALL_STATE(1104)] = 31234, + [SMALL_STATE(1105)] = 31248, + [SMALL_STATE(1106)] = 31266, + [SMALL_STATE(1107)] = 31280, + [SMALL_STATE(1108)] = 31306, + [SMALL_STATE(1109)] = 31328, + [SMALL_STATE(1110)] = 31350, + [SMALL_STATE(1111)] = 31370, + [SMALL_STATE(1112)] = 31388, + [SMALL_STATE(1113)] = 31410, + [SMALL_STATE(1114)] = 31428, + [SMALL_STATE(1115)] = 31446, + [SMALL_STATE(1116)] = 31460, + [SMALL_STATE(1117)] = 31482, + [SMALL_STATE(1118)] = 31500, + [SMALL_STATE(1119)] = 31522, + [SMALL_STATE(1120)] = 31548, + [SMALL_STATE(1121)] = 31570, + [SMALL_STATE(1122)] = 31592, + [SMALL_STATE(1123)] = 31618, + [SMALL_STATE(1124)] = 31640, + [SMALL_STATE(1125)] = 31666, + [SMALL_STATE(1126)] = 31680, + [SMALL_STATE(1127)] = 31702, + [SMALL_STATE(1128)] = 31728, + [SMALL_STATE(1129)] = 31748, + [SMALL_STATE(1130)] = 31770, + [SMALL_STATE(1131)] = 31790, + [SMALL_STATE(1132)] = 31816, + [SMALL_STATE(1133)] = 31838, + [SMALL_STATE(1134)] = 31860, + [SMALL_STATE(1135)] = 31886, + [SMALL_STATE(1136)] = 31908, + [SMALL_STATE(1137)] = 31926, + [SMALL_STATE(1138)] = 31944, + [SMALL_STATE(1139)] = 31966, + [SMALL_STATE(1140)] = 31988, + [SMALL_STATE(1141)] = 32010, + [SMALL_STATE(1142)] = 32036, + [SMALL_STATE(1143)] = 32058, + [SMALL_STATE(1144)] = 32080, + [SMALL_STATE(1145)] = 32102, + [SMALL_STATE(1146)] = 32124, + [SMALL_STATE(1147)] = 32150, + [SMALL_STATE(1148)] = 32168, + [SMALL_STATE(1149)] = 32190, + [SMALL_STATE(1150)] = 32204, + [SMALL_STATE(1151)] = 32226, + [SMALL_STATE(1152)] = 32240, + [SMALL_STATE(1153)] = 32254, + [SMALL_STATE(1154)] = 32280, + [SMALL_STATE(1155)] = 32302, + [SMALL_STATE(1156)] = 32316, + [SMALL_STATE(1157)] = 32334, + [SMALL_STATE(1158)] = 32354, + [SMALL_STATE(1159)] = 32376, + [SMALL_STATE(1160)] = 32398, + [SMALL_STATE(1161)] = 32416, + [SMALL_STATE(1162)] = 32434, + [SMALL_STATE(1163)] = 32452, + [SMALL_STATE(1164)] = 32466, + [SMALL_STATE(1165)] = 32486, + [SMALL_STATE(1166)] = 32504, + [SMALL_STATE(1167)] = 32521, + [SMALL_STATE(1168)] = 32540, + [SMALL_STATE(1169)] = 32559, + [SMALL_STATE(1170)] = 32576, + [SMALL_STATE(1171)] = 32593, + [SMALL_STATE(1172)] = 32612, + [SMALL_STATE(1173)] = 32629, + [SMALL_STATE(1174)] = 32646, + [SMALL_STATE(1175)] = 32663, + [SMALL_STATE(1176)] = 32682, + [SMALL_STATE(1177)] = 32701, + [SMALL_STATE(1178)] = 32718, + [SMALL_STATE(1179)] = 32735, + [SMALL_STATE(1180)] = 32754, + [SMALL_STATE(1181)] = 32773, + [SMALL_STATE(1182)] = 32794, + [SMALL_STATE(1183)] = 32811, + [SMALL_STATE(1184)] = 32832, + [SMALL_STATE(1185)] = 32851, + [SMALL_STATE(1186)] = 32868, + [SMALL_STATE(1187)] = 32885, + [SMALL_STATE(1188)] = 32902, + [SMALL_STATE(1189)] = 32921, + [SMALL_STATE(1190)] = 32940, + [SMALL_STATE(1191)] = 32959, + [SMALL_STATE(1192)] = 32982, + [SMALL_STATE(1193)] = 32999, + [SMALL_STATE(1194)] = 33016, + [SMALL_STATE(1195)] = 33033, + [SMALL_STATE(1196)] = 33054, + [SMALL_STATE(1197)] = 33071, + [SMALL_STATE(1198)] = 33090, + [SMALL_STATE(1199)] = 33110, + [SMALL_STATE(1200)] = 33126, + [SMALL_STATE(1201)] = 33146, + [SMALL_STATE(1202)] = 33162, + [SMALL_STATE(1203)] = 33182, + [SMALL_STATE(1204)] = 33198, + [SMALL_STATE(1205)] = 33214, + [SMALL_STATE(1206)] = 33236, + [SMALL_STATE(1207)] = 33252, + [SMALL_STATE(1208)] = 33268, + [SMALL_STATE(1209)] = 33280, + [SMALL_STATE(1210)] = 33296, + [SMALL_STATE(1211)] = 33312, + [SMALL_STATE(1212)] = 33328, + [SMALL_STATE(1213)] = 33340, + [SMALL_STATE(1214)] = 33352, + [SMALL_STATE(1215)] = 33374, + [SMALL_STATE(1216)] = 33390, + [SMALL_STATE(1217)] = 33412, + [SMALL_STATE(1218)] = 33428, + [SMALL_STATE(1219)] = 33444, + [SMALL_STATE(1220)] = 33460, + [SMALL_STATE(1221)] = 33480, + [SMALL_STATE(1222)] = 33496, + [SMALL_STATE(1223)] = 33512, + [SMALL_STATE(1224)] = 33528, + [SMALL_STATE(1225)] = 33544, + [SMALL_STATE(1226)] = 33560, + [SMALL_STATE(1227)] = 33580, + [SMALL_STATE(1228)] = 33600, + [SMALL_STATE(1229)] = 33616, + [SMALL_STATE(1230)] = 33632, + [SMALL_STATE(1231)] = 33648, + [SMALL_STATE(1232)] = 33660, + [SMALL_STATE(1233)] = 33676, [SMALL_STATE(1234)] = 33692, [SMALL_STATE(1235)] = 33708, - [SMALL_STATE(1236)] = 33724, - [SMALL_STATE(1237)] = 33740, - [SMALL_STATE(1238)] = 33756, - [SMALL_STATE(1239)] = 33772, - [SMALL_STATE(1240)] = 33788, - [SMALL_STATE(1241)] = 33804, - [SMALL_STATE(1242)] = 33820, - [SMALL_STATE(1243)] = 33836, - [SMALL_STATE(1244)] = 33852, - [SMALL_STATE(1245)] = 33868, - [SMALL_STATE(1246)] = 33884, - [SMALL_STATE(1247)] = 33900, - [SMALL_STATE(1248)] = 33922, - [SMALL_STATE(1249)] = 33944, + [SMALL_STATE(1236)] = 33730, + [SMALL_STATE(1237)] = 33746, + [SMALL_STATE(1238)] = 33762, + [SMALL_STATE(1239)] = 33784, + [SMALL_STATE(1240)] = 33800, + [SMALL_STATE(1241)] = 33820, + [SMALL_STATE(1242)] = 33836, + [SMALL_STATE(1243)] = 33852, + [SMALL_STATE(1244)] = 33868, + [SMALL_STATE(1245)] = 33884, + [SMALL_STATE(1246)] = 33900, + [SMALL_STATE(1247)] = 33916, + [SMALL_STATE(1248)] = 33932, + [SMALL_STATE(1249)] = 33948, [SMALL_STATE(1250)] = 33964, [SMALL_STATE(1251)] = 33980, [SMALL_STATE(1252)] = 33996, [SMALL_STATE(1253)] = 34012, - [SMALL_STATE(1254)] = 34032, - [SMALL_STATE(1255)] = 34045, - [SMALL_STATE(1256)] = 34060, - [SMALL_STATE(1257)] = 34075, - [SMALL_STATE(1258)] = 34090, - [SMALL_STATE(1259)] = 34105, - [SMALL_STATE(1260)] = 34120, - [SMALL_STATE(1261)] = 34135, - [SMALL_STATE(1262)] = 34150, - [SMALL_STATE(1263)] = 34165, - [SMALL_STATE(1264)] = 34180, - [SMALL_STATE(1265)] = 34195, - [SMALL_STATE(1266)] = 34214, - [SMALL_STATE(1267)] = 34229, - [SMALL_STATE(1268)] = 34242, - [SMALL_STATE(1269)] = 34255, - [SMALL_STATE(1270)] = 34266, - [SMALL_STATE(1271)] = 34283, - [SMALL_STATE(1272)] = 34296, - [SMALL_STATE(1273)] = 34309, - [SMALL_STATE(1274)] = 34324, - [SMALL_STATE(1275)] = 34337, - [SMALL_STATE(1276)] = 34354, - [SMALL_STATE(1277)] = 34364, - [SMALL_STATE(1278)] = 34374, - [SMALL_STATE(1279)] = 34384, - [SMALL_STATE(1280)] = 34400, - [SMALL_STATE(1281)] = 34410, - [SMALL_STATE(1282)] = 34426, - [SMALL_STATE(1283)] = 34442, - [SMALL_STATE(1284)] = 34454, - [SMALL_STATE(1285)] = 34468, - [SMALL_STATE(1286)] = 34480, - [SMALL_STATE(1287)] = 34496, - [SMALL_STATE(1288)] = 34512, - [SMALL_STATE(1289)] = 34522, - [SMALL_STATE(1290)] = 34536, - [SMALL_STATE(1291)] = 34546, - [SMALL_STATE(1292)] = 34556, - [SMALL_STATE(1293)] = 34566, - [SMALL_STATE(1294)] = 34582, - [SMALL_STATE(1295)] = 34592, - [SMALL_STATE(1296)] = 34602, - [SMALL_STATE(1297)] = 34618, - [SMALL_STATE(1298)] = 34632, - [SMALL_STATE(1299)] = 34642, - [SMALL_STATE(1300)] = 34658, - [SMALL_STATE(1301)] = 34672, - [SMALL_STATE(1302)] = 34682, - [SMALL_STATE(1303)] = 34692, - [SMALL_STATE(1304)] = 34708, - [SMALL_STATE(1305)] = 34718, - [SMALL_STATE(1306)] = 34732, - [SMALL_STATE(1307)] = 34748, - [SMALL_STATE(1308)] = 34762, - [SMALL_STATE(1309)] = 34772, - [SMALL_STATE(1310)] = 34788, - [SMALL_STATE(1311)] = 34802, - [SMALL_STATE(1312)] = 34812, - [SMALL_STATE(1313)] = 34822, - [SMALL_STATE(1314)] = 34834, - [SMALL_STATE(1315)] = 34844, - [SMALL_STATE(1316)] = 34854, - [SMALL_STATE(1317)] = 34868, - [SMALL_STATE(1318)] = 34882, - [SMALL_STATE(1319)] = 34898, - [SMALL_STATE(1320)] = 34908, - [SMALL_STATE(1321)] = 34924, - [SMALL_STATE(1322)] = 34934, - [SMALL_STATE(1323)] = 34944, - [SMALL_STATE(1324)] = 34954, - [SMALL_STATE(1325)] = 34968, - [SMALL_STATE(1326)] = 34982, - [SMALL_STATE(1327)] = 34992, - [SMALL_STATE(1328)] = 35002, - [SMALL_STATE(1329)] = 35012, - [SMALL_STATE(1330)] = 35026, - [SMALL_STATE(1331)] = 35040, - [SMALL_STATE(1332)] = 35054, - [SMALL_STATE(1333)] = 35064, - [SMALL_STATE(1334)] = 35078, - [SMALL_STATE(1335)] = 35088, - [SMALL_STATE(1336)] = 35102, - [SMALL_STATE(1337)] = 35112, - [SMALL_STATE(1338)] = 35124, - [SMALL_STATE(1339)] = 35138, - [SMALL_STATE(1340)] = 35148, - [SMALL_STATE(1341)] = 35164, - [SMALL_STATE(1342)] = 35180, - [SMALL_STATE(1343)] = 35192, - [SMALL_STATE(1344)] = 35208, - [SMALL_STATE(1345)] = 35218, - [SMALL_STATE(1346)] = 35228, - [SMALL_STATE(1347)] = 35238, - [SMALL_STATE(1348)] = 35248, - [SMALL_STATE(1349)] = 35262, - [SMALL_STATE(1350)] = 35272, - [SMALL_STATE(1351)] = 35282, - [SMALL_STATE(1352)] = 35296, - [SMALL_STATE(1353)] = 35310, - [SMALL_STATE(1354)] = 35324, - [SMALL_STATE(1355)] = 35334, - [SMALL_STATE(1356)] = 35350, - [SMALL_STATE(1357)] = 35360, - [SMALL_STATE(1358)] = 35370, - [SMALL_STATE(1359)] = 35384, - [SMALL_STATE(1360)] = 35398, - [SMALL_STATE(1361)] = 35414, - [SMALL_STATE(1362)] = 35428, - [SMALL_STATE(1363)] = 35438, - [SMALL_STATE(1364)] = 35448, - [SMALL_STATE(1365)] = 35458, - [SMALL_STATE(1366)] = 35474, - [SMALL_STATE(1367)] = 35484, - [SMALL_STATE(1368)] = 35498, - [SMALL_STATE(1369)] = 35508, - [SMALL_STATE(1370)] = 35522, - [SMALL_STATE(1371)] = 35532, - [SMALL_STATE(1372)] = 35548, - [SMALL_STATE(1373)] = 35558, - [SMALL_STATE(1374)] = 35568, - [SMALL_STATE(1375)] = 35584, - [SMALL_STATE(1376)] = 35594, - [SMALL_STATE(1377)] = 35604, - [SMALL_STATE(1378)] = 35614, - [SMALL_STATE(1379)] = 35630, - [SMALL_STATE(1380)] = 35646, - [SMALL_STATE(1381)] = 35656, - [SMALL_STATE(1382)] = 35666, - [SMALL_STATE(1383)] = 35682, - [SMALL_STATE(1384)] = 35698, - [SMALL_STATE(1385)] = 35714, - [SMALL_STATE(1386)] = 35724, - [SMALL_STATE(1387)] = 35734, - [SMALL_STATE(1388)] = 35744, - [SMALL_STATE(1389)] = 35754, - [SMALL_STATE(1390)] = 35768, - [SMALL_STATE(1391)] = 35784, - [SMALL_STATE(1392)] = 35800, - [SMALL_STATE(1393)] = 35816, - [SMALL_STATE(1394)] = 35832, - [SMALL_STATE(1395)] = 35842, - [SMALL_STATE(1396)] = 35852, - [SMALL_STATE(1397)] = 35868, - [SMALL_STATE(1398)] = 35878, - [SMALL_STATE(1399)] = 35892, - [SMALL_STATE(1400)] = 35908, - [SMALL_STATE(1401)] = 35922, - [SMALL_STATE(1402)] = 35932, - [SMALL_STATE(1403)] = 35948, - [SMALL_STATE(1404)] = 35964, - [SMALL_STATE(1405)] = 35980, - [SMALL_STATE(1406)] = 35994, - [SMALL_STATE(1407)] = 36004, - [SMALL_STATE(1408)] = 36018, - [SMALL_STATE(1409)] = 36032, - [SMALL_STATE(1410)] = 36042, - [SMALL_STATE(1411)] = 36052, - [SMALL_STATE(1412)] = 36066, - [SMALL_STATE(1413)] = 36076, - [SMALL_STATE(1414)] = 36086, - [SMALL_STATE(1415)] = 36102, - [SMALL_STATE(1416)] = 36118, - [SMALL_STATE(1417)] = 36134, - [SMALL_STATE(1418)] = 36144, - [SMALL_STATE(1419)] = 36156, - [SMALL_STATE(1420)] = 36172, - [SMALL_STATE(1421)] = 36188, - [SMALL_STATE(1422)] = 36198, - [SMALL_STATE(1423)] = 36211, - [SMALL_STATE(1424)] = 36220, - [SMALL_STATE(1425)] = 36231, - [SMALL_STATE(1426)] = 36244, - [SMALL_STATE(1427)] = 36253, - [SMALL_STATE(1428)] = 36266, - [SMALL_STATE(1429)] = 36279, - [SMALL_STATE(1430)] = 36292, - [SMALL_STATE(1431)] = 36305, - [SMALL_STATE(1432)] = 36318, - [SMALL_STATE(1433)] = 36327, - [SMALL_STATE(1434)] = 36340, - [SMALL_STATE(1435)] = 36353, - [SMALL_STATE(1436)] = 36362, - [SMALL_STATE(1437)] = 36375, - [SMALL_STATE(1438)] = 36388, - [SMALL_STATE(1439)] = 36401, - [SMALL_STATE(1440)] = 36414, - [SMALL_STATE(1441)] = 36427, - [SMALL_STATE(1442)] = 36440, - [SMALL_STATE(1443)] = 36453, - [SMALL_STATE(1444)] = 36466, - [SMALL_STATE(1445)] = 36477, - [SMALL_STATE(1446)] = 36490, - [SMALL_STATE(1447)] = 36503, - [SMALL_STATE(1448)] = 36516, - [SMALL_STATE(1449)] = 36529, - [SMALL_STATE(1450)] = 36542, - [SMALL_STATE(1451)] = 36555, - [SMALL_STATE(1452)] = 36568, - [SMALL_STATE(1453)] = 36581, - [SMALL_STATE(1454)] = 36594, - [SMALL_STATE(1455)] = 36607, - [SMALL_STATE(1456)] = 36620, - [SMALL_STATE(1457)] = 36633, - [SMALL_STATE(1458)] = 36646, - [SMALL_STATE(1459)] = 36659, - [SMALL_STATE(1460)] = 36672, - [SMALL_STATE(1461)] = 36685, - [SMALL_STATE(1462)] = 36698, - [SMALL_STATE(1463)] = 36711, - [SMALL_STATE(1464)] = 36724, - [SMALL_STATE(1465)] = 36737, - [SMALL_STATE(1466)] = 36750, - [SMALL_STATE(1467)] = 36761, - [SMALL_STATE(1468)] = 36774, - [SMALL_STATE(1469)] = 36787, - [SMALL_STATE(1470)] = 36800, - [SMALL_STATE(1471)] = 36813, - [SMALL_STATE(1472)] = 36826, - [SMALL_STATE(1473)] = 36835, - [SMALL_STATE(1474)] = 36848, - [SMALL_STATE(1475)] = 36861, - [SMALL_STATE(1476)] = 36874, - [SMALL_STATE(1477)] = 36887, - [SMALL_STATE(1478)] = 36900, - [SMALL_STATE(1479)] = 36909, - [SMALL_STATE(1480)] = 36922, - [SMALL_STATE(1481)] = 36935, - [SMALL_STATE(1482)] = 36948, - [SMALL_STATE(1483)] = 36961, - [SMALL_STATE(1484)] = 36972, - [SMALL_STATE(1485)] = 36985, - [SMALL_STATE(1486)] = 36998, - [SMALL_STATE(1487)] = 37011, - [SMALL_STATE(1488)] = 37024, - [SMALL_STATE(1489)] = 37037, - [SMALL_STATE(1490)] = 37050, - [SMALL_STATE(1491)] = 37063, - [SMALL_STATE(1492)] = 37076, - [SMALL_STATE(1493)] = 37089, - [SMALL_STATE(1494)] = 37098, - [SMALL_STATE(1495)] = 37111, - [SMALL_STATE(1496)] = 37124, - [SMALL_STATE(1497)] = 37137, - [SMALL_STATE(1498)] = 37150, - [SMALL_STATE(1499)] = 37163, - [SMALL_STATE(1500)] = 37176, - [SMALL_STATE(1501)] = 37189, - [SMALL_STATE(1502)] = 37202, - [SMALL_STATE(1503)] = 37215, - [SMALL_STATE(1504)] = 37228, - [SMALL_STATE(1505)] = 37241, - [SMALL_STATE(1506)] = 37254, - [SMALL_STATE(1507)] = 37267, - [SMALL_STATE(1508)] = 37280, - [SMALL_STATE(1509)] = 37293, - [SMALL_STATE(1510)] = 37306, - [SMALL_STATE(1511)] = 37319, - [SMALL_STATE(1512)] = 37332, - [SMALL_STATE(1513)] = 37345, - [SMALL_STATE(1514)] = 37358, - [SMALL_STATE(1515)] = 37371, - [SMALL_STATE(1516)] = 37384, - [SMALL_STATE(1517)] = 37397, - [SMALL_STATE(1518)] = 37410, - [SMALL_STATE(1519)] = 37423, - [SMALL_STATE(1520)] = 37436, - [SMALL_STATE(1521)] = 37449, - [SMALL_STATE(1522)] = 37462, - [SMALL_STATE(1523)] = 37475, - [SMALL_STATE(1524)] = 37488, - [SMALL_STATE(1525)] = 37501, - [SMALL_STATE(1526)] = 37510, - [SMALL_STATE(1527)] = 37519, - [SMALL_STATE(1528)] = 37532, - [SMALL_STATE(1529)] = 37545, - [SMALL_STATE(1530)] = 37554, - [SMALL_STATE(1531)] = 37567, - [SMALL_STATE(1532)] = 37580, - [SMALL_STATE(1533)] = 37589, - [SMALL_STATE(1534)] = 37602, - [SMALL_STATE(1535)] = 37613, - [SMALL_STATE(1536)] = 37626, - [SMALL_STATE(1537)] = 37639, - [SMALL_STATE(1538)] = 37652, - [SMALL_STATE(1539)] = 37665, - [SMALL_STATE(1540)] = 37678, - [SMALL_STATE(1541)] = 37691, - [SMALL_STATE(1542)] = 37704, - [SMALL_STATE(1543)] = 37717, - [SMALL_STATE(1544)] = 37730, - [SMALL_STATE(1545)] = 37743, - [SMALL_STATE(1546)] = 37756, - [SMALL_STATE(1547)] = 37769, - [SMALL_STATE(1548)] = 37782, - [SMALL_STATE(1549)] = 37791, - [SMALL_STATE(1550)] = 37804, - [SMALL_STATE(1551)] = 37817, - [SMALL_STATE(1552)] = 37830, - [SMALL_STATE(1553)] = 37843, - [SMALL_STATE(1554)] = 37856, - [SMALL_STATE(1555)] = 37869, - [SMALL_STATE(1556)] = 37882, - [SMALL_STATE(1557)] = 37895, - [SMALL_STATE(1558)] = 37908, - [SMALL_STATE(1559)] = 37921, - [SMALL_STATE(1560)] = 37934, - [SMALL_STATE(1561)] = 37947, - [SMALL_STATE(1562)] = 37960, - [SMALL_STATE(1563)] = 37973, - [SMALL_STATE(1564)] = 37986, - [SMALL_STATE(1565)] = 37999, - [SMALL_STATE(1566)] = 38012, - [SMALL_STATE(1567)] = 38025, - [SMALL_STATE(1568)] = 38038, - [SMALL_STATE(1569)] = 38051, - [SMALL_STATE(1570)] = 38064, - [SMALL_STATE(1571)] = 38077, - [SMALL_STATE(1572)] = 38090, - [SMALL_STATE(1573)] = 38103, - [SMALL_STATE(1574)] = 38116, - [SMALL_STATE(1575)] = 38126, - [SMALL_STATE(1576)] = 38136, - [SMALL_STATE(1577)] = 38146, - [SMALL_STATE(1578)] = 38156, - [SMALL_STATE(1579)] = 38166, - [SMALL_STATE(1580)] = 38176, - [SMALL_STATE(1581)] = 38184, - [SMALL_STATE(1582)] = 38194, - [SMALL_STATE(1583)] = 38204, - [SMALL_STATE(1584)] = 38214, - [SMALL_STATE(1585)] = 38224, - [SMALL_STATE(1586)] = 38234, - [SMALL_STATE(1587)] = 38244, - [SMALL_STATE(1588)] = 38254, - [SMALL_STATE(1589)] = 38262, - [SMALL_STATE(1590)] = 38270, - [SMALL_STATE(1591)] = 38280, - [SMALL_STATE(1592)] = 38290, - [SMALL_STATE(1593)] = 38300, - [SMALL_STATE(1594)] = 38310, - [SMALL_STATE(1595)] = 38320, - [SMALL_STATE(1596)] = 38330, - [SMALL_STATE(1597)] = 38340, - [SMALL_STATE(1598)] = 38350, - [SMALL_STATE(1599)] = 38360, - [SMALL_STATE(1600)] = 38370, - [SMALL_STATE(1601)] = 38380, - [SMALL_STATE(1602)] = 38390, - [SMALL_STATE(1603)] = 38400, - [SMALL_STATE(1604)] = 38410, - [SMALL_STATE(1605)] = 38420, - [SMALL_STATE(1606)] = 38430, - [SMALL_STATE(1607)] = 38440, - [SMALL_STATE(1608)] = 38450, - [SMALL_STATE(1609)] = 38460, - [SMALL_STATE(1610)] = 38470, - [SMALL_STATE(1611)] = 38480, - [SMALL_STATE(1612)] = 38490, - [SMALL_STATE(1613)] = 38500, - [SMALL_STATE(1614)] = 38510, - [SMALL_STATE(1615)] = 38520, - [SMALL_STATE(1616)] = 38530, - [SMALL_STATE(1617)] = 38540, - [SMALL_STATE(1618)] = 38548, - [SMALL_STATE(1619)] = 38558, - [SMALL_STATE(1620)] = 38568, - [SMALL_STATE(1621)] = 38576, - [SMALL_STATE(1622)] = 38584, - [SMALL_STATE(1623)] = 38594, - [SMALL_STATE(1624)] = 38604, - [SMALL_STATE(1625)] = 38614, - [SMALL_STATE(1626)] = 38624, - [SMALL_STATE(1627)] = 38632, - [SMALL_STATE(1628)] = 38642, - [SMALL_STATE(1629)] = 38652, - [SMALL_STATE(1630)] = 38662, - [SMALL_STATE(1631)] = 38670, - [SMALL_STATE(1632)] = 38678, - [SMALL_STATE(1633)] = 38688, - [SMALL_STATE(1634)] = 38698, - [SMALL_STATE(1635)] = 38708, - [SMALL_STATE(1636)] = 38718, - [SMALL_STATE(1637)] = 38728, - [SMALL_STATE(1638)] = 38738, - [SMALL_STATE(1639)] = 38748, - [SMALL_STATE(1640)] = 38758, - [SMALL_STATE(1641)] = 38768, - [SMALL_STATE(1642)] = 38778, - [SMALL_STATE(1643)] = 38788, - [SMALL_STATE(1644)] = 38798, - [SMALL_STATE(1645)] = 38808, - [SMALL_STATE(1646)] = 38818, - [SMALL_STATE(1647)] = 38828, - [SMALL_STATE(1648)] = 38838, - [SMALL_STATE(1649)] = 38848, - [SMALL_STATE(1650)] = 38858, - [SMALL_STATE(1651)] = 38868, - [SMALL_STATE(1652)] = 38878, - [SMALL_STATE(1653)] = 38888, - [SMALL_STATE(1654)] = 38898, - [SMALL_STATE(1655)] = 38908, - [SMALL_STATE(1656)] = 38918, - [SMALL_STATE(1657)] = 38928, - [SMALL_STATE(1658)] = 38938, - [SMALL_STATE(1659)] = 38948, - [SMALL_STATE(1660)] = 38958, - [SMALL_STATE(1661)] = 38968, - [SMALL_STATE(1662)] = 38976, - [SMALL_STATE(1663)] = 38986, - [SMALL_STATE(1664)] = 38996, - [SMALL_STATE(1665)] = 39006, - [SMALL_STATE(1666)] = 39016, - [SMALL_STATE(1667)] = 39026, - [SMALL_STATE(1668)] = 39036, - [SMALL_STATE(1669)] = 39046, - [SMALL_STATE(1670)] = 39056, - [SMALL_STATE(1671)] = 39066, - [SMALL_STATE(1672)] = 39076, - [SMALL_STATE(1673)] = 39086, - [SMALL_STATE(1674)] = 39094, - [SMALL_STATE(1675)] = 39104, - [SMALL_STATE(1676)] = 39114, - [SMALL_STATE(1677)] = 39124, - [SMALL_STATE(1678)] = 39134, - [SMALL_STATE(1679)] = 39144, - [SMALL_STATE(1680)] = 39154, - [SMALL_STATE(1681)] = 39162, - [SMALL_STATE(1682)] = 39172, - [SMALL_STATE(1683)] = 39182, - [SMALL_STATE(1684)] = 39192, - [SMALL_STATE(1685)] = 39202, - [SMALL_STATE(1686)] = 39212, - [SMALL_STATE(1687)] = 39222, - [SMALL_STATE(1688)] = 39232, - [SMALL_STATE(1689)] = 39242, - [SMALL_STATE(1690)] = 39250, - [SMALL_STATE(1691)] = 39260, - [SMALL_STATE(1692)] = 39270, - [SMALL_STATE(1693)] = 39280, - [SMALL_STATE(1694)] = 39290, - [SMALL_STATE(1695)] = 39297, - [SMALL_STATE(1696)] = 39304, - [SMALL_STATE(1697)] = 39311, - [SMALL_STATE(1698)] = 39318, - [SMALL_STATE(1699)] = 39325, - [SMALL_STATE(1700)] = 39332, - [SMALL_STATE(1701)] = 39339, - [SMALL_STATE(1702)] = 39346, - [SMALL_STATE(1703)] = 39353, - [SMALL_STATE(1704)] = 39360, - [SMALL_STATE(1705)] = 39367, - [SMALL_STATE(1706)] = 39374, - [SMALL_STATE(1707)] = 39381, - [SMALL_STATE(1708)] = 39388, - [SMALL_STATE(1709)] = 39395, - [SMALL_STATE(1710)] = 39402, - [SMALL_STATE(1711)] = 39409, - [SMALL_STATE(1712)] = 39416, - [SMALL_STATE(1713)] = 39423, - [SMALL_STATE(1714)] = 39430, - [SMALL_STATE(1715)] = 39437, - [SMALL_STATE(1716)] = 39444, - [SMALL_STATE(1717)] = 39451, - [SMALL_STATE(1718)] = 39458, - [SMALL_STATE(1719)] = 39465, - [SMALL_STATE(1720)] = 39472, - [SMALL_STATE(1721)] = 39479, - [SMALL_STATE(1722)] = 39486, - [SMALL_STATE(1723)] = 39493, - [SMALL_STATE(1724)] = 39500, - [SMALL_STATE(1725)] = 39507, - [SMALL_STATE(1726)] = 39514, - [SMALL_STATE(1727)] = 39521, - [SMALL_STATE(1728)] = 39528, - [SMALL_STATE(1729)] = 39535, - [SMALL_STATE(1730)] = 39542, - [SMALL_STATE(1731)] = 39549, - [SMALL_STATE(1732)] = 39556, - [SMALL_STATE(1733)] = 39563, - [SMALL_STATE(1734)] = 39570, - [SMALL_STATE(1735)] = 39577, - [SMALL_STATE(1736)] = 39584, - [SMALL_STATE(1737)] = 39591, - [SMALL_STATE(1738)] = 39598, - [SMALL_STATE(1739)] = 39605, - [SMALL_STATE(1740)] = 39612, - [SMALL_STATE(1741)] = 39619, - [SMALL_STATE(1742)] = 39626, - [SMALL_STATE(1743)] = 39633, - [SMALL_STATE(1744)] = 39640, - [SMALL_STATE(1745)] = 39647, - [SMALL_STATE(1746)] = 39654, - [SMALL_STATE(1747)] = 39661, - [SMALL_STATE(1748)] = 39668, - [SMALL_STATE(1749)] = 39675, - [SMALL_STATE(1750)] = 39682, - [SMALL_STATE(1751)] = 39689, - [SMALL_STATE(1752)] = 39696, - [SMALL_STATE(1753)] = 39703, - [SMALL_STATE(1754)] = 39710, - [SMALL_STATE(1755)] = 39717, - [SMALL_STATE(1756)] = 39724, - [SMALL_STATE(1757)] = 39731, - [SMALL_STATE(1758)] = 39738, - [SMALL_STATE(1759)] = 39745, - [SMALL_STATE(1760)] = 39752, - [SMALL_STATE(1761)] = 39759, - [SMALL_STATE(1762)] = 39766, - [SMALL_STATE(1763)] = 39773, - [SMALL_STATE(1764)] = 39780, - [SMALL_STATE(1765)] = 39787, - [SMALL_STATE(1766)] = 39794, - [SMALL_STATE(1767)] = 39801, - [SMALL_STATE(1768)] = 39808, - [SMALL_STATE(1769)] = 39815, - [SMALL_STATE(1770)] = 39822, - [SMALL_STATE(1771)] = 39829, - [SMALL_STATE(1772)] = 39836, - [SMALL_STATE(1773)] = 39843, - [SMALL_STATE(1774)] = 39850, - [SMALL_STATE(1775)] = 39857, - [SMALL_STATE(1776)] = 39864, - [SMALL_STATE(1777)] = 39871, - [SMALL_STATE(1778)] = 39878, - [SMALL_STATE(1779)] = 39885, - [SMALL_STATE(1780)] = 39892, - [SMALL_STATE(1781)] = 39899, - [SMALL_STATE(1782)] = 39906, - [SMALL_STATE(1783)] = 39913, - [SMALL_STATE(1784)] = 39920, - [SMALL_STATE(1785)] = 39927, - [SMALL_STATE(1786)] = 39934, - [SMALL_STATE(1787)] = 39941, - [SMALL_STATE(1788)] = 39948, - [SMALL_STATE(1789)] = 39955, - [SMALL_STATE(1790)] = 39962, - [SMALL_STATE(1791)] = 39969, - [SMALL_STATE(1792)] = 39976, - [SMALL_STATE(1793)] = 39983, - [SMALL_STATE(1794)] = 39990, - [SMALL_STATE(1795)] = 39997, - [SMALL_STATE(1796)] = 40004, - [SMALL_STATE(1797)] = 40011, - [SMALL_STATE(1798)] = 40018, - [SMALL_STATE(1799)] = 40025, - [SMALL_STATE(1800)] = 40032, - [SMALL_STATE(1801)] = 40039, - [SMALL_STATE(1802)] = 40046, - [SMALL_STATE(1803)] = 40053, - [SMALL_STATE(1804)] = 40060, - [SMALL_STATE(1805)] = 40067, - [SMALL_STATE(1806)] = 40074, - [SMALL_STATE(1807)] = 40081, - [SMALL_STATE(1808)] = 40088, - [SMALL_STATE(1809)] = 40095, - [SMALL_STATE(1810)] = 40102, - [SMALL_STATE(1811)] = 40109, - [SMALL_STATE(1812)] = 40116, - [SMALL_STATE(1813)] = 40123, - [SMALL_STATE(1814)] = 40130, - [SMALL_STATE(1815)] = 40137, - [SMALL_STATE(1816)] = 40144, - [SMALL_STATE(1817)] = 40151, - [SMALL_STATE(1818)] = 40158, - [SMALL_STATE(1819)] = 40165, - [SMALL_STATE(1820)] = 40172, - [SMALL_STATE(1821)] = 40179, - [SMALL_STATE(1822)] = 40186, - [SMALL_STATE(1823)] = 40193, - [SMALL_STATE(1824)] = 40200, - [SMALL_STATE(1825)] = 40207, - [SMALL_STATE(1826)] = 40214, - [SMALL_STATE(1827)] = 40221, - [SMALL_STATE(1828)] = 40228, - [SMALL_STATE(1829)] = 40235, - [SMALL_STATE(1830)] = 40242, - [SMALL_STATE(1831)] = 40249, - [SMALL_STATE(1832)] = 40256, - [SMALL_STATE(1833)] = 40263, - [SMALL_STATE(1834)] = 40270, - [SMALL_STATE(1835)] = 40277, - [SMALL_STATE(1836)] = 40284, - [SMALL_STATE(1837)] = 40291, - [SMALL_STATE(1838)] = 40298, - [SMALL_STATE(1839)] = 40305, - [SMALL_STATE(1840)] = 40312, - [SMALL_STATE(1841)] = 40319, - [SMALL_STATE(1842)] = 40326, - [SMALL_STATE(1843)] = 40333, - [SMALL_STATE(1844)] = 40340, - [SMALL_STATE(1845)] = 40347, - [SMALL_STATE(1846)] = 40354, - [SMALL_STATE(1847)] = 40361, - [SMALL_STATE(1848)] = 40368, - [SMALL_STATE(1849)] = 40375, - [SMALL_STATE(1850)] = 40382, - [SMALL_STATE(1851)] = 40389, - [SMALL_STATE(1852)] = 40396, - [SMALL_STATE(1853)] = 40403, - [SMALL_STATE(1854)] = 40410, - [SMALL_STATE(1855)] = 40417, - [SMALL_STATE(1856)] = 40424, - [SMALL_STATE(1857)] = 40431, - [SMALL_STATE(1858)] = 40438, - [SMALL_STATE(1859)] = 40445, - [SMALL_STATE(1860)] = 40452, - [SMALL_STATE(1861)] = 40459, - [SMALL_STATE(1862)] = 40466, - [SMALL_STATE(1863)] = 40473, - [SMALL_STATE(1864)] = 40480, - [SMALL_STATE(1865)] = 40487, - [SMALL_STATE(1866)] = 40494, - [SMALL_STATE(1867)] = 40501, - [SMALL_STATE(1868)] = 40508, - [SMALL_STATE(1869)] = 40515, - [SMALL_STATE(1870)] = 40522, - [SMALL_STATE(1871)] = 40529, - [SMALL_STATE(1872)] = 40536, - [SMALL_STATE(1873)] = 40543, - [SMALL_STATE(1874)] = 40550, - [SMALL_STATE(1875)] = 40557, - [SMALL_STATE(1876)] = 40564, - [SMALL_STATE(1877)] = 40571, - [SMALL_STATE(1878)] = 40578, + [SMALL_STATE(1254)] = 34034, + [SMALL_STATE(1255)] = 34050, + [SMALL_STATE(1256)] = 34070, + [SMALL_STATE(1257)] = 34083, + [SMALL_STATE(1258)] = 34098, + [SMALL_STATE(1259)] = 34113, + [SMALL_STATE(1260)] = 34128, + [SMALL_STATE(1261)] = 34145, + [SMALL_STATE(1262)] = 34160, + [SMALL_STATE(1263)] = 34173, + [SMALL_STATE(1264)] = 34192, + [SMALL_STATE(1265)] = 34211, + [SMALL_STATE(1266)] = 34228, + [SMALL_STATE(1267)] = 34239, + [SMALL_STATE(1268)] = 34254, + [SMALL_STATE(1269)] = 34269, + [SMALL_STATE(1270)] = 34284, + [SMALL_STATE(1271)] = 34299, + [SMALL_STATE(1272)] = 34314, + [SMALL_STATE(1273)] = 34327, + [SMALL_STATE(1274)] = 34342, + [SMALL_STATE(1275)] = 34357, + [SMALL_STATE(1276)] = 34372, + [SMALL_STATE(1277)] = 34385, + [SMALL_STATE(1278)] = 34398, + [SMALL_STATE(1279)] = 34411, + [SMALL_STATE(1280)] = 34425, + [SMALL_STATE(1281)] = 34435, + [SMALL_STATE(1282)] = 34451, + [SMALL_STATE(1283)] = 34467, + [SMALL_STATE(1284)] = 34483, + [SMALL_STATE(1285)] = 34497, + [SMALL_STATE(1286)] = 34507, + [SMALL_STATE(1287)] = 34517, + [SMALL_STATE(1288)] = 34527, + [SMALL_STATE(1289)] = 34537, + [SMALL_STATE(1290)] = 34551, + [SMALL_STATE(1291)] = 34561, + [SMALL_STATE(1292)] = 34571, + [SMALL_STATE(1293)] = 34587, + [SMALL_STATE(1294)] = 34597, + [SMALL_STATE(1295)] = 34611, + [SMALL_STATE(1296)] = 34625, + [SMALL_STATE(1297)] = 34639, + [SMALL_STATE(1298)] = 34649, + [SMALL_STATE(1299)] = 34659, + [SMALL_STATE(1300)] = 34673, + [SMALL_STATE(1301)] = 34689, + [SMALL_STATE(1302)] = 34703, + [SMALL_STATE(1303)] = 34713, + [SMALL_STATE(1304)] = 34729, + [SMALL_STATE(1305)] = 34739, + [SMALL_STATE(1306)] = 34749, + [SMALL_STATE(1307)] = 34763, + [SMALL_STATE(1308)] = 34779, + [SMALL_STATE(1309)] = 34793, + [SMALL_STATE(1310)] = 34809, + [SMALL_STATE(1311)] = 34823, + [SMALL_STATE(1312)] = 34833, + [SMALL_STATE(1313)] = 34847, + [SMALL_STATE(1314)] = 34861, + [SMALL_STATE(1315)] = 34877, + [SMALL_STATE(1316)] = 34887, + [SMALL_STATE(1317)] = 34903, + [SMALL_STATE(1318)] = 34917, + [SMALL_STATE(1319)] = 34927, + [SMALL_STATE(1320)] = 34943, + [SMALL_STATE(1321)] = 34953, + [SMALL_STATE(1322)] = 34963, + [SMALL_STATE(1323)] = 34973, + [SMALL_STATE(1324)] = 34983, + [SMALL_STATE(1325)] = 34993, + [SMALL_STATE(1326)] = 35007, + [SMALL_STATE(1327)] = 35023, + [SMALL_STATE(1328)] = 35037, + [SMALL_STATE(1329)] = 35047, + [SMALL_STATE(1330)] = 35059, + [SMALL_STATE(1331)] = 35073, + [SMALL_STATE(1332)] = 35087, + [SMALL_STATE(1333)] = 35101, + [SMALL_STATE(1334)] = 35111, + [SMALL_STATE(1335)] = 35121, + [SMALL_STATE(1336)] = 35131, + [SMALL_STATE(1337)] = 35141, + [SMALL_STATE(1338)] = 35151, + [SMALL_STATE(1339)] = 35161, + [SMALL_STATE(1340)] = 35171, + [SMALL_STATE(1341)] = 35187, + [SMALL_STATE(1342)] = 35201, + [SMALL_STATE(1343)] = 35215, + [SMALL_STATE(1344)] = 35227, + [SMALL_STATE(1345)] = 35237, + [SMALL_STATE(1346)] = 35247, + [SMALL_STATE(1347)] = 35257, + [SMALL_STATE(1348)] = 35273, + [SMALL_STATE(1349)] = 35283, + [SMALL_STATE(1350)] = 35299, + [SMALL_STATE(1351)] = 35313, + [SMALL_STATE(1352)] = 35329, + [SMALL_STATE(1353)] = 35339, + [SMALL_STATE(1354)] = 35349, + [SMALL_STATE(1355)] = 35359, + [SMALL_STATE(1356)] = 35375, + [SMALL_STATE(1357)] = 35387, + [SMALL_STATE(1358)] = 35401, + [SMALL_STATE(1359)] = 35417, + [SMALL_STATE(1360)] = 35431, + [SMALL_STATE(1361)] = 35441, + [SMALL_STATE(1362)] = 35457, + [SMALL_STATE(1363)] = 35473, + [SMALL_STATE(1364)] = 35483, + [SMALL_STATE(1365)] = 35493, + [SMALL_STATE(1366)] = 35503, + [SMALL_STATE(1367)] = 35519, + [SMALL_STATE(1368)] = 35533, + [SMALL_STATE(1369)] = 35547, + [SMALL_STATE(1370)] = 35563, + [SMALL_STATE(1371)] = 35573, + [SMALL_STATE(1372)] = 35583, + [SMALL_STATE(1373)] = 35597, + [SMALL_STATE(1374)] = 35611, + [SMALL_STATE(1375)] = 35625, + [SMALL_STATE(1376)] = 35635, + [SMALL_STATE(1377)] = 35645, + [SMALL_STATE(1378)] = 35655, + [SMALL_STATE(1379)] = 35669, + [SMALL_STATE(1380)] = 35679, + [SMALL_STATE(1381)] = 35695, + [SMALL_STATE(1382)] = 35711, + [SMALL_STATE(1383)] = 35721, + [SMALL_STATE(1384)] = 35731, + [SMALL_STATE(1385)] = 35747, + [SMALL_STATE(1386)] = 35763, + [SMALL_STATE(1387)] = 35775, + [SMALL_STATE(1388)] = 35789, + [SMALL_STATE(1389)] = 35799, + [SMALL_STATE(1390)] = 35815, + [SMALL_STATE(1391)] = 35831, + [SMALL_STATE(1392)] = 35841, + [SMALL_STATE(1393)] = 35857, + [SMALL_STATE(1394)] = 35873, + [SMALL_STATE(1395)] = 35883, + [SMALL_STATE(1396)] = 35893, + [SMALL_STATE(1397)] = 35909, + [SMALL_STATE(1398)] = 35919, + [SMALL_STATE(1399)] = 35935, + [SMALL_STATE(1400)] = 35951, + [SMALL_STATE(1401)] = 35961, + [SMALL_STATE(1402)] = 35971, + [SMALL_STATE(1403)] = 35981, + [SMALL_STATE(1404)] = 35997, + [SMALL_STATE(1405)] = 36007, + [SMALL_STATE(1406)] = 36021, + [SMALL_STATE(1407)] = 36031, + [SMALL_STATE(1408)] = 36041, + [SMALL_STATE(1409)] = 36051, + [SMALL_STATE(1410)] = 36061, + [SMALL_STATE(1411)] = 36077, + [SMALL_STATE(1412)] = 36087, + [SMALL_STATE(1413)] = 36101, + [SMALL_STATE(1414)] = 36113, + [SMALL_STATE(1415)] = 36129, + [SMALL_STATE(1416)] = 36139, + [SMALL_STATE(1417)] = 36151, + [SMALL_STATE(1418)] = 36161, + [SMALL_STATE(1419)] = 36171, + [SMALL_STATE(1420)] = 36187, + [SMALL_STATE(1421)] = 36203, + [SMALL_STATE(1422)] = 36219, + [SMALL_STATE(1423)] = 36229, + [SMALL_STATE(1424)] = 36239, + [SMALL_STATE(1425)] = 36249, + [SMALL_STATE(1426)] = 36265, + [SMALL_STATE(1427)] = 36275, + [SMALL_STATE(1428)] = 36288, + [SMALL_STATE(1429)] = 36299, + [SMALL_STATE(1430)] = 36312, + [SMALL_STATE(1431)] = 36325, + [SMALL_STATE(1432)] = 36338, + [SMALL_STATE(1433)] = 36351, + [SMALL_STATE(1434)] = 36364, + [SMALL_STATE(1435)] = 36377, + [SMALL_STATE(1436)] = 36390, + [SMALL_STATE(1437)] = 36403, + [SMALL_STATE(1438)] = 36416, + [SMALL_STATE(1439)] = 36429, + [SMALL_STATE(1440)] = 36442, + [SMALL_STATE(1441)] = 36455, + [SMALL_STATE(1442)] = 36468, + [SMALL_STATE(1443)] = 36481, + [SMALL_STATE(1444)] = 36490, + [SMALL_STATE(1445)] = 36503, + [SMALL_STATE(1446)] = 36516, + [SMALL_STATE(1447)] = 36529, + [SMALL_STATE(1448)] = 36542, + [SMALL_STATE(1449)] = 36555, + [SMALL_STATE(1450)] = 36568, + [SMALL_STATE(1451)] = 36581, + [SMALL_STATE(1452)] = 36594, + [SMALL_STATE(1453)] = 36607, + [SMALL_STATE(1454)] = 36620, + [SMALL_STATE(1455)] = 36633, + [SMALL_STATE(1456)] = 36646, + [SMALL_STATE(1457)] = 36659, + [SMALL_STATE(1458)] = 36672, + [SMALL_STATE(1459)] = 36685, + [SMALL_STATE(1460)] = 36698, + [SMALL_STATE(1461)] = 36711, + [SMALL_STATE(1462)] = 36720, + [SMALL_STATE(1463)] = 36733, + [SMALL_STATE(1464)] = 36746, + [SMALL_STATE(1465)] = 36759, + [SMALL_STATE(1466)] = 36768, + [SMALL_STATE(1467)] = 36781, + [SMALL_STATE(1468)] = 36794, + [SMALL_STATE(1469)] = 36807, + [SMALL_STATE(1470)] = 36818, + [SMALL_STATE(1471)] = 36831, + [SMALL_STATE(1472)] = 36844, + [SMALL_STATE(1473)] = 36857, + [SMALL_STATE(1474)] = 36870, + [SMALL_STATE(1475)] = 36883, + [SMALL_STATE(1476)] = 36896, + [SMALL_STATE(1477)] = 36909, + [SMALL_STATE(1478)] = 36922, + [SMALL_STATE(1479)] = 36935, + [SMALL_STATE(1480)] = 36948, + [SMALL_STATE(1481)] = 36961, + [SMALL_STATE(1482)] = 36974, + [SMALL_STATE(1483)] = 36987, + [SMALL_STATE(1484)] = 37000, + [SMALL_STATE(1485)] = 37013, + [SMALL_STATE(1486)] = 37026, + [SMALL_STATE(1487)] = 37039, + [SMALL_STATE(1488)] = 37052, + [SMALL_STATE(1489)] = 37065, + [SMALL_STATE(1490)] = 37078, + [SMALL_STATE(1491)] = 37089, + [SMALL_STATE(1492)] = 37100, + [SMALL_STATE(1493)] = 37113, + [SMALL_STATE(1494)] = 37126, + [SMALL_STATE(1495)] = 37139, + [SMALL_STATE(1496)] = 37152, + [SMALL_STATE(1497)] = 37165, + [SMALL_STATE(1498)] = 37178, + [SMALL_STATE(1499)] = 37187, + [SMALL_STATE(1500)] = 37200, + [SMALL_STATE(1501)] = 37213, + [SMALL_STATE(1502)] = 37222, + [SMALL_STATE(1503)] = 37235, + [SMALL_STATE(1504)] = 37248, + [SMALL_STATE(1505)] = 37261, + [SMALL_STATE(1506)] = 37274, + [SMALL_STATE(1507)] = 37287, + [SMALL_STATE(1508)] = 37300, + [SMALL_STATE(1509)] = 37313, + [SMALL_STATE(1510)] = 37326, + [SMALL_STATE(1511)] = 37339, + [SMALL_STATE(1512)] = 37352, + [SMALL_STATE(1513)] = 37365, + [SMALL_STATE(1514)] = 37374, + [SMALL_STATE(1515)] = 37383, + [SMALL_STATE(1516)] = 37396, + [SMALL_STATE(1517)] = 37409, + [SMALL_STATE(1518)] = 37422, + [SMALL_STATE(1519)] = 37435, + [SMALL_STATE(1520)] = 37448, + [SMALL_STATE(1521)] = 37461, + [SMALL_STATE(1522)] = 37470, + [SMALL_STATE(1523)] = 37483, + [SMALL_STATE(1524)] = 37496, + [SMALL_STATE(1525)] = 37509, + [SMALL_STATE(1526)] = 37522, + [SMALL_STATE(1527)] = 37535, + [SMALL_STATE(1528)] = 37548, + [SMALL_STATE(1529)] = 37561, + [SMALL_STATE(1530)] = 37574, + [SMALL_STATE(1531)] = 37587, + [SMALL_STATE(1532)] = 37600, + [SMALL_STATE(1533)] = 37613, + [SMALL_STATE(1534)] = 37626, + [SMALL_STATE(1535)] = 37639, + [SMALL_STATE(1536)] = 37652, + [SMALL_STATE(1537)] = 37665, + [SMALL_STATE(1538)] = 37678, + [SMALL_STATE(1539)] = 37691, + [SMALL_STATE(1540)] = 37704, + [SMALL_STATE(1541)] = 37717, + [SMALL_STATE(1542)] = 37730, + [SMALL_STATE(1543)] = 37743, + [SMALL_STATE(1544)] = 37756, + [SMALL_STATE(1545)] = 37769, + [SMALL_STATE(1546)] = 37782, + [SMALL_STATE(1547)] = 37795, + [SMALL_STATE(1548)] = 37808, + [SMALL_STATE(1549)] = 37821, + [SMALL_STATE(1550)] = 37834, + [SMALL_STATE(1551)] = 37847, + [SMALL_STATE(1552)] = 37860, + [SMALL_STATE(1553)] = 37873, + [SMALL_STATE(1554)] = 37886, + [SMALL_STATE(1555)] = 37899, + [SMALL_STATE(1556)] = 37912, + [SMALL_STATE(1557)] = 37923, + [SMALL_STATE(1558)] = 37936, + [SMALL_STATE(1559)] = 37949, + [SMALL_STATE(1560)] = 37962, + [SMALL_STATE(1561)] = 37975, + [SMALL_STATE(1562)] = 37988, + [SMALL_STATE(1563)] = 38001, + [SMALL_STATE(1564)] = 38010, + [SMALL_STATE(1565)] = 38019, + [SMALL_STATE(1566)] = 38032, + [SMALL_STATE(1567)] = 38045, + [SMALL_STATE(1568)] = 38058, + [SMALL_STATE(1569)] = 38071, + [SMALL_STATE(1570)] = 38084, + [SMALL_STATE(1571)] = 38097, + [SMALL_STATE(1572)] = 38110, + [SMALL_STATE(1573)] = 38123, + [SMALL_STATE(1574)] = 38136, + [SMALL_STATE(1575)] = 38145, + [SMALL_STATE(1576)] = 38158, + [SMALL_STATE(1577)] = 38167, + [SMALL_STATE(1578)] = 38180, + [SMALL_STATE(1579)] = 38193, + [SMALL_STATE(1580)] = 38203, + [SMALL_STATE(1581)] = 38213, + [SMALL_STATE(1582)] = 38223, + [SMALL_STATE(1583)] = 38233, + [SMALL_STATE(1584)] = 38243, + [SMALL_STATE(1585)] = 38253, + [SMALL_STATE(1586)] = 38263, + [SMALL_STATE(1587)] = 38271, + [SMALL_STATE(1588)] = 38281, + [SMALL_STATE(1589)] = 38289, + [SMALL_STATE(1590)] = 38299, + [SMALL_STATE(1591)] = 38309, + [SMALL_STATE(1592)] = 38319, + [SMALL_STATE(1593)] = 38329, + [SMALL_STATE(1594)] = 38337, + [SMALL_STATE(1595)] = 38347, + [SMALL_STATE(1596)] = 38357, + [SMALL_STATE(1597)] = 38367, + [SMALL_STATE(1598)] = 38377, + [SMALL_STATE(1599)] = 38385, + [SMALL_STATE(1600)] = 38395, + [SMALL_STATE(1601)] = 38405, + [SMALL_STATE(1602)] = 38415, + [SMALL_STATE(1603)] = 38425, + [SMALL_STATE(1604)] = 38435, + [SMALL_STATE(1605)] = 38445, + [SMALL_STATE(1606)] = 38455, + [SMALL_STATE(1607)] = 38465, + [SMALL_STATE(1608)] = 38475, + [SMALL_STATE(1609)] = 38485, + [SMALL_STATE(1610)] = 38493, + [SMALL_STATE(1611)] = 38501, + [SMALL_STATE(1612)] = 38511, + [SMALL_STATE(1613)] = 38521, + [SMALL_STATE(1614)] = 38531, + [SMALL_STATE(1615)] = 38541, + [SMALL_STATE(1616)] = 38551, + [SMALL_STATE(1617)] = 38561, + [SMALL_STATE(1618)] = 38571, + [SMALL_STATE(1619)] = 38579, + [SMALL_STATE(1620)] = 38589, + [SMALL_STATE(1621)] = 38597, + [SMALL_STATE(1622)] = 38607, + [SMALL_STATE(1623)] = 38617, + [SMALL_STATE(1624)] = 38627, + [SMALL_STATE(1625)] = 38637, + [SMALL_STATE(1626)] = 38647, + [SMALL_STATE(1627)] = 38657, + [SMALL_STATE(1628)] = 38667, + [SMALL_STATE(1629)] = 38677, + [SMALL_STATE(1630)] = 38687, + [SMALL_STATE(1631)] = 38697, + [SMALL_STATE(1632)] = 38707, + [SMALL_STATE(1633)] = 38717, + [SMALL_STATE(1634)] = 38727, + [SMALL_STATE(1635)] = 38737, + [SMALL_STATE(1636)] = 38747, + [SMALL_STATE(1637)] = 38757, + [SMALL_STATE(1638)] = 38765, + [SMALL_STATE(1639)] = 38775, + [SMALL_STATE(1640)] = 38785, + [SMALL_STATE(1641)] = 38795, + [SMALL_STATE(1642)] = 38805, + [SMALL_STATE(1643)] = 38815, + [SMALL_STATE(1644)] = 38825, + [SMALL_STATE(1645)] = 38835, + [SMALL_STATE(1646)] = 38845, + [SMALL_STATE(1647)] = 38853, + [SMALL_STATE(1648)] = 38863, + [SMALL_STATE(1649)] = 38873, + [SMALL_STATE(1650)] = 38883, + [SMALL_STATE(1651)] = 38893, + [SMALL_STATE(1652)] = 38901, + [SMALL_STATE(1653)] = 38911, + [SMALL_STATE(1654)] = 38921, + [SMALL_STATE(1655)] = 38931, + [SMALL_STATE(1656)] = 38941, + [SMALL_STATE(1657)] = 38951, + [SMALL_STATE(1658)] = 38961, + [SMALL_STATE(1659)] = 38971, + [SMALL_STATE(1660)] = 38981, + [SMALL_STATE(1661)] = 38991, + [SMALL_STATE(1662)] = 39001, + [SMALL_STATE(1663)] = 39011, + [SMALL_STATE(1664)] = 39021, + [SMALL_STATE(1665)] = 39031, + [SMALL_STATE(1666)] = 39041, + [SMALL_STATE(1667)] = 39051, + [SMALL_STATE(1668)] = 39061, + [SMALL_STATE(1669)] = 39071, + [SMALL_STATE(1670)] = 39081, + [SMALL_STATE(1671)] = 39091, + [SMALL_STATE(1672)] = 39101, + [SMALL_STATE(1673)] = 39111, + [SMALL_STATE(1674)] = 39121, + [SMALL_STATE(1675)] = 39131, + [SMALL_STATE(1676)] = 39141, + [SMALL_STATE(1677)] = 39151, + [SMALL_STATE(1678)] = 39161, + [SMALL_STATE(1679)] = 39169, + [SMALL_STATE(1680)] = 39179, + [SMALL_STATE(1681)] = 39189, + [SMALL_STATE(1682)] = 39199, + [SMALL_STATE(1683)] = 39209, + [SMALL_STATE(1684)] = 39219, + [SMALL_STATE(1685)] = 39229, + [SMALL_STATE(1686)] = 39239, + [SMALL_STATE(1687)] = 39249, + [SMALL_STATE(1688)] = 39259, + [SMALL_STATE(1689)] = 39269, + [SMALL_STATE(1690)] = 39279, + [SMALL_STATE(1691)] = 39289, + [SMALL_STATE(1692)] = 39299, + [SMALL_STATE(1693)] = 39309, + [SMALL_STATE(1694)] = 39319, + [SMALL_STATE(1695)] = 39329, + [SMALL_STATE(1696)] = 39339, + [SMALL_STATE(1697)] = 39349, + [SMALL_STATE(1698)] = 39359, + [SMALL_STATE(1699)] = 39367, + [SMALL_STATE(1700)] = 39377, + [SMALL_STATE(1701)] = 39384, + [SMALL_STATE(1702)] = 39391, + [SMALL_STATE(1703)] = 39398, + [SMALL_STATE(1704)] = 39405, + [SMALL_STATE(1705)] = 39412, + [SMALL_STATE(1706)] = 39419, + [SMALL_STATE(1707)] = 39426, + [SMALL_STATE(1708)] = 39433, + [SMALL_STATE(1709)] = 39440, + [SMALL_STATE(1710)] = 39447, + [SMALL_STATE(1711)] = 39454, + [SMALL_STATE(1712)] = 39461, + [SMALL_STATE(1713)] = 39468, + [SMALL_STATE(1714)] = 39475, + [SMALL_STATE(1715)] = 39482, + [SMALL_STATE(1716)] = 39489, + [SMALL_STATE(1717)] = 39496, + [SMALL_STATE(1718)] = 39503, + [SMALL_STATE(1719)] = 39510, + [SMALL_STATE(1720)] = 39517, + [SMALL_STATE(1721)] = 39524, + [SMALL_STATE(1722)] = 39531, + [SMALL_STATE(1723)] = 39538, + [SMALL_STATE(1724)] = 39545, + [SMALL_STATE(1725)] = 39552, + [SMALL_STATE(1726)] = 39559, + [SMALL_STATE(1727)] = 39566, + [SMALL_STATE(1728)] = 39573, + [SMALL_STATE(1729)] = 39580, + [SMALL_STATE(1730)] = 39587, + [SMALL_STATE(1731)] = 39594, + [SMALL_STATE(1732)] = 39601, + [SMALL_STATE(1733)] = 39608, + [SMALL_STATE(1734)] = 39615, + [SMALL_STATE(1735)] = 39622, + [SMALL_STATE(1736)] = 39629, + [SMALL_STATE(1737)] = 39636, + [SMALL_STATE(1738)] = 39643, + [SMALL_STATE(1739)] = 39650, + [SMALL_STATE(1740)] = 39657, + [SMALL_STATE(1741)] = 39664, + [SMALL_STATE(1742)] = 39671, + [SMALL_STATE(1743)] = 39678, + [SMALL_STATE(1744)] = 39685, + [SMALL_STATE(1745)] = 39692, + [SMALL_STATE(1746)] = 39699, + [SMALL_STATE(1747)] = 39706, + [SMALL_STATE(1748)] = 39713, + [SMALL_STATE(1749)] = 39720, + [SMALL_STATE(1750)] = 39727, + [SMALL_STATE(1751)] = 39734, + [SMALL_STATE(1752)] = 39741, + [SMALL_STATE(1753)] = 39748, + [SMALL_STATE(1754)] = 39755, + [SMALL_STATE(1755)] = 39762, + [SMALL_STATE(1756)] = 39769, + [SMALL_STATE(1757)] = 39776, + [SMALL_STATE(1758)] = 39783, + [SMALL_STATE(1759)] = 39790, + [SMALL_STATE(1760)] = 39797, + [SMALL_STATE(1761)] = 39804, + [SMALL_STATE(1762)] = 39811, + [SMALL_STATE(1763)] = 39818, + [SMALL_STATE(1764)] = 39825, + [SMALL_STATE(1765)] = 39832, + [SMALL_STATE(1766)] = 39839, + [SMALL_STATE(1767)] = 39846, + [SMALL_STATE(1768)] = 39853, + [SMALL_STATE(1769)] = 39860, + [SMALL_STATE(1770)] = 39867, + [SMALL_STATE(1771)] = 39874, + [SMALL_STATE(1772)] = 39881, + [SMALL_STATE(1773)] = 39888, + [SMALL_STATE(1774)] = 39895, + [SMALL_STATE(1775)] = 39902, + [SMALL_STATE(1776)] = 39909, + [SMALL_STATE(1777)] = 39916, + [SMALL_STATE(1778)] = 39923, + [SMALL_STATE(1779)] = 39930, + [SMALL_STATE(1780)] = 39937, + [SMALL_STATE(1781)] = 39944, + [SMALL_STATE(1782)] = 39951, + [SMALL_STATE(1783)] = 39958, + [SMALL_STATE(1784)] = 39965, + [SMALL_STATE(1785)] = 39972, + [SMALL_STATE(1786)] = 39979, + [SMALL_STATE(1787)] = 39986, + [SMALL_STATE(1788)] = 39993, + [SMALL_STATE(1789)] = 40000, + [SMALL_STATE(1790)] = 40007, + [SMALL_STATE(1791)] = 40014, + [SMALL_STATE(1792)] = 40021, + [SMALL_STATE(1793)] = 40028, + [SMALL_STATE(1794)] = 40035, + [SMALL_STATE(1795)] = 40042, + [SMALL_STATE(1796)] = 40049, + [SMALL_STATE(1797)] = 40056, + [SMALL_STATE(1798)] = 40063, + [SMALL_STATE(1799)] = 40070, + [SMALL_STATE(1800)] = 40077, + [SMALL_STATE(1801)] = 40084, + [SMALL_STATE(1802)] = 40091, + [SMALL_STATE(1803)] = 40098, + [SMALL_STATE(1804)] = 40105, + [SMALL_STATE(1805)] = 40112, + [SMALL_STATE(1806)] = 40119, + [SMALL_STATE(1807)] = 40126, + [SMALL_STATE(1808)] = 40133, + [SMALL_STATE(1809)] = 40140, + [SMALL_STATE(1810)] = 40147, + [SMALL_STATE(1811)] = 40154, + [SMALL_STATE(1812)] = 40161, + [SMALL_STATE(1813)] = 40168, + [SMALL_STATE(1814)] = 40175, + [SMALL_STATE(1815)] = 40182, + [SMALL_STATE(1816)] = 40189, + [SMALL_STATE(1817)] = 40196, + [SMALL_STATE(1818)] = 40203, + [SMALL_STATE(1819)] = 40210, + [SMALL_STATE(1820)] = 40217, + [SMALL_STATE(1821)] = 40224, + [SMALL_STATE(1822)] = 40231, + [SMALL_STATE(1823)] = 40238, + [SMALL_STATE(1824)] = 40245, + [SMALL_STATE(1825)] = 40252, + [SMALL_STATE(1826)] = 40259, + [SMALL_STATE(1827)] = 40266, + [SMALL_STATE(1828)] = 40273, + [SMALL_STATE(1829)] = 40280, + [SMALL_STATE(1830)] = 40287, + [SMALL_STATE(1831)] = 40294, + [SMALL_STATE(1832)] = 40301, + [SMALL_STATE(1833)] = 40308, + [SMALL_STATE(1834)] = 40315, + [SMALL_STATE(1835)] = 40322, + [SMALL_STATE(1836)] = 40329, + [SMALL_STATE(1837)] = 40336, + [SMALL_STATE(1838)] = 40343, + [SMALL_STATE(1839)] = 40350, + [SMALL_STATE(1840)] = 40357, + [SMALL_STATE(1841)] = 40364, + [SMALL_STATE(1842)] = 40371, + [SMALL_STATE(1843)] = 40378, + [SMALL_STATE(1844)] = 40385, + [SMALL_STATE(1845)] = 40392, + [SMALL_STATE(1846)] = 40399, + [SMALL_STATE(1847)] = 40406, + [SMALL_STATE(1848)] = 40413, + [SMALL_STATE(1849)] = 40420, + [SMALL_STATE(1850)] = 40427, + [SMALL_STATE(1851)] = 40434, + [SMALL_STATE(1852)] = 40441, + [SMALL_STATE(1853)] = 40448, + [SMALL_STATE(1854)] = 40455, + [SMALL_STATE(1855)] = 40462, + [SMALL_STATE(1856)] = 40469, + [SMALL_STATE(1857)] = 40476, + [SMALL_STATE(1858)] = 40483, + [SMALL_STATE(1859)] = 40490, + [SMALL_STATE(1860)] = 40497, + [SMALL_STATE(1861)] = 40504, + [SMALL_STATE(1862)] = 40511, + [SMALL_STATE(1863)] = 40518, + [SMALL_STATE(1864)] = 40525, + [SMALL_STATE(1865)] = 40532, + [SMALL_STATE(1866)] = 40539, + [SMALL_STATE(1867)] = 40546, + [SMALL_STATE(1868)] = 40553, + [SMALL_STATE(1869)] = 40560, + [SMALL_STATE(1870)] = 40567, + [SMALL_STATE(1871)] = 40574, + [SMALL_STATE(1872)] = 40581, + [SMALL_STATE(1873)] = 40588, + [SMALL_STATE(1874)] = 40595, + [SMALL_STATE(1875)] = 40602, + [SMALL_STATE(1876)] = 40609, + [SMALL_STATE(1877)] = 40616, + [SMALL_STATE(1878)] = 40623, + [SMALL_STATE(1879)] = 40630, + [SMALL_STATE(1880)] = 40637, + [SMALL_STATE(1881)] = 40644, + [SMALL_STATE(1882)] = 40651, + [SMALL_STATE(1883)] = 40658, + [SMALL_STATE(1884)] = 40665, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -89992,1342 +90114,1347 @@ 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 = false}}, SHIFT(612), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), [57] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), [59] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), - [61] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), - [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), - [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1306), - [68] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(619), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1306), - [74] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1299), - [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), - [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1, 0, 0), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1, 0, 0), - [91] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 1, 0, 0), - [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_duration, 1, 0, 0), - [99] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_duration, 1, 0, 0), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), - [105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_query, 3, 0, 0), - [112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_query, 3, 0, 0), - [114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_key, 1, 0, 0), - [116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_value, 1, 0, 0), - [138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_value, 1, 0, 0), - [140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_path, 4, 0, 0), - [142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graph_path, 4, 0, 0), - [144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), - [146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), - [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_range, 5, 0, 0), - [154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_range, 5, 0, 0), - [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_range, 2, 0, 0), - [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_range, 2, 0, 0), - [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, 0, 0), - [166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, 0, 0), - [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 3, 0, 0), - [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 3, 0, 0), - [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_path, 2, 0, 0), - [174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graph_path, 2, 0, 0), - [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, 0, 0), - [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, 0, 0), - [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_value, 1, 0, 0), - [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_value, 1, 0, 0), - [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_path, 5, 0, 0), - [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graph_path, 5, 0, 0), - [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id, 3, 0, 0), - [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id, 3, 0, 0), - [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_point, 5, 0, 0), - [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_point, 5, 0, 0), - [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_element, 1, 0, 0), - [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_element, 1, 0, 0), - [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_range, 4, 0, 0), - [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_range, 4, 0, 0), - [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 2, 0, 0), - [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 2, 0, 0), - [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_range, 3, 0, 0), - [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_range, 3, 0, 0), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(624), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1419), - [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, 0, 0), - [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, 0, 0), - [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_count, 2, 0, 0), - [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_count, 2, 0, 0), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, 0, 0), - [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, 0, 0), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_count, 3, 0, 0), - [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_count, 3, 0, 0), - [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_count, 4, 0, 0), - [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_count, 4, 0, 0), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(625), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), + [61] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1, 0, 0), + [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1, 0, 0), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [73] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [75] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), + [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(622), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1, 0, 0), + [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 1, 0, 0), + [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), + [99] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_duration, 1, 0, 0), + [106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_duration, 1, 0, 0), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_value, 1, 0, 0), + [112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_value, 1, 0, 0), + [114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sub_query, 3, 0, 0), + [124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sub_query, 3, 0, 0), + [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_key, 1, 0, 0), + [132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_range, 3, 0, 0), + [142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_range, 3, 0, 0), + [144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_value, 1, 0, 0), + [146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_value, 1, 0, 0), + [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), + [154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), + [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_element, 1, 0, 0), + [158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_element, 1, 0, 0), + [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id, 3, 0, 0), + [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id, 3, 0, 0), + [164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_range, 5, 0, 0), + [166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_range, 5, 0, 0), + [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 2, 0, 0), + [174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 2, 0, 0), + [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 3, 0, 0), + [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 3, 0, 0), + [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 3, 0, 0), + [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 3, 0, 0), + [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_path, 2, 0, 0), + [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graph_path, 2, 0, 0), + [188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, 0, 0), + [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, 0, 0), + [196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_path, 4, 0, 0), + [198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graph_path, 4, 0, 0), + [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_range, 2, 0, 0), + [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_range, 2, 0, 0), + [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_point, 5, 0, 0), + [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_point, 5, 0, 0), + [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_range, 4, 0, 0), + [210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_range, 4, 0, 0), + [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_path, 5, 0, 0), + [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graph_path, 5, 0, 0), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, 0, 0), + [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, 0, 0), + [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, 0, 0), + [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, 0, 0), + [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_count, 4, 0, 0), + [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_count, 4, 0, 0), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_count, 3, 0, 0), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_count, 3, 0, 0), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_count, 2, 0, 0), + [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_count, 2, 0, 0), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(631), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1398), [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(91), [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 3, 0, 0), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 2, 0, 0), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_range, 1, 0, 0), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_range, 1, 0, 0), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 2, 0, 0), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 3, 0, 0), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(630), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1343), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(621), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), - [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 2, 0, 0), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 3, 0, 0), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_id_range, 1, 0, 0), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_id_range, 1, 0, 0), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 2, 0, 0), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 3, 0, 0), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1419), + [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(623), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1419), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1340), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1340), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1319), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(1282), [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expressions, 3, 0, 0), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expressions, 2, 0, 0), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expressions, 2, 0, 0), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_duration_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_view_clause, 6, 0, 0), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_view_clause, 5, 0, 0), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_view_clause, 5, 0, 0), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_view_clause, 6, 0, 0), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_criteria, 1, 0, 0), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 0), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3, 0, 0), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 0), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 0), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_criteria, 1, 0, 0), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 3, 0, 0), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_clause, 2, 0, 0), [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_clause, 2, 0, 0), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_clause, 2, 0, 0), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_clause, 2, 0, 0), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_assignment, 3, 0, 0), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_clause, 2, 0, 0), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_predicate, 1, 0, 0), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_assignment, 3, 0, 0), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_clause, 2, 0, 0), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_predicate, 1, 0, 0), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicate, 1, 0, 0), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_param_statement, 6, 0, 0), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_param_statement, 5, 0, 0), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_property, 3, 0, 0), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_param, 6, 0, 0), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_clause, 2, 0, 0), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_param, 5, 0, 0), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omit_clause, 2, 0, 0), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_param_statement, 5, 0, 0), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_param_statement, 6, 0, 0), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_clause, 2, 0, 0), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_param, 5, 0, 0), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_param, 6, 0, 0), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_property, 3, 0, 0), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omit_clause, 2, 0, 0), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1836), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), - [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1840), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1816), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1818), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1819), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1827), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_search_analyzer_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(764), [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_search_analyzer_clause, 3, 0, 0), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_search_analyzer_clause, 4, 0, 0), [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 4, 0, 0), [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_user_statement_repeat1, 2, 0, 0), [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 4, 0, 0), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 5, 0, 0), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 5, 0, 0), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1, 0, 0), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1, 0, 0), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 2, 0, 0), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 2, 0, 0), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 5, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 5, 0, 0), [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 6, 0, 0), [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 6, 0, 0), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 2, 0, 0), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 2, 0, 0), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 3, 0, 0), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 3, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 1, 0, 0), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 1, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 1, 0, 0), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 1, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 3, 0, 0), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 3, 0, 0), [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 5, 0, 0), [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_clause, 2, 0, 0), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 6, 0, 0), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_field_statement, 6, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_user_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_field_statement, 4, 0, 0), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_field_statement, 5, 0, 0), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(969), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(706), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(729), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(719), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(705), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_table_clause, 2, 0, 0), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_table_clause, 3, 0, 0), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bm25_clause, 1, 0, 0), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1534), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_table_statement, 5, 0, 0), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_view_clause, 7, 0, 0), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 7, 0, 0), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_table_statement, 4, 0, 0), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_table_statement, 3, 0, 0), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postings_cache_clause, 2, 0, 0), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postings_order_clause, 2, 0, 0), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 4, 0, 0), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_user_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1675), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_ids_cache_clause, 2, 0, 0), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_ids_order_clause, 2, 0, 0), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_lengths_cache_clause, 2, 0, 0), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_lengths_order_clause, 2, 0, 0), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 2, 0, 0), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terms_cache_clause, 2, 0, 0), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bm25_clause, 6, 0, 0), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terms_order_clause, 2, 0, 0), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 5, 0, 0), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 2, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 3, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_type, 4, 0, 0), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 8, 0, 0), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 6, 0, 0), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_user_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(670), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 6, 0, 0), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_field_statement, 4, 0, 0), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_field_statement, 5, 0, 0), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_field_statement, 6, 0, 0), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_table_clause, 2, 0, 0), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_field_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_table_clause, 3, 0, 0), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_table_statement, 3, 0, 0), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_table_statement, 4, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_table_statement, 5, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1488), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bm25_clause, 1, 0, 0), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_view_clause, 7, 0, 0), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 7, 0, 0), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_table_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1357), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 5, 0, 0), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_ids_cache_clause, 2, 0, 0), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_ids_order_clause, 2, 0, 0), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terms_order_clause, 2, 0, 0), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 4, 0, 0), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_lengths_cache_clause, 2, 0, 0), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terms_cache_clause, 2, 0, 0), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postings_order_clause, 2, 0, 0), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_user_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postings_cache_clause, 2, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_lengths_order_clause, 2, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 2, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bm25_clause, 6, 0, 0), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_type, 4, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 2, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 8, 0, 0), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 3, 0, 0), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 7, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 4, 0, 0), [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 3, 0, 0), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 8, 0, 0), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_view_clause, 8, 0, 0), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 9, 0, 0), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(727), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(763), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 7, 0, 0), - [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 2, 0, 0), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(660), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_scope_statement, 4, 0, 0), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 2, 0, 0), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 2, 0, 0), SHIFT_REPEAT(1406), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_split_clause, 3, 0, 0), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_scope_statement, 3, 0, 0), - [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(760), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_analyzer_statement_repeat1, 2, 0, 0), - [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_analyzer_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1271), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_analyzer_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1799), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_analyzer_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), - [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_analyzer_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_clause, 3, 0, 0), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 3, 0, 0), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_analyzer_statement, 4, 0, 0), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permissions_for_clause, 2, 0, 0), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_scope_statement_repeat1, 2, 0, 0), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_scope_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), - [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_scope_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_scope_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), - [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_scope_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_scope_statement, 5, 0, 0), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_analyzer_statement, 3, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 6, 0, 0), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 4, 0, 0), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_analyzer_statement, 5, 0, 0), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4, 0, 0), - [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(692), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 2, 0, 0), SHIFT_REPEAT(1410), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_clause, 2, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_split_clause, 4, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_user_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1581), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 7, 0, 0), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_split_clause, 2, 0, 0), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 2, 0, 0), SHIFT_REPEAT(1370), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_criteria, 2, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 10, 0, 0), - [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 2, 0, 0), SHIFT_REPEAT(1346), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_clause, 1, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_view_clause, 9, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_changefeed_clause, 2, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 5, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tokenizers_clause_repeat1, 2, 0, 0), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tokenizers_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_subject, 1, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_clause_repeat1, 2, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 11, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_target, 1, 0, 0), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tokenizers_clause, 3, 0, 0), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_clause, 3, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filters_clause, 3, 0, 0), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filters_clause_repeat1, 2, 0, 0), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filters_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1172), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filters_clause, 2, 0, 0), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tokenizers_clause, 2, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_clause, 2, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_criteria, 3, 0, 0), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(651), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_clause, 4, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_index_statement, 6, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(761), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 8, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 6, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5, 0, 0), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 4, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_index_statement_repeat1, 2, 0, 0), - [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_index_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), - [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_index_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1765), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fetch_clause, 3, 0, 0), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(634), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_index_statement, 7, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_analyzer_filters, 4, 0, 0), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_clause, 2, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fetch_clause, 2, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_clause, 2, 0, 0), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1559), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_clause, 3, 0, 0), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_clause, 3, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_analyzer_filters, 1, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_analyzer_filters, 6, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_index_statement, 5, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_analyzer_tokenizers, 1, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signin_clause, 2, 0, 0), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_clause, 2, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_clause, 2, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permissions_basic_clause, 2, 0, 0), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 9, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signup_clause, 2, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function_statement, 7, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 12, 0, 0), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1511), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function_statement, 6, 0, 0), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fields_columns_clause, 3, 0, 0), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_function_statement_repeat1, 2, 0, 0), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1333), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 5, 0, 0), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 7, 0, 0), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_content_clause, 2, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function_statement, 5, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patch_clause, 2, 0, 0), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_merge_clause, 2, 0, 0), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_limit_clause, 2, 0, 0), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1569), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fields_columns_clause, 2, 0, 0), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 6, 0, 0), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(759), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_type_clause, 8, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_view_clause, 8, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 9, 0, 0), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 2, 0, 0), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(725), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_user_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_analyzer_statement, 5, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 3, 0, 0), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_clause, 3, 0, 0), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 4, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_split_clause, 4, 0, 0), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_split_clause, 3, 0, 0), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 4, 0, 0), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_scope_statement_repeat1, 2, 0, 0), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_scope_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_scope_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_scope_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_scope_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1367), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_clause, 2, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_split_clause, 2, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_analyzer_statement, 3, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_scope_statement, 3, 0, 0), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 2, 0, 0), + [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 2, 0, 0), SHIFT_REPEAT(1320), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permissions_for_clause, 2, 0, 0), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_scope_statement, 5, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_analyzer_statement, 4, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_scope_statement, 4, 0, 0), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 2, 0, 0), SHIFT_REPEAT(1365), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_analyzer_statement_repeat1, 2, 0, 0), + [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_analyzer_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_analyzer_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1719), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_analyzer_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_analyzer_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 6, 0, 0), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(667), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 7, 0, 0), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_criteria, 2, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 2, 0, 0), SHIFT_REPEAT(1293), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_clause, 1, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 10, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_view_clause, 9, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_changefeed_clause, 2, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat2, 2, 0, 0), SHIFT_REPEAT(1322), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 5, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tokenizers_clause, 2, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 11, 0, 0), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_target, 1, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_clause, 2, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tokenizers_clause, 3, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filters_clause, 2, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filters_clause, 3, 0, 0), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_clause_repeat1, 2, 0, 0), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_clause, 4, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_clause, 3, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_subject, 1, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_criteria, 3, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tokenizers_clause_repeat1, 2, 0, 0), + [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tokenizers_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1272), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_filters_clause_repeat1, 2, 0, 0), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_filters_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1167), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_analyzer_filters, 1, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 4, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 5, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_analyzer_filters, 6, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 8, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_index_statement_repeat1, 2, 0, 0), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_index_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1208), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_index_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_analyzer_tokenizers, 1, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_index_statement, 7, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_analyzer_filters, 4, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fetch_clause, 3, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_clause, 2, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_clause, 2, 0, 0), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1444), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_clause, 3, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_clause, 3, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 6, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_index_statement, 5, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_index_statement, 6, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fetch_clause, 2, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patch_clause, 2, 0, 0), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(748), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_limit_clause, 2, 0, 0), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function_statement, 5, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fields_columns_clause, 2, 0, 0), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_merge_clause, 2, 0, 0), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 7, 0, 0), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1505), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_content_clause, 2, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function_statement, 6, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 5, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 6, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 12, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fields_columns_clause, 3, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_clause, 2, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 9, 0, 0), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signin_clause, 2, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signup_clause, 2, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_clause, 2, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function_statement, 7, 0, 0), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1462), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permissions_basic_clause, 2, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_define_function_statement_repeat1, 2, 0, 0), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_then_clause, 2, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [1737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(726), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_then_clause, 4, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function, 5, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1535), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function, 7, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_clause, 3, 0, 0), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_then_clause, 5, 0, 0), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1353), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1369), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function, 6, 0, 0), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_then_clause_repeat1, 2, 0, 0), - [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_then_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1358), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_then_clause, 3, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_then_clause, 1, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 13, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timeout_clause, 2, 0, 0), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unique_clause, 1, 0, 0), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_user_statement, 11, 0, 0), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7, 0, 0), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 10, 0, 0), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_user_statement, 10, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_namespace_statement, 3, 0, 0), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_event_statement, 5, 0, 0), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 8, 0, 0), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(728), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 6, 0, 0), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_user_statement, 9, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commit_statement, 1, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 12, 0, 0), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 13, 0, 0), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 14, 0, 0), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 15, 0, 0), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 16, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 17, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1572), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cancel_statement, 1, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parallel_clause, 1, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explain_clause, 1, 0, 0), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat1, 2, 0, 0), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1386), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_statement, 1, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_event_statement, 6, 0, 0), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove_statement, 3, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_token_statement, 8, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explain_clause, 2, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8, 0, 0), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5, 0, 0), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commit_statement, 2, 0, 0), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 14, 0, 0), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, 0, 0), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cancel_statement, 2, 0, 0), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_statement, 2, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove_statement, 4, 0, 0), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 2, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove_statement, 5, 0, 0), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_live_select_statement, 2, 0, 0), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_token_statement, 9, 0, 0), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 3, 0, 0), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 9, 0, 0), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 11, 0, 0), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_namespace_statement, 4, 0, 0), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove_statement, 7, 0, 0), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 2, 0, 0), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 7, 0, 0), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove_statement, 6, 0, 0), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4, 0, 0), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, 0, 0), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1451), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_clause_repeat1, 2, 0, 0), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(614), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expressions_repeat1, 2, 0, 0), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_content, 2, 0, 0), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(616), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_then_clause, 1, 0, 0), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_clause, 3, 0, 0), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_then_clause_repeat1, 2, 0, 0), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_then_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_then_clause, 3, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function, 6, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_define_function_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1359), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function, 7, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_then_clause, 4, 0, 0), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1561), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_then_clause, 5, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_function, 5, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 7, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unique_clause, 1, 0, 0), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_user_statement, 10, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timeout_clause, 2, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_database, 4, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_namespace_statement, 3, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_user_statement, 11, 0, 0), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_event_statement, 5, 0, 0), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_user_statement, 9, 0, 0), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 6, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 8, 0, 0), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 13, 0, 0), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 10, 0, 0), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_database, 3, 0, 0), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 12, 0, 0), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 13, 0, 0), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat1, 2, 0, 0), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_permissions_for_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explain_clause, 1, 0, 0), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parallel_clause, 1, 0, 0), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1437), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 14, 0, 0), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 17, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 16, 0, 0), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 15, 0, 0), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commit_statement, 1, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cancel_statement, 1, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_statement, 1, 0, 0), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_database, 5, 0, 0), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove_statement, 5, 0, 0), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_update_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(705), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 5, 0, 0), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 14, 0, 0), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explain_clause, 2, 0, 0), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_event_statement, 6, 0, 0), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 4, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 2, 0, 0), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_statement, 2, 0, 0), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove_statement, 6, 0, 0), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cancel_statement, 2, 0, 0), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commit_statement, 2, 0, 0), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove_statement, 4, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 6, 0, 0), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relate_statement, 11, 0, 0), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat3, 2, 0, 0), SHIFT_REPEAT(1486), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_statement, 9, 0, 0), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_namespace_statement, 4, 0, 0), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_clause_repeat1, 2, 0, 0), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(615), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_live_select_statement, 2, 0, 0), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_token_statement, 9, 0, 0), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove_statement, 7, 0, 0), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_statement, 7, 0, 0), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 2, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 8, 0, 0), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 3, 0, 0), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement, 3, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 8, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert_statement, 7, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove_statement, 3, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_token_statement, 8, 0, 0), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_predicate, 2, 0, 0), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicate, 3, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_content, 1, 0, 0), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_content_repeat1, 2, 0, 0), - [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat1, 2, 0, 0), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_predicate, 2, 0, 0), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 4, 0, 0), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1829), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expressions, 1, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat2, 2, 0, 0), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1857), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inclusive_predicate, 1, 0, 0), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_graph_path_repeat1, 2, 0, 0), SHIFT_REPEAT(631), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_graph_path_repeat1, 2, 0, 0), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists_clause, 2, 0, 0), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat2, 5, 0, 0), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat2, 4, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_predicate, 4, 0, 0), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_predicate, 3, 0, 0), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists_clause, 3, 0, 0), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2, 0, 0), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_version, 3, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_type_clause, 2, 0, 0), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 5, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [2736] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 6, 0, 0), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_content, 2, 0, 0), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expressions_repeat1, 2, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat1, 2, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_content, 1, 0, 0), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predicate, 3, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1771), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 4, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat2, 2, 0, 0), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1837), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inclusive_predicate, 1, 0, 0), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expressions, 1, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_graph_path_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_graph_path_repeat1, 2, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_content_repeat1, 2, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_predicate, 3, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat2, 5, 0, 0), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_not_exists_clause, 3, 0, 0), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_statement_repeat2, 4, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_exists_clause, 2, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graph_predicate, 4, 0, 0), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_type_clause, 2, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_version, 3, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 5, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 6, 0, 0), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [2754] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), }; #ifdef __cplusplus diff --git a/test/corpus/define_database.txt b/test/corpus/define_database.txt new file mode 100644 index 0000000..38df56a --- /dev/null +++ b/test/corpus/define_database.txt @@ -0,0 +1,80 @@ +===================================== +Create a database +===================================== + +DEFINE DATABASE app_vitalsense; + +--- + +(source_file + (expressions + (expression + (statement + (define_database + (keyword_define) + (keyword_database) + (identifier)))) + (semi_colon))) + +===================================== +Create a DATABASE if it does not already exist +===================================== + +DEFINE DATABASE IF NOT EXISTS app_vitalsense; + +--- + +(source_file + (expressions + (expression + (statement + (define_database + (keyword_define) + (keyword_database) + (if_not_exists_clause + (keyword_if) + (keyword_not) + (keyword_exists)) + (identifier)))) + (semi_colon))) + +===================================== +Create a DATABASE and overwrite if it already exists +===================================== + +DEFINE DATABASE OVERWRITE app_vitalsense; + +--- + +(source_file + (expressions + (expression + (statement + (define_database + (keyword_define) + (keyword_database) + (keyword_overwrite) + (identifier)))) + (semi_colon))) + +===================================== +Create a DATABASE and overwrite if it already exists with a comment +===================================== + +DEFINE DATABASE OVERWRITE app_vitalsense COMMENT "This is a comment"; + +--- + +(source_file + (expressions + (expression + (statement + (define_database + (keyword_define) + (keyword_database) + (keyword_overwrite) + (identifier) + (comment_clause + (keyword_comment) + (string))))) + (semi_colon)))