diff --git a/parser/CLAUDE.md b/parser/CLAUDE.md new file mode 100644 index 0000000000..73cb5eb4d2 --- /dev/null +++ b/parser/CLAUDE.md @@ -0,0 +1,11 @@ +# Parser Development Notes + +## Running Tests + +Always run parser tests with a 5 second timeout: + +```bash +go test ./parser/... -timeout 5s +``` + +The tests are very fast. If a test is timing out, it indicates a bug (likely an infinite loop in the parser). diff --git a/parser/parser_test.go b/parser/parser_test.go index 203ae70db7..40ba1c785e 100644 --- a/parser/parser_test.go +++ b/parser/parser_test.go @@ -14,34 +14,19 @@ import ( // testMetadata holds optional metadata for a test case type testMetadata struct { - Todo bool `json:"todo,omitempty"` - Source string `json:"source,omitempty"` -} - -// astJSON represents the structure of ast.json from ClickHouse EXPLAIN AST -type astJSON struct { - Meta []struct { - Name string `json:"name"` - Type string `json:"type"` - } `json:"meta"` - Data []struct { - Explain string `json:"explain"` - } `json:"data"` - Rows int `json:"rows"` - Statistics struct { - Elapsed float64 `json:"elapsed"` - RowsRead int `json:"rows_read"` - BytesRead int `json:"bytes_read"` - } `json:"statistics"` - Error bool `json:"error,omitempty"` + Todo bool `json:"todo,omitempty"` + Source string `json:"source,omitempty"` + Explain *bool `json:"explain,omitempty"` + Skip bool `json:"skip,omitempty"` } // TestParser tests the parser using test cases from the testdata directory. // Each subdirectory in testdata represents a test case with: // - query.sql: The SQL query to parse -// - ast.json: Expected AST from ClickHouse EXPLAIN AST // - metadata.json (optional): Metadata including: // - todo: true if the test is not yet expected to pass +// - explain: false to skip the test (e.g., when ClickHouse couldn't parse it) +// - skip: true to skip the test entirely (e.g., causes infinite loop) func TestParser(t *testing.T) { testdataDir := "testdata" @@ -64,13 +49,13 @@ func TestParser(t *testing.T) { ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second) defer cancel() - // Read the query (only first line, as ast.json was generated from first statement) + // Read the query (only first line) queryPath := filepath.Join(testDir, "query.sql") queryBytes, err := os.ReadFile(queryPath) if err != nil { t.Fatalf("Failed to read query.sql: %v", err) } - // Get first line only (ast.json contains AST for first statement) + // Get first line only lines := strings.SplitN(string(queryBytes), "\n", 2) query := strings.TrimSpace(lines[0]) @@ -83,18 +68,14 @@ func TestParser(t *testing.T) { } } - // Read expected AST from ClickHouse - var expectedAST astJSON - astPath := filepath.Join(testDir, "ast.json") - if astBytes, err := os.ReadFile(astPath); err == nil { - if err := json.Unmarshal(astBytes, &expectedAST); err != nil { - t.Fatalf("Failed to parse ast.json: %v", err) - } + // Skip tests marked with skip: true + if metadata.Skip { + t.Skip("Skipping: skip is true in metadata") } - // Skip tests where ClickHouse also couldn't parse the query - if expectedAST.Error { - t.Skipf("ClickHouse also failed to parse this query") + // Skip tests where explain is explicitly false (e.g., ClickHouse couldn't parse it) + if metadata.Explain != nil && !*metadata.Explain { + t.Skipf("Skipping: explain is false in metadata") return } @@ -125,8 +106,6 @@ func TestParser(t *testing.T) { } t.Fatalf("JSON marshal error: %v\nQuery: %s", jsonErr, query) } - - // TODO: Compare parsed AST against expectedAST.Data }) } } diff --git a/parser/testdata/00001_count_hits/ast.json b/parser/testdata/00001_count_hits/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00001_count_hits/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00001_select_1/ast.json b/parser/testdata/00001_select_1/ast.json deleted file mode 100644 index 71091f4176..0000000000 --- a/parser/testdata/00001_select_1/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001936758, - "rows_read": 5, - "bytes_read": 177 - } -} diff --git a/parser/testdata/00002_count_visits/ast.json b/parser/testdata/00002_count_visits/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00002_count_visits/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00002_system_numbers/ast.json b/parser/testdata/00002_system_numbers/ast.json deleted file mode 100644 index df3bd2cb2a..0000000000 --- a/parser/testdata/00002_system_numbers/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001602544, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00003_reinterpret_as_string/ast.json b/parser/testdata/00003_reinterpret_as_string/ast.json deleted file mode 100644 index 852f67e0ae..0000000000 --- a/parser/testdata/00003_reinterpret_as_string/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function reinterpretAsString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal 'Ё'" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001337951, - "rows_read": 16, - "bytes_read": 614 - } -} diff --git a/parser/testdata/00004_shard_format_ast_and_remote_table/ast.json b/parser/testdata/00004_shard_format_ast_and_remote_table/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00004_shard_format_ast_and_remote_table/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00004_top_counters/ast.json b/parser/testdata/00004_top_counters/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00004_top_counters/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00005_filtering/ast.json b/parser/testdata/00005_filtering/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00005_filtering/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00005_shard_format_ast_and_remote_table_lambda/ast.json b/parser/testdata/00005_shard_format_ast_and_remote_table_lambda/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00005_shard_format_ast_and_remote_table_lambda/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00006_agregates/ast.json b/parser/testdata/00006_agregates/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00006_agregates/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00006_extremes_and_subquery_from/ast.json b/parser/testdata/00006_extremes_and_subquery_from/ast.json deleted file mode 100644 index d3b66b6926..0000000000 --- a/parser/testdata/00006_extremes_and_subquery_from/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001759471, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00007_array/ast.json b/parser/testdata/00007_array/ast.json deleted file mode 100644 index e6a9fc2e44..0000000000 --- a/parser/testdata/00007_array/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['Hello', 'Goodbye']" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001963539, - "rows_read": 5, - "bytes_read": 195 - } -} diff --git a/parser/testdata/00007_uniq/ast.json b/parser/testdata/00007_uniq/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00007_uniq/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00008_array_join/ast.json b/parser/testdata/00008_array_join/ast.json deleted file mode 100644 index 300a785866..0000000000 --- a/parser/testdata/00008_array_join/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['Hello', 'Goodbye']" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001753708, - "rows_read": 7, - "bytes_read": 280 - } -} diff --git a/parser/testdata/00008_uniq/ast.json b/parser/testdata/00008_uniq/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00008_uniq/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00009_array_join_subquery/ast.json b/parser/testdata/00009_array_join_subquery/ast.json deleted file mode 100644 index 5970948743..0000000000 --- a/parser/testdata/00009_array_join_subquery/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['Hello', 'Goodbye']" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001987539, - "rows_read": 16, - "bytes_read": 682 - } -} diff --git a/parser/testdata/00009_uniq_distributed/ast.json b/parser/testdata/00009_uniq_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00009_uniq_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00010_big_array_join/ast.json b/parser/testdata/00010_big_array_join/ast.json deleted file mode 100644 index 10ef35ae4c..0000000000 --- a/parser/testdata/00010_big_array_join/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['Hello', 'Goodbye']" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3] (alias arr)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " ArrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier arr" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.001767396, - "rows_read": 21, - "bytes_read": 913 - } -} diff --git a/parser/testdata/00010_quantiles_segfault/ast.json b/parser/testdata/00010_quantiles_segfault/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00010_quantiles_segfault/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00011_array_join_alias/ast.json b/parser/testdata/00011_array_join_alias/ast.json deleted file mode 100644 index 103156bae3..0000000000 --- a/parser/testdata/00011_array_join_alias/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier a" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['Hello', 'Goodbye']" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3] (alias arr)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " ArrayJoin (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.001752304, - "rows_read": 21, - "bytes_read": 895 - } -} diff --git a/parser/testdata/00011_sorting/ast.json b/parser/testdata/00011_sorting/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00011_sorting/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00012_array_join_alias_2/ast.json b/parser/testdata/00012_array_join_alias_2/ast.json deleted file mode 100644 index 8f620bc231..0000000000 --- a/parser/testdata/00012_array_join_alias_2/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['Hello', 'Goodbye']" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3] (alias arr)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " ArrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier arr (alias a)" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001439494, - "rows_read": 23, - "bytes_read": 973 - } -} diff --git a/parser/testdata/00012_sorting_distributed/ast.json b/parser/testdata/00012_sorting_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00012_sorting_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00013_create_table_with_arrays/ast.json b/parser/testdata/00013_create_table_with_arrays/ast.json deleted file mode 100644 index e6f7a6ebd9..0000000000 --- a/parser/testdata/00013_create_table_with_arrays/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery arrays_test (children 1)" - }, - { - "explain": " Identifier arrays_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001414106, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00013_sorting_of_nested/ast.json b/parser/testdata/00013_sorting_of_nested/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00013_sorting_of_nested/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00014_filtering_arrays/ast.json b/parser/testdata/00014_filtering_arrays/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00014_filtering_arrays/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00014_select_from_table_with_nested/ast.json b/parser/testdata/00014_select_from_table_with_nested/ast.json deleted file mode 100644 index 0c58bc365e..0000000000 --- a/parser/testdata/00014_select_from_table_with_nested/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nested_test (children 1)" - }, - { - "explain": " Identifier nested_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00136686, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00015_totals_and_no_aggregate_functions/ast.json b/parser/testdata/00015_totals_and_no_aggregate_functions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00015_totals_and_no_aggregate_functions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00015_totals_having_constants/ast.json b/parser/testdata/00015_totals_having_constants/ast.json deleted file mode 100644 index e263b8d1cb..0000000000 --- a/parser/testdata/00015_totals_having_constants/ast.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 5)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal Float64_0.1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal Float64_0.1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - } - ], - - "rows": 34, - - "statistics": - { - "elapsed": 0.00179472, - "rows_read": 34, - "bytes_read": 1339 - } -} diff --git a/parser/testdata/00016_any_if_distributed_cond_always_false/ast.json b/parser/testdata/00016_any_if_distributed_cond_always_false/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00016_any_if_distributed_cond_always_false/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00016_totals_having_constants/ast.json b/parser/testdata/00016_totals_having_constants/ast.json deleted file mode 100644 index 07596a8e9a..0000000000 --- a/parser/testdata/00016_totals_having_constants/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal Float64_0.1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal Float64_0.1" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.00149892, - "rows_read": 17, - "bytes_read": 605 - } -} diff --git a/parser/testdata/00017_aggregation_uninitialized_memory/ast.json b/parser/testdata/00017_aggregation_uninitialized_memory/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00017_aggregation_uninitialized_memory/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00017_in_subquery_with_empty_result/ast.json b/parser/testdata/00017_in_subquery_with_empty_result/ast.json deleted file mode 100644 index 1e6edc5f94..0000000000 --- a/parser/testdata/00017_in_subquery_with_empty_result/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001128, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00018_distinct_in_subquery/ast.json b/parser/testdata/00018_distinct_in_subquery/ast.json deleted file mode 100644 index d85df6e174..0000000000 --- a/parser/testdata/00018_distinct_in_subquery/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " Function arrayJoin (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001301782, - "rows_read": 17, - "bytes_read": 727 - } -} diff --git a/parser/testdata/00019_shard_quantiles_totals_distributed/ast.json b/parser/testdata/00019_shard_quantiles_totals_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00019_shard_quantiles_totals_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00020_distinct_order_by_distributed/ast.json b/parser/testdata/00020_distinct_order_by_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00020_distinct_order_by_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00020_sorting_arrays/ast.json b/parser/testdata/00020_sorting_arrays/ast.json deleted file mode 100644 index b0c06c387c..0000000000 --- a/parser/testdata/00020_sorting_arrays/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[UInt64_3, UInt64_4, UInt64_5], Array_[UInt64_6, UInt64_7], Array_[UInt64_2], Array_[UInt64_1, UInt64_1]]" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001441168, - "rows_read": 10, - "bytes_read": 484 - } -} diff --git a/parser/testdata/00021_1_select_with_in/ast.json b/parser/testdata/00021_1_select_with_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00021_1_select_with_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00021_2_select_with_in/ast.json b/parser/testdata/00021_2_select_with_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00021_2_select_with_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00021_3_select_with_in/ast.json b/parser/testdata/00021_3_select_with_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00021_3_select_with_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00021_sorting_arrays/ast.json b/parser/testdata/00021_sorting_arrays/ast.json deleted file mode 100644 index e75c014086..0000000000 --- a/parser/testdata/00021_sorting_arrays/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[UInt64_3, UInt64_4, UInt64_5], Array_[UInt64_6, UInt64_7], Array_[UInt64_2], Array_[UInt64_1, UInt64_1]]" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001447617, - "rows_read": 10, - "bytes_read": 484 - } -} diff --git a/parser/testdata/00022_func_higher_order_and_constants/ast.json b/parser/testdata/00022_func_higher_order_and_constants/ast.json deleted file mode 100644 index 738505635d..0000000000 --- a/parser/testdata/00022_func_higher_order_and_constants/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayExists (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function position (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal 'a'" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Array_['a']" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001343031, - "rows_read": 19, - "bytes_read": 748 - } -} diff --git a/parser/testdata/00022_merge_prewhere/ast.json b/parser/testdata/00022_merge_prewhere/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00022_merge_prewhere/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00023_agg_select_agg_subquery/ast.json b/parser/testdata/00023_agg_select_agg_subquery/ast.json deleted file mode 100644 index d415d6c74b..0000000000 --- a/parser/testdata/00023_agg_select_agg_subquery/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001391716, - "rows_read": 24, - "bytes_read": 1028 - } -} diff --git a/parser/testdata/00023_totals_limit/ast.json b/parser/testdata/00023_totals_limit/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00023_totals_limit/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00024_random_counters/ast.json b/parser/testdata/00024_random_counters/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00024_random_counters/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00024_unused_array_join_in_subquery/ast.json b/parser/testdata/00024_unused_array_join_in_subquery/ast.json deleted file mode 100644 index d68386a536..0000000000 --- a/parser/testdata/00024_unused_array_join_in_subquery/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3]" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001299614, - "rows_read": 18, - "bytes_read": 759 - } -} diff --git a/parser/testdata/00025_implicitly_used_subquery_column/ast.json b/parser/testdata/00025_implicitly_used_subquery_column/ast.json deleted file mode 100644 index 0d04dbcc7e..0000000000 --- a/parser/testdata/00025_implicitly_used_subquery_column/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Identifier x (alias y)" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.00160112, - "rows_read": 17, - "bytes_read": 707 - } -} diff --git a/parser/testdata/00026_shard_something_distributed/ast.json b/parser/testdata/00026_shard_something_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00026_shard_something_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00027_argMinMax/ast.json b/parser/testdata/00027_argMinMax/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00027_argMinMax/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00027_distinct_and_order_by/ast.json b/parser/testdata/00027_distinct_and_order_by/ast.json deleted file mode 100644 index 37731dc0f2..0000000000 --- a/parser/testdata/00027_distinct_and_order_by/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001337932, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00027_simple_argMinArray/ast.json b/parser/testdata/00027_simple_argMinArray/ast.json deleted file mode 100644 index 0195d96dc2..0000000000 --- a/parser/testdata/00027_simple_argMinArray/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function argMinArray (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier id" - }, - { - "explain": " Identifier num" - }, - { - "explain": " Function argMaxArray (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier id" - }, - { - "explain": " Identifier num" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (alias num) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[UInt64_10, UInt64_4, UInt64_3], Array_[UInt64_7, UInt64_5, UInt64_6], Array_[UInt64_8, UInt64_8, UInt64_2]]" - }, - { - "explain": " Function arrayJoin (alias id) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[UInt64_1, UInt64_2, UInt64_4]]" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.001531981, - "rows_read": 26, - "bytes_read": 1216 - } -} diff --git a/parser/testdata/00028_shard_big_agg_aj_distributed/ast.json b/parser/testdata/00028_shard_big_agg_aj_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00028_shard_big_agg_aj_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00030_alter_table/ast.json b/parser/testdata/00030_alter_table/ast.json deleted file mode 100644 index 56382fa53d..0000000000 --- a/parser/testdata/00030_alter_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery alter_test (children 1)" - }, - { - "explain": " Identifier alter_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00145738, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00030_array_enumerate_uniq/ast.json b/parser/testdata/00030_array_enumerate_uniq/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00030_array_enumerate_uniq/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00031_array_enumerate_uniq/ast.json b/parser/testdata/00031_array_enumerate_uniq/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00031_array_enumerate_uniq/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00031_parser_number/ast.json b/parser/testdata/00031_parser_number/ast.json deleted file mode 100644 index 7bf1dc91ac..0000000000 --- a/parser/testdata/00031_parser_number/ast.json +++ /dev/null @@ -1,379 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 56)" - }, - { - "explain": " Literal UInt64_0 (alias x1)" - }, - { - "explain": " Literal UInt64_1 (alias x2)" - }, - { - "explain": " Literal Int64_-1 (alias x3)" - }, - { - "explain": " Literal UInt64_128 (alias x4)" - }, - { - "explain": " Literal Int64_-127 (alias x5)" - }, - { - "explain": " Literal Int64_-128 (alias x6)" - }, - { - "explain": " Literal UInt64_255 (alias x7)" - }, - { - "explain": " Literal Int64_-128 (alias x8)" - }, - { - "explain": " Literal UInt64_377 (alias x9)" - }, - { - "explain": " Literal Int64_-177 (alias x10)" - }, - { - "explain": " Literal UInt64_65535 (alias x11)" - }, - { - "explain": " Literal UInt64_4294967295 (alias x12)" - }, - { - "explain": " Literal Float64_12300 (alias x13)" - }, - { - "explain": " Literal Float64_4656 (alias x14)" - }, - { - "explain": " Literal Float64_-0 (alias x15)" - }, - { - "explain": " Literal Float64_-0 (alias x16)" - }, - { - "explain": " Literal Float64_0 (alias x17)" - }, - { - "explain": " Literal UInt64_18446744073709551615 (alias x18)" - }, - { - "explain": " Literal Float64_20988295479420645000 (alias x19)" - }, - { - "explain": " Literal Float64_-18446744073709552000 (alias x20)" - }, - { - "explain": " Literal Int64_-9223372036854775807 (alias x21)" - }, - { - "explain": " Literal Float64_-8.98846567431158e307 (alias x22)" - }, - { - "explain": " Literal Float64_-2.2250738585072014e-308 (alias x23)" - }, - { - "explain": " Literal Float64_inf (alias x24)" - }, - { - "explain": " Literal Float64_-inf (alias x25)" - }, - { - "explain": " Literal Float64_nan (alias x26)" - }, - { - "explain": " Function divide (alias x27) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Float64_1e-302 (alias x28)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x1" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x2" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x3" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x4" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x5" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x6" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x7" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x8" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x9" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x10" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x11" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x12" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x13" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x14" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x15" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x16" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x17" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x18" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x19" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x20" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x21" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x22" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x23" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x24" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x25" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x26" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x27" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x28" - } - ], - - "rows": 119, - - "statistics": - { - "elapsed": 0.002362934, - "rows_read": 119, - "bytes_read": 4680 - } -} diff --git a/parser/testdata/00032_aggregate_key64/ast.json b/parser/testdata/00032_aggregate_key64/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00032_aggregate_key64/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00032_fixed_string_to_string/ast.json b/parser/testdata/00032_fixed_string_to_string/ast.json deleted file mode 100644 index 81a63a4977..0000000000 --- a/parser/testdata/00032_fixed_string_to_string/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_111" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001436885, - "rows_read": 17, - "bytes_read": 687 - } -} diff --git a/parser/testdata/00033_aggregate_key_string/ast.json b/parser/testdata/00033_aggregate_key_string/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00033_aggregate_key_string/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00033_fixed_string_to_string/ast.json b/parser/testdata/00033_fixed_string_to_string/ast.json deleted file mode 100644 index a8c1a03ad0..0000000000 --- a/parser/testdata/00033_fixed_string_to_string/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.002180112, - "rows_read": 10, - "bytes_read": 381 - } -} diff --git a/parser/testdata/00034_aggregate_key_fixed_string/ast.json b/parser/testdata/00034_aggregate_key_fixed_string/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00034_aggregate_key_fixed_string/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00034_fixed_string_to_number/ast.json b/parser/testdata/00034_fixed_string_to_number/ast.json deleted file mode 100644 index 49d7fab1d6..0000000000 --- a/parser/testdata/00034_fixed_string_to_number/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUInt16 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_111" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001630931, - "rows_read": 17, - "bytes_read": 687 - } -} diff --git a/parser/testdata/00035_aggregate_keys128/ast.json b/parser/testdata/00035_aggregate_keys128/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00035_aggregate_keys128/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00035_function_array_return_type/ast.json b/parser/testdata/00035_function_array_return_type/ast.json deleted file mode 100644 index 2488532efd..0000000000 --- a/parser/testdata/00035_function_array_return_type/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1]" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001267856, - "rows_read": 5, - "bytes_read": 185 - } -} diff --git a/parser/testdata/00036_aggregate_hashed/ast.json b/parser/testdata/00036_aggregate_hashed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00036_aggregate_hashed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00036_array_element/ast.json b/parser/testdata/00036_array_element/ast.json deleted file mode 100644 index 4af7d3b33f..0000000000 --- a/parser/testdata/00036_array_element/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery array_element_test (children 1)" - }, - { - "explain": " Identifier array_element_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001372226, - "rows_read": 2, - "bytes_read": 88 - } -} diff --git a/parser/testdata/00037_totals_limit/ast.json b/parser/testdata/00037_totals_limit/ast.json deleted file mode 100644 index 1face667d6..0000000000 --- a/parser/testdata/00037_totals_limit/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001616272, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00037_uniq_state_merge1/ast.json b/parser/testdata/00037_uniq_state_merge1/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00037_uniq_state_merge1/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00038_totals_limit/ast.json b/parser/testdata/00038_totals_limit/ast.json deleted file mode 100644 index 7193c883c2..0000000000 --- a/parser/testdata/00038_totals_limit/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001239512, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00038_uniq_state_merge2/ast.json b/parser/testdata/00038_uniq_state_merge2/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00038_uniq_state_merge2/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00039_primary_key/ast.json b/parser/testdata/00039_primary_key/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00039_primary_key/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00040_aggregating_materialized_view/ast.json b/parser/testdata/00040_aggregating_materialized_view/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00040_aggregating_materialized_view/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00040_array_enumerate_uniq/ast.json b/parser/testdata/00040_array_enumerate_uniq/ast.json deleted file mode 100644 index 26b72f4d8b..0000000000 --- a/parser/testdata/00040_array_enumerate_uniq/ast.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function max (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayEnumerateUniq (alias arr) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function groupArray (alias nums) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function intDiv (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_54321" - }, - { - "explain": " Function groupArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function intDiv (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_98765" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000000" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function intHash32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_100000" - } - ], - - "rows": 54, - - "statistics": - { - "elapsed": 0.001671356, - "rows_read": 54, - "bytes_read": 2565 - } -} diff --git a/parser/testdata/00041_aggregating_materialized_view/ast.json b/parser/testdata/00041_aggregating_materialized_view/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00041_aggregating_materialized_view/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00041_aggregation_remap/ast.json b/parser/testdata/00041_aggregation_remap/ast.json deleted file mode 100644 index 1d6261d630..0000000000 --- a/parser/testdata/00041_aggregation_remap/ast.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 5)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_200000" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 30, - - "statistics": - { - "elapsed": 0.001577251, - "rows_read": 30, - "bytes_read": 1182 - } -} diff --git a/parser/testdata/00041_big_array_join/ast.json b/parser/testdata/00041_big_array_join/ast.json deleted file mode 100644 index 64f3b8c6c8..0000000000 --- a/parser/testdata/00041_big_array_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery big_array (children 1)" - }, - { - "explain": " Identifier big_array" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001352707, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00042_any_left_join/ast.json b/parser/testdata/00042_any_left_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00042_any_left_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00042_set/ast.json b/parser/testdata/00042_set/ast.json deleted file mode 100644 index 8c5cee93de..0000000000 --- a/parser/testdata/00042_set/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toUInt64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1100000" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001546592, - "rows_read": 20, - "bytes_read": 829 - } -} diff --git a/parser/testdata/00043_any_left_join/ast.json b/parser/testdata/00043_any_left_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00043_any_left_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00043_summing_empty_part/ast.json b/parser/testdata/00043_summing_empty_part/ast.json deleted file mode 100644 index 3b372e03ff..0000000000 --- a/parser/testdata/00043_summing_empty_part/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery empty_summing (children 1)" - }, - { - "explain": " Identifier empty_summing" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001276161, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/00044_any_left_join_string/ast.json b/parser/testdata/00044_any_left_join_string/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00044_any_left_join_string/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00044_sorting_by_string_descending/ast.json b/parser/testdata/00044_sorting_by_string_descending/ast.json deleted file mode 100644 index 64723168ec..0000000000 --- a/parser/testdata/00044_sorting_by_string_descending/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function materialize (alias s) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'abc'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier s" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001295107, - "rows_read": 24, - "bytes_read": 1008 - } -} diff --git a/parser/testdata/00045_sorting_by_fixed_string_descending/ast.json b/parser/testdata/00045_sorting_by_fixed_string_descending/ast.json deleted file mode 100644 index b0ca7f5066..0000000000 --- a/parser/testdata/00045_sorting_by_fixed_string_descending/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFixedString (alias s) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'abc'" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier s" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001802083, - "rows_read": 27, - "bytes_read": 1152 - } -} diff --git a/parser/testdata/00045_uniq_upto/ast.json b/parser/testdata/00045_uniq_upto/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00045_uniq_upto/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00046_stored_aggregates_simple/ast.json b/parser/testdata/00046_stored_aggregates_simple/ast.json deleted file mode 100644 index 63eb3f5b89..0000000000 --- a/parser/testdata/00046_stored_aggregates_simple/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery stored_aggregates (children 1)" - }, - { - "explain": " Identifier stored_aggregates" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00119504, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00046_uniq_upto_distributed/ast.json b/parser/testdata/00046_uniq_upto_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00046_uniq_upto_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00047_bar/ast.json b/parser/testdata/00047_bar/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00047_bar/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00047_stored_aggregates_complex/ast.json b/parser/testdata/00047_stored_aggregates_complex/ast.json deleted file mode 100644 index 8928ed5a71..0000000000 --- a/parser/testdata/00047_stored_aggregates_complex/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery stored_aggregates (children 1)" - }, - { - "explain": " Identifier stored_aggregates" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001374841, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00048_a_stored_aggregates_merge/ast.json b/parser/testdata/00048_a_stored_aggregates_merge/ast.json deleted file mode 100644 index 969b5920ca..0000000000 --- a/parser/testdata/00048_a_stored_aggregates_merge/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery stored_aggregates (children 1)" - }, - { - "explain": " Identifier stored_aggregates" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001177114, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00048_b_stored_aggregates_merge/ast.json b/parser/testdata/00048_b_stored_aggregates_merge/ast.json deleted file mode 100644 index 8b53981e96..0000000000 --- a/parser/testdata/00048_b_stored_aggregates_merge/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery stored_aggregates (children 1)" - }, - { - "explain": " Identifier stored_aggregates" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001096626, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00048_min_max/ast.json b/parser/testdata/00048_min_max/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00048_min_max/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00049_any_left_join/ast.json b/parser/testdata/00049_any_left_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00049_any_left_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00049_max_string_if/ast.json b/parser/testdata/00049_max_string_if/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00049_max_string_if/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00050_any_left_join/ast.json b/parser/testdata/00050_any_left_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00050_any_left_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00050_min_max/ast.json b/parser/testdata/00050_min_max/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00050_min_max/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00051_any_inner_join/ast.json b/parser/testdata/00051_any_inner_join/ast.json deleted file mode 100644 index 1d35045f29..0000000000 --- a/parser/testdata/00051_any_inner_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001376026, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00051_min_max_array/ast.json b/parser/testdata/00051_min_max_array/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00051_min_max_array/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00052_all_left_join/ast.json b/parser/testdata/00052_all_left_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00052_all_left_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00052_group_by_in/ast.json b/parser/testdata/00052_group_by_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00052_group_by_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00053_all_inner_join/ast.json b/parser/testdata/00053_all_inner_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00053_all_inner_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00053_replicate_segfault/ast.json b/parser/testdata/00053_replicate_segfault/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00053_replicate_segfault/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00054_join_string/ast.json b/parser/testdata/00054_join_string/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00054_join_string/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00054_merge_tree_partitions/ast.json b/parser/testdata/00054_merge_tree_partitions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00054_merge_tree_partitions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00055_index_and_not/ast.json b/parser/testdata/00055_index_and_not/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00055_index_and_not/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00055_join_two_numbers/ast.json b/parser/testdata/00055_join_two_numbers/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00055_join_two_numbers/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00056_join_number_string/ast.json b/parser/testdata/00056_join_number_string/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00056_join_number_string/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00056_view/ast.json b/parser/testdata/00056_view/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00056_view/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00057_join_aliases/ast.json b/parser/testdata/00057_join_aliases/ast.json deleted file mode 100644 index 056b05a9a3..0000000000 --- a/parser/testdata/00057_join_aliases/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.0011279, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00059_merge_sorting_empty_array_joined/ast.json b/parser/testdata/00059_merge_sorting_empty_array_joined/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00059_merge_sorting_empty_array_joined/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00059_shard_global_in/ast.json b/parser/testdata/00059_shard_global_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00059_shard_global_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00059_shard_global_in_mergetree/ast.json b/parser/testdata/00059_shard_global_in_mergetree/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00059_shard_global_in_mergetree/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00060_date_lut/ast.json b/parser/testdata/00060_date_lut/ast.json deleted file mode 100644 index 87fd3bc82c..0000000000 --- a/parser/testdata/00060_date_lut/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '1970-01-01 14:25:36'" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001146519, - "rows_read": 9, - "bytes_read": 364 - } -} diff --git a/parser/testdata/00060_move_to_prewhere_and_sets/ast.json b/parser/testdata/00060_move_to_prewhere_and_sets/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00060_move_to_prewhere_and_sets/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00061_merge_tree_alter/ast.json b/parser/testdata/00061_merge_tree_alter/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00061_merge_tree_alter/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00061_storage_buffer/ast.json b/parser/testdata/00061_storage_buffer/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00061_storage_buffer/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00062_loyalty/ast.json b/parser/testdata/00062_loyalty/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00062_loyalty/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00062_replicated_merge_tree_alter_zookeeper_long/ast.json b/parser/testdata/00062_replicated_merge_tree_alter_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00062_replicated_merge_tree_alter_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00063_check_query/ast.json b/parser/testdata/00063_check_query/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00063_check_query/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00063_loyalty_joins/ast.json b/parser/testdata/00063_loyalty_joins/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00063_loyalty_joins/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00064_negate_bug/ast.json b/parser/testdata/00064_negate_bug/ast.json deleted file mode 100644 index 323c42660d..0000000000 --- a/parser/testdata/00064_negate_bug/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function negate (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUInt32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toTypeName (alias t) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001328882, - "rows_read": 12, - "bytes_read": 477 - } -} diff --git a/parser/testdata/00065_loyalty_with_storage_join/ast.json b/parser/testdata/00065_loyalty_with_storage_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00065_loyalty_with_storage_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00065_shard_float_literals_formatting/ast.json b/parser/testdata/00065_shard_float_literals_formatting/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00065_shard_float_literals_formatting/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00066_group_by_in/ast.json b/parser/testdata/00066_group_by_in/ast.json deleted file mode 100644 index 8784d1bba6..0000000000 --- a/parser/testdata/00066_group_by_in/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001130123, - "rows_read": 10, - "bytes_read": 357 - } -} diff --git a/parser/testdata/00066_sorting_distributed_many_replicas/ast.json b/parser/testdata/00066_sorting_distributed_many_replicas/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00066_sorting_distributed_many_replicas/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00067_replicate_segfault/ast.json b/parser/testdata/00067_replicate_segfault/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00067_replicate_segfault/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00067_union_all/ast.json b/parser/testdata/00067_union_all/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00067_union_all/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00068_empty_tiny_log/ast.json b/parser/testdata/00068_empty_tiny_log/ast.json deleted file mode 100644 index f6b352d34f..0000000000 --- a/parser/testdata/00068_empty_tiny_log/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery empty_tiny_log (children 3)" - }, - { - "explain": " Identifier empty_tiny_log" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration A (children 1)" - }, - { - "explain": " DataType UInt8" - }, - { - "explain": " Storage definition (children 1)" - }, - { - "explain": " Function TinyLog" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.00117892, - "rows_read": 8, - "bytes_read": 293 - } -} diff --git a/parser/testdata/00068_subquery_in_prewhere/ast.json b/parser/testdata/00068_subquery_in_prewhere/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00068_subquery_in_prewhere/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00069_date_arithmetic/ast.json b/parser/testdata/00069_date_arithmetic/ast.json deleted file mode 100644 index e0af30e7c9..0000000000 --- a/parser/testdata/00069_date_arithmetic/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function minus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function now (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function now (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal 'Int32'" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001505101, - "rows_read": 15, - "bytes_read": 585 - } -} diff --git a/parser/testdata/00069_duplicate_aggregation_keys/ast.json b/parser/testdata/00069_duplicate_aggregation_keys/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00069_duplicate_aggregation_keys/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00071_insert_fewer_columns/ast.json b/parser/testdata/00071_insert_fewer_columns/ast.json deleted file mode 100644 index d9ae26a775..0000000000 --- a/parser/testdata/00071_insert_fewer_columns/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery insert_fewer_columns (children 1)" - }, - { - "explain": " Identifier insert_fewer_columns" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001299904, - "rows_read": 2, - "bytes_read": 92 - } -} diff --git a/parser/testdata/00071_merge_tree_optimize_aio/ast.json b/parser/testdata/00071_merge_tree_optimize_aio/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00071_merge_tree_optimize_aio/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00072_compare_date_and_string_index/ast.json b/parser/testdata/00072_compare_date_and_string_index/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00072_compare_date_and_string_index/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00072_in_types/ast.json b/parser/testdata/00072_in_types/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00072_in_types/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00073_merge_sorting_empty_array_joined/ast.json b/parser/testdata/00073_merge_sorting_empty_array_joined/ast.json deleted file mode 100644 index 4d92a2ecb9..0000000000 --- a/parser/testdata/00073_merge_sorting_empty_array_joined/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001187544, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00073_uniq_array/ast.json b/parser/testdata/00073_uniq_array/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00073_uniq_array/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00074_full_join/ast.json b/parser/testdata/00074_full_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00074_full_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00075_left_array_join/ast.json b/parser/testdata/00075_left_array_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00075_left_array_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00075_shard_formatting_negate_of_negative_literal/ast.json b/parser/testdata/00075_shard_formatting_negate_of_negative_literal/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00075_shard_formatting_negate_of_negative_literal/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00076_ip_coding_functions/ast.json b/parser/testdata/00076_ip_coding_functions/ast.json deleted file mode 100644 index d5377796f1..0000000000 --- a/parser/testdata/00076_ip_coding_functions/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001215817, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00076_system_columns_bytes/ast.json b/parser/testdata/00076_system_columns_bytes/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00076_system_columns_bytes/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00077_log_tinylog_stripelog/ast.json b/parser/testdata/00077_log_tinylog_stripelog/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00077_log_tinylog_stripelog/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00077_set_keys_fit_128_bits_many_blocks/ast.json b/parser/testdata/00077_set_keys_fit_128_bits_many_blocks/ast.json deleted file mode 100644 index 85ab1e9e37..0000000000 --- a/parser/testdata/00077_set_keys_fit_128_bits_many_blocks/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001086493, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00078_group_by_arrays/ast.json b/parser/testdata/00078_group_by_arrays/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00078_group_by_arrays/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00078_string_concat/ast.json b/parser/testdata/00078_string_concat/ast.json deleted file mode 100644 index c1a774446a..0000000000 --- a/parser/testdata/00078_string_concat/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '{ key: fn, value: concat }'" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal '{ key: '" - }, - { - "explain": " Function toFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'fn'" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal ', value: '" - }, - { - "explain": " Literal 'concat'" - }, - { - "explain": " Literal ' }'" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001051844, - "rows_read": 17, - "bytes_read": 650 - } -} diff --git a/parser/testdata/00079_array_join_not_used_joined_column/ast.json b/parser/testdata/00079_array_join_not_used_joined_column/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00079_array_join_not_used_joined_column/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00079_defaulted_columns/ast.json b/parser/testdata/00079_defaulted_columns/ast.json deleted file mode 100644 index b7f1451c0d..0000000000 --- a/parser/testdata/00079_defaulted_columns/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaulted (children 1)" - }, - { - "explain": " Identifier defaulted" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001405023, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00080_array_join_and_union/ast.json b/parser/testdata/00080_array_join_and_union/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00080_array_join_and_union/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00080_show_tables_and_system_tables/ast.json b/parser/testdata/00080_show_tables_and_system_tables/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00080_show_tables_and_system_tables/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00081_group_by_without_key_and_totals/ast.json b/parser/testdata/00081_group_by_without_key_and_totals/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00081_group_by_without_key_and_totals/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00081_int_div_or_zero/ast.json b/parser/testdata/00081_int_div_or_zero/ast.json deleted file mode 100644 index 0420394a89..0000000000 --- a/parser/testdata/00081_int_div_or_zero/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function intDivOrZero (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.00133993, - "rows_read": 11, - "bytes_read": 413 - } -} diff --git a/parser/testdata/00082_append_trailing_char_if_absent/ast.json b/parser/testdata/00082_append_trailing_char_if_absent/ast.json deleted file mode 100644 index 0c50e82c20..0000000000 --- a/parser/testdata/00082_append_trailing_char_if_absent/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function appendTrailingCharIfAbsent (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal 'a'" - }, - { - "explain": " Literal ''" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001437679, - "rows_read": 11, - "bytes_read": 410 - } -} diff --git a/parser/testdata/00082_quantiles/ast.json b/parser/testdata/00082_quantiles/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00082_quantiles/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00083_array_filter/ast.json b/parser/testdata/00083_array_filter/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00083_array_filter/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00083_create_merge_tree_zookeeper_long/ast.json b/parser/testdata/00083_create_merge_tree_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00083_create_merge_tree_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00084_external_aggregation/ast.json b/parser/testdata/00084_external_aggregation/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00084_external_aggregation/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00084_summing_merge_tree/ast.json b/parser/testdata/00084_summing_merge_tree/ast.json deleted file mode 100644 index 9edfedafc5..0000000000 --- a/parser/testdata/00084_summing_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery summing_merge_tree (children 1)" - }, - { - "explain": " Identifier summing_merge_tree" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001707273, - "rows_read": 2, - "bytes_read": 88 - } -} diff --git a/parser/testdata/00085_monotonic_evaluation_segfault/ast.json b/parser/testdata/00085_monotonic_evaluation_segfault/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00085_monotonic_evaluation_segfault/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00085_visible_width_of_tuple_of_dates/ast.json b/parser/testdata/00085_visible_width_of_tuple_of_dates/ast.json deleted file mode 100644 index 3af39a45c9..0000000000 --- a/parser/testdata/00085_visible_width_of_tuple_of_dates/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001378178, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00086_array_reduce/ast.json b/parser/testdata/00086_array_reduce/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00086_array_reduce/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00086_concat_nary_const_with_nonconst_segfault/ast.json b/parser/testdata/00086_concat_nary_const_with_nonconst_segfault/ast.json deleted file mode 100644 index 5afd0a44cd..0000000000 --- a/parser/testdata/00086_concat_nary_const_with_nonconst_segfault/ast.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 5)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function extract (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal '10000000'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers_mt" - }, - { - "explain": " Function like (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '1'" - }, - { - "explain": " Literal '...'" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal '%10000000%'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Set" - } - ], - - "rows": 28, - - "statistics": - { - "elapsed": 0.00151657, - "rows_read": 28, - "bytes_read": 1064 - } -} diff --git a/parser/testdata/00087_distinct_of_empty_arrays/ast.json b/parser/testdata/00087_distinct_of_empty_arrays/ast.json deleted file mode 100644 index 9eaffa9c09..0000000000 --- a/parser/testdata/00087_distinct_of_empty_arrays/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function emptyArrayString (alias k) (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100000" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001132819, - "rows_read": 20, - "bytes_read": 856 - } -} diff --git a/parser/testdata/00087_math_functions/ast.json b/parser/testdata/00087_math_functions/ast.json deleted file mode 100644 index 562facca08..0000000000 --- a/parser/testdata/00087_math_functions/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function abs (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001423657, - "rows_read": 10, - "bytes_read": 372 - } -} diff --git a/parser/testdata/00087_where_0/ast.json b/parser/testdata/00087_where_0/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00087_where_0/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00088_distinct_of_arrays_of_strings/ast.json b/parser/testdata/00088_distinct_of_arrays_of_strings/ast.json deleted file mode 100644 index c55b90323c..0000000000 --- a/parser/testdata/00088_distinct_of_arrays_of_strings/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayFilter (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function notEmpty (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[''], Array_['is_registred'], Array_['registration_month', 'user_login', 'is_registred'], Array_['is_registred'], Array_['is_registred'], Array_['']]" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001710018, - "rows_read": 17, - "bytes_read": 828 - } -} diff --git a/parser/testdata/00088_global_in_one_shard_and_rows_before_limit/ast.json b/parser/testdata/00088_global_in_one_shard_and_rows_before_limit/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00088_global_in_one_shard_and_rows_before_limit/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00089_group_by_arrays_of_fixed/ast.json b/parser/testdata/00089_group_by_arrays_of_fixed/ast.json deleted file mode 100644 index de2d4f5f6f..0000000000 --- a/parser/testdata/00089_group_by_arrays_of_fixed/ast.json +++ /dev/null @@ -1,220 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " Function count (alias c) (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (alias arr) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function arraySort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10000" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_12379813738877118345" - }, - { - "explain": " Literal UInt64_1234" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier c" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier arr" - } - ], - - "rows": 66, - - "statistics": - { - "elapsed": 0.001915992, - "rows_read": 66, - "bytes_read": 3001 - } -} diff --git a/parser/testdata/00089_position_functions_with_non_constant_arg/ast.json b/parser/testdata/00089_position_functions_with_non_constant_arg/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00089_position_functions_with_non_constant_arg/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00091_prewhere_two_conditions/ast.json b/parser/testdata/00091_prewhere_two_conditions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00091_prewhere_two_conditions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00093_prewhere_array_join/ast.json b/parser/testdata/00093_prewhere_array_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00093_prewhere_array_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00094_order_by_array_join_limit/ast.json b/parser/testdata/00094_order_by_array_join_limit/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00094_order_by_array_join_limit/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00095_hyperscan_profiler/ast.json b/parser/testdata/00095_hyperscan_profiler/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00095_hyperscan_profiler/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00096_aggregation_min_if/ast.json b/parser/testdata/00096_aggregation_min_if/ast.json deleted file mode 100644 index 7037d05956..0000000000 --- a/parser/testdata/00096_aggregation_min_if/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery min_if (children 1)" - }, - { - "explain": " Identifier min_if" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001414911, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00097_constexpr_in_index/ast.json b/parser/testdata/00097_constexpr_in_index/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00097_constexpr_in_index/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00098_1_union_all/ast.json b/parser/testdata/00098_1_union_all/ast.json deleted file mode 100644 index 98529a6d59..0000000000 --- a/parser/testdata/00098_1_union_all/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data2013 (children 1)" - }, - { - "explain": " Identifier data2013" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001737411, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00098_2_union_all/ast.json b/parser/testdata/00098_2_union_all/ast.json deleted file mode 100644 index 43d9c4042e..0000000000 --- a/parser/testdata/00098_2_union_all/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data2013 (children 1)" - }, - { - "explain": " Identifier data2013" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00173964, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00098_3_union_all/ast.json b/parser/testdata/00098_3_union_all/ast.json deleted file mode 100644 index d23b00f60c..0000000000 --- a/parser/testdata/00098_3_union_all/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data2013 (children 1)" - }, - { - "explain": " Identifier data2013" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00165358, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00098_4_union_all/ast.json b/parser/testdata/00098_4_union_all/ast.json deleted file mode 100644 index 99a69ee5f8..0000000000 --- a/parser/testdata/00098_4_union_all/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data2013 (children 1)" - }, - { - "explain": " Identifier data2013" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001297648, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00098_5_union_all/ast.json b/parser/testdata/00098_5_union_all/ast.json deleted file mode 100644 index 72eb6461bb..0000000000 --- a/parser/testdata/00098_5_union_all/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data2013 (children 1)" - }, - { - "explain": " Identifier data2013" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001675555, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00098_6_union_all/ast.json b/parser/testdata/00098_6_union_all/ast.json deleted file mode 100644 index e11128a177..0000000000 --- a/parser/testdata/00098_6_union_all/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier X" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3 (alias X)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2 (alias X)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias X)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier X" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001663114, - "rows_read": 23, - "bytes_read": 929 - } -} diff --git a/parser/testdata/00098_7_union_all/ast.json b/parser/testdata/00098_7_union_all/ast.json deleted file mode 100644 index cc8c0a3ddb..0000000000 --- a/parser/testdata/00098_7_union_all/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier DomainID" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias DomainID)" - }, - { - "explain": " Literal 'abc' (alias Domain)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2 (alias DomainID)" - }, - { - "explain": " Literal 'def' (alias Domain)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier DomainID" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.00138631, - "rows_read": 22, - "bytes_read": 920 - } -} diff --git a/parser/testdata/00098_8_union_all/ast.json b/parser/testdata/00098_8_union_all/ast.json deleted file mode 100644 index 6895ad03aa..0000000000 --- a/parser/testdata/00098_8_union_all/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier DomainID" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias DomainID)" - }, - { - "explain": " Literal 'abc' (alias Domain)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2 (alias DomainID)" - }, - { - "explain": " Literal 'def' (alias Domain)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier DomainID" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001707809, - "rows_read": 22, - "bytes_read": 920 - } -} diff --git a/parser/testdata/00098_9_union_all/ast.json b/parser/testdata/00098_9_union_all/ast.json deleted file mode 100644 index 30f2f7047c..0000000000 --- a/parser/testdata/00098_9_union_all/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001275369, - "rows_read": 20, - "bytes_read": 778 - } -} diff --git a/parser/testdata/00098_a_union_all/ast.json b/parser/testdata/00098_a_union_all/ast.json deleted file mode 100644 index 04217343b8..0000000000 --- a/parser/testdata/00098_a_union_all/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias X)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier X" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001347603, - "rows_read": 20, - "bytes_read": 784 - } -} diff --git a/parser/testdata/00098_b_union_all/ast.json b/parser/testdata/00098_b_union_all/ast.json deleted file mode 100644 index 34b20cd124..0000000000 --- a/parser/testdata/00098_b_union_all/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias X)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3 (alias X)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier X" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001355924, - "rows_read": 23, - "bytes_read": 915 - } -} diff --git a/parser/testdata/00098_c_union_all/ast.json b/parser/testdata/00098_c_union_all/ast.json deleted file mode 100644 index 0369aaa263..0000000000 --- a/parser/testdata/00098_c_union_all/ast.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier X" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_12345678901 (alias X)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier X" - } - ], - - "rows": 28, - - "statistics": - { - "elapsed": 0.001903549, - "rows_read": 28, - "bytes_read": 1151 - } -} diff --git a/parser/testdata/00098_d_union_all/ast.json b/parser/testdata/00098_d_union_all/ast.json deleted file mode 100644 index 33ac780a78..0000000000 --- a/parser/testdata/00098_d_union_all/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data2013 (children 1)" - }, - { - "explain": " Identifier data2013" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001605407, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00098_e_union_all/ast.json b/parser/testdata/00098_e_union_all/ast.json deleted file mode 100644 index 84329ccd94..0000000000 --- a/parser/testdata/00098_e_union_all/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data2013 (children 1)" - }, - { - "explain": " Identifier data2013" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001314075, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00098_f_union_all/ast.json b/parser/testdata/00098_f_union_all/ast.json deleted file mode 100644 index 8df414a1a0..0000000000 --- a/parser/testdata/00098_f_union_all/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data2013 (children 1)" - }, - { - "explain": " Identifier data2013" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001331943, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00098_g_union_all/ast.json b/parser/testdata/00098_g_union_all/ast.json deleted file mode 100644 index 9648bd958e..0000000000 --- a/parser/testdata/00098_g_union_all/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier X" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias X)" - }, - { - "explain": " Literal UInt64_2 (alias Y)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier X" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001497911, - "rows_read": 31, - "bytes_read": 1312 - } -} diff --git a/parser/testdata/00098_h_union_all/ast.json b/parser/testdata/00098_h_union_all/ast.json deleted file mode 100644 index d7dece9267..0000000000 --- a/parser/testdata/00098_h_union_all/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier X" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias X)" - }, - { - "explain": " Literal UInt64_2 (alias Y)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier X" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001494377, - "rows_read": 31, - "bytes_read": 1312 - } -} diff --git a/parser/testdata/00098_j_union_all/ast.json b/parser/testdata/00098_j_union_all/ast.json deleted file mode 100644 index 779409d5af..0000000000 --- a/parser/testdata/00098_j_union_all/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " Literal Int64_-1 (alias x)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Int64_-1]" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.001441956, - "rows_read": 21, - "bytes_read": 869 - } -} diff --git a/parser/testdata/00098_k_union_all/ast.json b/parser/testdata/00098_k_union_all/ast.json deleted file mode 100644 index d15653ba9c..0000000000 --- a/parser/testdata/00098_k_union_all/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001286558, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00098_l_union_all/ast.json b/parser/testdata/00098_l_union_all/ast.json deleted file mode 100644 index a2844c2801..0000000000 --- a/parser/testdata/00098_l_union_all/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001406797, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00098_primary_key_memory_allocated/ast.json b/parser/testdata/00098_primary_key_memory_allocated/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00098_primary_key_memory_allocated/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00098_shard_i_union_all/ast.json b/parser/testdata/00098_shard_i_union_all/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00098_shard_i_union_all/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00099_join_many_blocks_segfault/ast.json b/parser/testdata/00099_join_many_blocks_segfault/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00099_join_many_blocks_segfault/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00101_materialized_views_and_insert_without_explicit_database/ast.json b/parser/testdata/00101_materialized_views_and_insert_without_explicit_database/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00101_materialized_views_and_insert_without_explicit_database/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00102_insert_into_temporary_table/ast.json b/parser/testdata/00102_insert_into_temporary_table/ast.json deleted file mode 100644 index 9b277cb9c2..0000000000 --- a/parser/testdata/00102_insert_into_temporary_table/ast.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery t (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration a (children 1)" - }, - { - "explain": " DataType UInt8" - } - ], - - "rows": 6, - - "statistics": - { - "elapsed": 0.001499569, - "rows_read": 6, - "bytes_read": 201 - } -} diff --git a/parser/testdata/00103_ipv4_num_to_string_class_c/ast.json b/parser/testdata/00103_ipv4_num_to_string_class_c/ast.json deleted file mode 100644 index 78e0d5aa65..0000000000 --- a/parser/testdata/00103_ipv4_num_to_string_class_c/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function IPv4NumToStringClassC (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUInt32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal '0.0.0.xxx'" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001519302, - "rows_read": 12, - "bytes_read": 485 - } -} diff --git a/parser/testdata/00104_totals_having_mode/ast.json b/parser/testdata/00104_totals_having_mode/ast.json deleted file mode 100644 index 302f3f5dcd..0000000000 --- a/parser/testdata/00104_totals_having_mode/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001202442, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00105_shard_collations/ast.json b/parser/testdata/00105_shard_collations/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00105_shard_collations/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00106_totals_after_having/ast.json b/parser/testdata/00106_totals_after_having/ast.json deleted file mode 100644 index 7c5b5b83aa..0000000000 --- a/parser/testdata/00106_totals_after_having/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001554128, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00107_totals_after_having/ast.json b/parser/testdata/00107_totals_after_having/ast.json deleted file mode 100644 index f3d407d7b4..0000000000 --- a/parser/testdata/00107_totals_after_having/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '*** In-memory aggregation.'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.00134825, - "rows_read": 5, - "bytes_read": 197 - } -} diff --git a/parser/testdata/00108_shard_totals_after_having/ast.json b/parser/testdata/00108_shard_totals_after_having/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00108_shard_totals_after_having/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00109_shard_totals_after_having/ast.json b/parser/testdata/00109_shard_totals_after_having/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00109_shard_totals_after_having/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00110_external_sort/ast.json b/parser/testdata/00110_external_sort/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00110_external_sort/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00111_shard_external_sort_distributed/ast.json b/parser/testdata/00111_shard_external_sort_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00111_shard_external_sort_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00112_shard_totals_after_having/ast.json b/parser/testdata/00112_shard_totals_after_having/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00112_shard_totals_after_having/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00113_shard_group_array/ast.json b/parser/testdata/00113_shard_group_array/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00113_shard_group_array/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00114_float_type_result_of_division/ast.json b/parser/testdata/00114_float_type_result_of_division/ast.json deleted file mode 100644 index bcf94d0c75..0000000000 --- a/parser/testdata/00114_float_type_result_of_division/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001324412, - "rows_read": 8, - "bytes_read": 290 - } -} diff --git a/parser/testdata/00116_storage_set/ast.json b/parser/testdata/00116_storage_set/ast.json deleted file mode 100644 index b0c08336ba..0000000000 --- a/parser/testdata/00116_storage_set/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery set (children 1)" - }, - { - "explain": " Identifier set" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001411852, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00117_parsing_arrays/ast.json b/parser/testdata/00117_parsing_arrays/ast.json deleted file mode 100644 index b88dc5093b..0000000000 --- a/parser/testdata/00117_parsing_arrays/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery null_00117 (children 1)" - }, - { - "explain": " Identifier null_00117" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001315241, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00118_storage_join/ast.json b/parser/testdata/00118_storage_join/ast.json deleted file mode 100644 index 748c9b02fe..0000000000 --- a/parser/testdata/00118_storage_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t2 (children 1)" - }, - { - "explain": " Identifier t2" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001098526, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00119_storage_join/ast.json b/parser/testdata/00119_storage_join/ast.json deleted file mode 100644 index 83a35c033f..0000000000 --- a/parser/testdata/00119_storage_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t2 (children 1)" - }, - { - "explain": " Identifier t2" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001292329, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00120_join_and_group_by/ast.json b/parser/testdata/00120_join_and_group_by/ast.json deleted file mode 100644 index 11ae71db11..0000000000 --- a/parser/testdata/00120_join_and_group_by/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier value" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias js2) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " Identifier dummy (alias value)" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier value" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001038523, - "rows_read": 23, - "bytes_read": 925 - } -} diff --git a/parser/testdata/00121_drop_column_zookeeper/ast.json b/parser/testdata/00121_drop_column_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00121_drop_column_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00122_join_with_subquery_with_subquery/ast.json b/parser/testdata/00122_join_with_subquery_with_subquery/ast.json deleted file mode 100644 index f4fcd73b37..0000000000 --- a/parser/testdata/00122_join_with_subquery_with_subquery/ast.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias js1) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias k)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias js2) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias k)" - }, - { - "explain": " Literal UInt64_2 (alias x)" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - } - ], - - "rows": 39, - - "statistics": - { - "elapsed": 0.001389967, - "rows_read": 39, - "bytes_read": 1737 - } -} diff --git a/parser/testdata/00123_shard_unmerged_result_when_max_distributed_connections_is_one/ast.json b/parser/testdata/00123_shard_unmerged_result_when_max_distributed_connections_is_one/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00123_shard_unmerged_result_when_max_distributed_connections_is_one/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00124_shard_distributed_with_many_replicas/ast.json b/parser/testdata/00124_shard_distributed_with_many_replicas/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00124_shard_distributed_with_many_replicas/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00125_array_element_of_array_of_tuple/ast.json b/parser/testdata/00125_array_element_of_array_of_tuple/ast.json deleted file mode 100644 index b46ad6ea95..0000000000 --- a/parser/testdata/00125_array_element_of_array_of_tuple/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function groupArray (alias b) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function arrayElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier b" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_2) (alias a)" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001353601, - "rows_read": 20, - "bytes_read": 821 - } -} diff --git a/parser/testdata/00126_buffer/ast.json b/parser/testdata/00126_buffer/ast.json deleted file mode 100644 index e0e8840812..0000000000 --- a/parser/testdata/00126_buffer/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery buffer_00126 (children 1)" - }, - { - "explain": " Identifier buffer_00126" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001616746, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/00127_group_by_concat/ast.json b/parser/testdata/00127_group_by_concat/ast.json deleted file mode 100644 index 7714669e61..0000000000 --- a/parser/testdata/00127_group_by_concat/ast.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function materialize (alias k1) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Function modulo (alias k2) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_123" - }, - { - "explain": " Function count (alias c) (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier k1" - }, - { - "explain": " Identifier k2" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k1" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k2" - } - ], - - "rows": 35, - - "statistics": - { - "elapsed": 0.001605652, - "rows_read": 35, - "bytes_read": 1373 - } -} diff --git a/parser/testdata/00128_group_by_number_and_fixed_string/ast.json b/parser/testdata/00128_group_by_number_and_fixed_string/ast.json deleted file mode 100644 index 4140c17962..0000000000 --- a/parser/testdata/00128_group_by_number_and_fixed_string/ast.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 5)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " Identifier k" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number (alias n)" - }, - { - "explain": " Function toFixedString (alias k) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal ' '" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100000" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 35, - - "statistics": - { - "elapsed": 0.00133295, - "rows_read": 35, - "bytes_read": 1403 - } -} diff --git a/parser/testdata/00129_quantile_timing_weighted/ast.json b/parser/testdata/00129_quantile_timing_weighted/ast.json deleted file mode 100644 index 0090ce6bd4..0000000000 --- a/parser/testdata/00129_quantile_timing_weighted/ast.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function medianTiming (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Function medianTimingWeighted (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Identifier w" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number (alias t)" - }, - { - "explain": " Function if (alias w) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_77" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100" - } - ], - - "rows": 33, - - "statistics": - { - "elapsed": 0.001560945, - "rows_read": 33, - "bytes_read": 1396 - } -} diff --git a/parser/testdata/00131_set_hashed/ast.json b/parser/testdata/00131_set_hashed/ast.json deleted file mode 100644 index 20b94b43b7..0000000000 --- a/parser/testdata/00131_set_hashed/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(UInt64_1, '')" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_(UInt64_1, '')" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001410162, - "rows_read": 10, - "bytes_read": 394 - } -} diff --git a/parser/testdata/00132_sets/ast.json b/parser/testdata/00132_sets/ast.json deleted file mode 100644 index 12a35006ee..0000000000 --- a/parser/testdata/00132_sets/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_2, UInt64_3)" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001250125, - "rows_read": 8, - "bytes_read": 313 - } -} diff --git a/parser/testdata/00134_aggregation_by_fixed_string_of_size_1_2_4_8/ast.json b/parser/testdata/00134_aggregation_by_fixed_string_of_size_1_2_4_8/ast.json deleted file mode 100644 index 92542d1493..0000000000 --- a/parser/testdata/00134_aggregation_by_fixed_string_of_size_1_2_4_8/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function materialize (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001277864, - "rows_read": 16, - "bytes_read": 630 - } -} diff --git a/parser/testdata/00135_duplicate_group_by_keys_segfault/ast.json b/parser/testdata/00135_duplicate_group_by_keys_segfault/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00135_duplicate_group_by_keys_segfault/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00136_duplicate_order_by_elems/ast.json b/parser/testdata/00136_duplicate_order_by_elems/ast.json deleted file mode 100644 index 98d10f568a..0000000000 --- a/parser/testdata/00136_duplicate_order_by_elems/ast.json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 5)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number (alias n)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000000" - }, - { - "explain": " ExpressionList (children 10)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " Literal UInt64_1000000" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 42, - - "statistics": - { - "elapsed": 0.001460118, - "rows_read": 42, - "bytes_read": 1552 - } -} diff --git a/parser/testdata/00137_in_constants/ast.json b/parser/testdata/00137_in_constants/ast.json deleted file mode 100644 index 3daaca986e..0000000000 --- a/parser/testdata/00137_in_constants/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001117574, - "rows_read": 13, - "bytes_read": 502 - } -} diff --git a/parser/testdata/00138_table_aliases/ast.json b/parser/testdata/00138_table_aliases/ast.json deleted file mode 100644 index b5208927ce..0000000000 --- a/parser/testdata/00138_table_aliases/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one (alias xxx)" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001545894, - "rows_read": 9, - "bytes_read": 356 - } -} diff --git a/parser/testdata/00139_like/ast.json b/parser/testdata/00139_like/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00139_like/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00140_parse_unix_timestamp_as_datetime/ast.json b/parser/testdata/00140_parse_unix_timestamp_as_datetime/ast.json deleted file mode 100644 index 0994994e6f..0000000000 --- a/parser/testdata/00140_parse_unix_timestamp_as_datetime/ast.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function min (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier ts" - }, - { - "explain": " Function toUInt32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier ts" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (alias ts) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1000000000" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1234" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000000" - } - ], - - "rows": 36, - - "statistics": - { - "elapsed": 0.001993259, - "rows_read": 36, - "bytes_read": 1583 - } -} diff --git a/parser/testdata/00140_prewhere_column_order/ast.json b/parser/testdata/00140_prewhere_column_order/ast.json deleted file mode 100644 index 37de32c2d2..0000000000 --- a/parser/testdata/00140_prewhere_column_order/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery prewhere (children 1)" - }, - { - "explain": " Identifier prewhere" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001746558, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00140_rename/ast.json b/parser/testdata/00140_rename/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00140_rename/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00141_parse_timestamp_as_datetime/ast.json b/parser/testdata/00141_parse_timestamp_as_datetime/ast.json deleted file mode 100644 index beda012eb3..0000000000 --- a/parser/testdata/00141_parse_timestamp_as_datetime/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery default (children 1)" - }, - { - "explain": " Identifier default" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001266263, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00141_transform/ast.json b/parser/testdata/00141_transform/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00141_transform/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00142_parse_timestamp_as_datetime/ast.json b/parser/testdata/00142_parse_timestamp_as_datetime/ast.json deleted file mode 100644 index 60bebd64f3..0000000000 --- a/parser/testdata/00142_parse_timestamp_as_datetime/ast.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function min (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier ts" - }, - { - "explain": " Function toUInt32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier ts" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (alias ts) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1000000000" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1234" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000000" - } - ], - - "rows": 36, - - "statistics": - { - "elapsed": 0.001489795, - "rows_read": 36, - "bytes_read": 1583 - } -} diff --git a/parser/testdata/00142_system_columns/ast.json b/parser/testdata/00142_system_columns/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00142_system_columns/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00143_number_classification_functions/ast.json b/parser/testdata/00143_number_classification_functions/ast.json deleted file mode 100644 index b98eb93cda..0000000000 --- a/parser/testdata/00143_number_classification_functions/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function isFinite (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001493776, - "rows_read": 10, - "bytes_read": 377 - } -} diff --git a/parser/testdata/00143_transform_non_const_default/ast.json b/parser/testdata/00143_transform_non_const_default/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00143_transform_non_const_default/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00144_empty_regexp/ast.json b/parser/testdata/00144_empty_regexp/ast.json deleted file mode 100644 index 2bb2e4269c..0000000000 --- a/parser/testdata/00144_empty_regexp/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function match (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'Hello'" - }, - { - "explain": " Literal ''" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001679196, - "rows_read": 10, - "bytes_read": 372 - } -} diff --git a/parser/testdata/00144_functions_of_aggregation_states/ast.json b/parser/testdata/00144_functions_of_aggregation_states/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00144_functions_of_aggregation_states/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00145_aggregate_functions_statistics/ast.json b/parser/testdata/00145_aggregate_functions_statistics/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00145_aggregate_functions_statistics/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00145_empty_likes/ast.json b/parser/testdata/00145_empty_likes/ast.json deleted file mode 100644 index 658e9c082f..0000000000 --- a/parser/testdata/00145_empty_likes/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function like (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'Hello'" - }, - { - "explain": " Literal ''" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001571979, - "rows_read": 10, - "bytes_read": 371 - } -} diff --git a/parser/testdata/00146_aggregate_function_uniq/ast.json b/parser/testdata/00146_aggregate_function_uniq/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00146_aggregate_function_uniq/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00146_summing_merge_tree_nested_map/ast.json b/parser/testdata/00146_summing_merge_tree_nested_map/ast.json deleted file mode 100644 index ec6a2d9428..0000000000 --- a/parser/testdata/00146_summing_merge_tree_nested_map/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nested_map (children 1)" - }, - { - "explain": " Identifier nested_map" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001640452, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00147_alter_nested_default/ast.json b/parser/testdata/00147_alter_nested_default/ast.json deleted file mode 100644 index e71da578ce..0000000000 --- a/parser/testdata/00147_alter_nested_default/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery alter_00147 (children 1)" - }, - { - "explain": " Identifier alter_00147" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001528869, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00147_global_in_aggregate_function/ast.json b/parser/testdata/00147_global_in_aggregate_function/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00147_global_in_aggregate_function/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00148_monotonic_functions_and_index/ast.json b/parser/testdata/00148_monotonic_functions_and_index/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00148_monotonic_functions_and_index/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00148_summing_merge_tree_aggregate_function/ast.json b/parser/testdata/00148_summing_merge_tree_aggregate_function/ast.json deleted file mode 100644 index 6caa502b20..0000000000 --- a/parser/testdata/00148_summing_merge_tree_aggregate_function/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery summing_merge_tree_aggregate_function (children 1)" - }, - { - "explain": " Identifier summing_merge_tree_aggregate_function" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001631913, - "rows_read": 2, - "bytes_read": 126 - } -} diff --git a/parser/testdata/00148_summing_merge_tree_nested_map_multiple_values/ast.json b/parser/testdata/00148_summing_merge_tree_nested_map_multiple_values/ast.json deleted file mode 100644 index ef1ea25208..0000000000 --- a/parser/testdata/00148_summing_merge_tree_nested_map_multiple_values/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nested_map_multiple_values (children 1)" - }, - { - "explain": " Identifier nested_map_multiple_values" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.0011313, - "rows_read": 2, - "bytes_read": 104 - } -} diff --git a/parser/testdata/00149_function_url_hash/ast.json b/parser/testdata/00149_function_url_hash/ast.json deleted file mode 100644 index 922b841ca7..0000000000 --- a/parser/testdata/00149_function_url_hash/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function URLHash (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '' (alias url)" - }, - { - "explain": " Function URLHash (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function appendTrailingCharIfAbsent (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier url" - }, - { - "explain": " Literal '\/'" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001484711, - "rows_read": 15, - "bytes_read": 606 - } -} diff --git a/parser/testdata/00149_quantiles_timing_distributed/ast.json b/parser/testdata/00149_quantiles_timing_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00149_quantiles_timing_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00150_quantiles_timing_precision/ast.json b/parser/testdata/00150_quantiles_timing_precision/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00150_quantiles_timing_precision/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00150_with_totals_and_join/ast.json b/parser/testdata/00150_with_totals_and_join/ast.json deleted file mode 100644 index 79f1f59350..0000000000 --- a/parser/testdata/00150_with_totals_and_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001104156, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00151_order_by_read_in_order/ast.json b/parser/testdata/00151_order_by_read_in_order/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00151_order_by_read_in_order/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00151_tuple_with_array/ast.json b/parser/testdata/00151_tuple_with_array/ast.json deleted file mode 100644 index 174b94c2ca..0000000000 --- a/parser/testdata/00151_tuple_with_array/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Array_[UInt64_1]" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001263563, - "rows_read": 8, - "bytes_read": 296 - } -} diff --git a/parser/testdata/00152_insert_different_granularity/ast.json b/parser/testdata/00152_insert_different_granularity/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00152_insert_different_granularity/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00152_totals_in_subquery/ast.json b/parser/testdata/00152_totals_in_subquery/ast.json deleted file mode 100644 index f84c5f1716..0000000000 --- a/parser/testdata/00152_totals_in_subquery/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier dummy" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001543843, - "rows_read": 20, - "bytes_read": 805 - } -} diff --git a/parser/testdata/00153_aggregate_arena_race/ast.json b/parser/testdata/00153_aggregate_arena_race/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00153_aggregate_arena_race/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00153_transform/ast.json b/parser/testdata/00153_transform/ast.json deleted file mode 100644 index 3d1232ccfc..0000000000 --- a/parser/testdata/00153_transform/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function transform (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal Array_[UInt64_3, UInt64_5, UInt64_7]" - }, - { - "explain": " Literal Array_[UInt64_111, UInt64_222, UInt64_333]" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001119986, - "rows_read": 14, - "bytes_read": 592 - } -} diff --git a/parser/testdata/00154_avro/ast.json b/parser/testdata/00154_avro/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00154_avro/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00154_shard_distributed_with_distinct/ast.json b/parser/testdata/00154_shard_distributed_with_distinct/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00154_shard_distributed_with_distinct/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00156_array_map_to_constant/ast.json b/parser/testdata/00156_array_map_to_constant/ast.json deleted file mode 100644 index fb8f5a1181..0000000000 --- a/parser/testdata/00156_array_map_to_constant/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Array_[UInt64_2]" - }, - { - "explain": " Literal UInt64_123 (alias y)" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001584423, - "rows_read": 14, - "bytes_read": 542 - } -} diff --git a/parser/testdata/00156_max_execution_speed_sample_merge/ast.json b/parser/testdata/00156_max_execution_speed_sample_merge/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00156_max_execution_speed_sample_merge/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00157_aliases_and_lambda_formal_parameters/ast.json b/parser/testdata/00157_aliases_and_lambda_formal_parameters/ast.json deleted file mode 100644 index 1b7703a784..0000000000 --- a/parser/testdata/00157_aliases_and_lambda_formal_parameters/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Array_[UInt64_2]" - }, - { - "explain": " Literal UInt64_123 (alias x)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001315224, - "rows_read": 18, - "bytes_read": 676 - } -} diff --git a/parser/testdata/00157_cache_dictionary/ast.json b/parser/testdata/00157_cache_dictionary/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00157_cache_dictionary/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00158_buffer_and_nonexistent_table/ast.json b/parser/testdata/00158_buffer_and_nonexistent_table/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00158_buffer_and_nonexistent_table/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00158_cache_dictionary_has/ast.json b/parser/testdata/00158_cache_dictionary_has/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00158_cache_dictionary_has/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00159_whitespace_in_columns_list/ast.json b/parser/testdata/00159_whitespace_in_columns_list/ast.json deleted file mode 100644 index 354f069613..0000000000 --- a/parser/testdata/00159_whitespace_in_columns_list/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery memory (children 1)" - }, - { - "explain": " Identifier memory" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001406108, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00160_decode_xml_component/ast.json b/parser/testdata/00160_decode_xml_component/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00160_decode_xml_component/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00160_merge_and_index_in_in/ast.json b/parser/testdata/00160_merge_and_index_in_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00160_merge_and_index_in_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00161_rounding_functions/ast.json b/parser/testdata/00161_rounding_functions/ast.json deleted file mode 100644 index bfe69ccc7b..0000000000 --- a/parser/testdata/00161_rounding_functions/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 6)" - }, - { - "explain": " Function toUInt8 (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function roundBankers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function floor (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function ceil (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function trunc (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_20" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001376699, - "rows_read": 27, - "bytes_read": 1009 - } -} diff --git a/parser/testdata/00162_mmap_compression_none/ast.json b/parser/testdata/00162_mmap_compression_none/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00162_mmap_compression_none/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00162_shard_global_join/ast.json b/parser/testdata/00162_shard_global_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00162_shard_global_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00163_shard_join_with_empty_table/ast.json b/parser/testdata/00163_shard_join_with_empty_table/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00163_shard_join_with_empty_table/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00164_not_chain/ast.json b/parser/testdata/00164_not_chain/ast.json deleted file mode 100644 index 87a351d67f..0000000000 --- a/parser/testdata/00164_not_chain/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function not (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001779737, - "rows_read": 7, - "bytes_read": 256 - } -} diff --git a/parser/testdata/00164_quantileBfloat16/ast.json b/parser/testdata/00164_quantileBfloat16/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00164_quantileBfloat16/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00165_jit_aggregate_functions/ast.json b/parser/testdata/00165_jit_aggregate_functions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00165_jit_aggregate_functions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00165_transform_non_const_default/ast.json b/parser/testdata/00165_transform_non_const_default/ast.json deleted file mode 100644 index 313ca88c0e..0000000000 --- a/parser/testdata/00165_transform_non_const_default/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function transform (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal Array_[UInt64_3, UInt64_5, UInt64_7]" - }, - { - "explain": " Literal Array_[UInt64_111, UInt64_222, UInt64_333]" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_9999" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001509685, - "rows_read": 17, - "bytes_read": 716 - } -} diff --git a/parser/testdata/00166_explain_estimate/ast.json b/parser/testdata/00166_explain_estimate/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00166_explain_estimate/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00166_functions_of_aggregation_states/ast.json b/parser/testdata/00166_functions_of_aggregation_states/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00166_functions_of_aggregation_states/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00167_read_bytes_from_fs/ast.json b/parser/testdata/00167_read_bytes_from_fs/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00167_read_bytes_from_fs/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00167_settings_inside_query/ast.json b/parser/testdata/00167_settings_inside_query/ast.json deleted file mode 100644 index d7c5160ea6..0000000000 --- a/parser/testdata/00167_settings_inside_query/ast.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function min (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toUInt64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1000" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function blockSize (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Set" - }, - { - "explain": " Set" - } - ], - - "rows": 32, - - "statistics": - { - "elapsed": 0.001880074, - "rows_read": 32, - "bytes_read": 1276 - } -} diff --git a/parser/testdata/00168_buffer_defaults/ast.json b/parser/testdata/00168_buffer_defaults/ast.json deleted file mode 100644 index 21a8a076d0..0000000000 --- a/parser/testdata/00168_buffer_defaults/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mt_00168 (children 1)" - }, - { - "explain": " Identifier mt_00168" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001194829, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00169_contingency/ast.json b/parser/testdata/00169_contingency/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00169_contingency/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00169_join_constant_keys/ast.json b/parser/testdata/00169_join_constant_keys/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00169_join_constant_keys/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00170_lower_upper_utf8/ast.json b/parser/testdata/00170_lower_upper_utf8/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00170_lower_upper_utf8/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00170_s3_cache/ast.json b/parser/testdata/00170_s3_cache/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00170_s3_cache/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00171_grouping_aggregated_transform_bug/ast.json b/parser/testdata/00171_grouping_aggregated_transform_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00171_grouping_aggregated_transform_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00171_shard_array_of_tuple_remote/ast.json b/parser/testdata/00171_shard_array_of_tuple_remote/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00171_shard_array_of_tuple_remote/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00172_constexprs_in_set/ast.json b/parser/testdata/00172_constexprs_in_set/ast.json deleted file mode 100644 index 6e078a0717..0000000000 --- a/parser/testdata/00172_constexprs_in_set/ast.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function sumIf (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function in (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Function toUInt64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '8'" - }, - { - "explain": " Literal ''" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 44, - - "statistics": - { - "elapsed": 0.002591436, - "rows_read": 44, - "bytes_read": 1897 - } -} diff --git a/parser/testdata/00172_early_constant_folding/ast.json b/parser/testdata/00172_early_constant_folding/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00172_early_constant_folding/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00173_compare_date_time_with_constant_string/ast.json b/parser/testdata/00173_compare_date_time_with_constant_string/ast.json deleted file mode 100644 index 1d6110dc6e..0000000000 --- a/parser/testdata/00173_compare_date_time_with_constant_string/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2015-02-03'" - }, - { - "explain": " Literal '2015-02-03'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001551051, - "rows_read": 10, - "bytes_read": 383 - } -} diff --git a/parser/testdata/00173_group_by_use_nulls/ast.json b/parser/testdata/00173_group_by_use_nulls/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00173_group_by_use_nulls/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00174_compare_date_time_with_constant_string_in_in/ast.json b/parser/testdata/00174_compare_date_time_with_constant_string_in_in/ast.json deleted file mode 100644 index 3c6abb3666..0000000000 --- a/parser/testdata/00174_compare_date_time_with_constant_string_in_in/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2015-02-05'" - }, - { - "explain": " Literal Tuple_('2015-02-04', '2015-02-05')" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001501417, - "rows_read": 10, - "bytes_read": 401 - } -} diff --git a/parser/testdata/00174_distinct_in_order/ast.json b/parser/testdata/00174_distinct_in_order/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00174_distinct_in_order/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00175_counting_resources_in_subqueries/ast.json b/parser/testdata/00175_counting_resources_in_subqueries/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00175_counting_resources_in_subqueries/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00175_if_num_arrays/ast.json b/parser/testdata/00175_if_num_arrays/ast.json deleted file mode 100644 index c254dd560d..0000000000 --- a/parser/testdata/00175_if_num_arrays/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (alias res) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - }, - { - "explain": " Literal Array_[UInt64_3, UInt64_4, UInt64_5]" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Identifier TabSeparatedWithNamesAndTypes" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001467315, - "rows_read": 18, - "bytes_read": 748 - } -} diff --git a/parser/testdata/00175_partition_by_ignore/ast.json b/parser/testdata/00175_partition_by_ignore/ast.json deleted file mode 100644 index 891a6598bf..0000000000 --- a/parser/testdata/00175_partition_by_ignore/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '-- check that partition key with ignore works correctly'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.00131956, - "rows_read": 5, - "bytes_read": 226 - } -} diff --git a/parser/testdata/00176_distinct_limit_by_limit_bug_43377/ast.json b/parser/testdata/00176_distinct_limit_by_limit_bug_43377/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00176_distinct_limit_by_limit_bug_43377/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00176_if_string_arrays/ast.json b/parser/testdata/00176_if_string_arrays/ast.json deleted file mode 100644 index e1d090f7b0..0000000000 --- a/parser/testdata/00176_if_string_arrays/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal Array_['Hello', 'World']" - }, - { - "explain": " Literal Array_['abc']" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001575281, - "rows_read": 17, - "bytes_read": 662 - } -} diff --git a/parser/testdata/00178_function_replicate/ast.json b/parser/testdata/00178_function_replicate/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00178_function_replicate/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00178_quantile_ddsketch/ast.json b/parser/testdata/00178_quantile_ddsketch/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00178_quantile_ddsketch/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00178_query_datetime64_index/ast.json b/parser/testdata/00178_query_datetime64_index/ast.json deleted file mode 100644 index 6ca71a104b..0000000000 --- a/parser/testdata/00178_query_datetime64_index/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery datetime64_index_tbl (children 1)" - }, - { - "explain": " Identifier datetime64_index_tbl" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001230579, - "rows_read": 2, - "bytes_read": 92 - } -} diff --git a/parser/testdata/00179_lambdas_with_common_expressions_and_filter/ast.json b/parser/testdata/00179_lambdas_with_common_expressions_and_filter/ast.json deleted file mode 100644 index 963e12f40b..0000000000 --- a/parser/testdata/00179_lambdas_with_common_expressions_and_filter/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function notEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Identifier arr" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001980497, - "rows_read": 20, - "bytes_read": 776 - } -} diff --git a/parser/testdata/00180_attach_materialized_view/ast.json b/parser/testdata/00180_attach_materialized_view/ast.json deleted file mode 100644 index 24a5cb9b47..0000000000 --- a/parser/testdata/00180_attach_materialized_view/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_00180 (children 1)" - }, - { - "explain": " Identifier t_00180" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001243763, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00181_aggregate_functions_statistics/ast.json b/parser/testdata/00181_aggregate_functions_statistics/ast.json deleted file mode 100644 index 9aecbd999d..0000000000 --- a/parser/testdata/00181_aggregate_functions_statistics/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001283953, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00181_aggregate_functions_statistics_stable/ast.json b/parser/testdata/00181_aggregate_functions_statistics_stable/ast.json deleted file mode 100644 index 49eefe3867..0000000000 --- a/parser/testdata/00181_aggregate_functions_statistics_stable/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00119492, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00181_cross_join_compression/ast.json b/parser/testdata/00181_cross_join_compression/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00181_cross_join_compression/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00182_functions_higher_order_and_consts/ast.json b/parser/testdata/00182_functions_higher_order_and_consts/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00182_functions_higher_order_and_consts/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00182_simple_squashing_transform_bug/ast.json b/parser/testdata/00182_simple_squashing_transform_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00182_simple_squashing_transform_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00183_prewhere_conditions_order/ast.json b/parser/testdata/00183_prewhere_conditions_order/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00183_prewhere_conditions_order/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00183_skip_unavailable_shards/ast.json b/parser/testdata/00183_skip_unavailable_shards/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00183_skip_unavailable_shards/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00184_shard_distributed_group_by_no_merge/ast.json b/parser/testdata/00184_shard_distributed_group_by_no_merge/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00184_shard_distributed_group_by_no_merge/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00185_array_literals/ast.json b/parser/testdata/00185_array_literals/ast.json deleted file mode 100644 index f72cdcb02f..0000000000 --- a/parser/testdata/00185_array_literals/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001388935, - "rows_read": 5, - "bytes_read": 195 - } -} diff --git a/parser/testdata/00187_like_regexp_prefix/ast.json b/parser/testdata/00187_like_regexp_prefix/ast.json deleted file mode 100644 index ba122b416f..0000000000 --- a/parser/testdata/00187_like_regexp_prefix/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function like (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'prepre_f'" - }, - { - "explain": " Literal '%pre_f%'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001062605, - "rows_read": 10, - "bytes_read": 381 - } -} diff --git a/parser/testdata/00188_constants_as_arguments_of_aggregate_functions/ast.json b/parser/testdata/00188_constants_as_arguments_of_aggregate_functions/ast.json deleted file mode 100644 index a3c68e281a..0000000000 --- a/parser/testdata/00188_constants_as_arguments_of_aggregate_functions/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function uniq (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_123" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.00143747, - "rows_read": 26, - "bytes_read": 1048 - } -} diff --git a/parser/testdata/00189_time_zones_long/ast.json b/parser/testdata/00189_time_zones_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00189_time_zones_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00190_non_constant_array_of_constant_data/ast.json b/parser/testdata/00190_non_constant_array_of_constant_data/ast.json deleted file mode 100644 index 5e503d66b0..0000000000 --- a/parser/testdata/00190_non_constant_array_of_constant_data/ast.json +++ /dev/null @@ -1,151 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayFilter (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function notEmpty (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " Literal Array_['']" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " ArrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_0] (alias elem)" - }, - { - "explain": " Function arrayMap (alias unused) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " Literal Array_['']" - }, - { - "explain": " Function not (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function ignore (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier elem" - } - ], - - "rows": 43, - - "statistics": - { - "elapsed": 0.001767069, - "rows_read": 43, - "bytes_read": 1774 - } -} diff --git a/parser/testdata/00191_aggregating_merge_tree_and_final/ast.json b/parser/testdata/00191_aggregating_merge_tree_and_final/ast.json deleted file mode 100644 index 9390aa77e7..0000000000 --- a/parser/testdata/00191_aggregating_merge_tree_and_final/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery aggregating_00191 (children 1)" - }, - { - "explain": " Identifier aggregating_00191" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001421653, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00192_least_greatest/ast.json b/parser/testdata/00192_least_greatest/ast.json deleted file mode 100644 index 4e326b2387..0000000000 --- a/parser/testdata/00192_least_greatest/ast.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " Literal UInt64_2 (alias y)" - }, - { - "explain": " Function least (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Function greatest (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Function least (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Function greatest (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Function greatest (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function least (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - } - ], - - "rows": 40, - - "statistics": - { - "elapsed": 0.001427949, - "rows_read": 40, - "bytes_read": 1476 - } -} diff --git a/parser/testdata/00193_parallel_replicas/ast.json b/parser/testdata/00193_parallel_replicas/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00193_parallel_replicas/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00194_identity/ast.json b/parser/testdata/00194_identity/ast.json deleted file mode 100644 index 95b0b4e85f..0000000000 --- a/parser/testdata/00194_identity/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function identity (alias b) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias a)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001419961, - "rows_read": 9, - "bytes_read": 329 - } -} diff --git a/parser/testdata/00195_shard_union_all_and_global_in/ast.json b/parser/testdata/00195_shard_union_all_and_global_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00195_shard_union_all_and_global_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00196_float32_formatting/ast.json b/parser/testdata/00196_float32_formatting/ast.json deleted file mode 100644 index f4000e0c39..0000000000 --- a/parser/testdata/00196_float32_formatting/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_21.99" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001077417, - "rows_read": 5, - "bytes_read": 182 - } -} diff --git a/parser/testdata/00197_if_fixed_string/ast.json b/parser/testdata/00197_if_fixed_string/ast.json deleted file mode 100644 index 8e5aade340..0000000000 --- a/parser/testdata/00197_if_fixed_string/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function negate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001037841, - "rows_read": 23, - "bytes_read": 909 - } -} diff --git a/parser/testdata/00198_group_by_empty_arrays/ast.json b/parser/testdata/00198_group_by_empty_arrays/ast.json deleted file mode 100644 index 658d4fb869..0000000000 --- a/parser/testdata/00198_group_by_empty_arrays/ast.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function range (alias k) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - } - ], - - "rows": 35, - - "statistics": - { - "elapsed": 0.001298021, - "rows_read": 35, - "bytes_read": 1435 - } -} diff --git a/parser/testdata/00199_ternary_operator_type_check/ast.json b/parser/testdata/00199_ternary_operator_type_check/ast.json deleted file mode 100644 index 9d7bf023e1..0000000000 --- a/parser/testdata/00199_ternary_operator_type_check/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'abc' (alias s)" - }, - { - "explain": " Literal 'def'" - }, - { - "explain": " Identifier s" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001293719, - "rows_read": 12, - "bytes_read": 435 - } -} diff --git a/parser/testdata/00200_shard_distinct_order_by_limit_distributed/ast.json b/parser/testdata/00200_shard_distinct_order_by_limit_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00200_shard_distinct_order_by_limit_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00201_array_uniq/ast.json b/parser/testdata/00201_array_uniq/ast.json deleted file mode 100644 index 4402c451e1..0000000000 --- a/parser/testdata/00201_array_uniq/ast.json +++ /dev/null @@ -1,235 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 7)" - }, - { - "explain": " Function uniqExact (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function length (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupUniqArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function arrayUniq (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function uniqExact (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Function arrayUniq (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Function uniqExact (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal '_'" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Function arrayUniq (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function groupArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function groupArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function round (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function log (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function intHash32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toString (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function cbrt (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function intHash32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10000" - } - ], - - "rows": 71, - - "statistics": - { - "elapsed": 0.001437678, - "rows_read": 71, - "bytes_read": 3015 - } -} diff --git a/parser/testdata/00202_cross_join/ast.json b/parser/testdata/00202_cross_join/ast.json deleted file mode 100644 index 88e42ba756..0000000000 --- a/parser/testdata/00202_cross_join/ast.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias js1) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number (alias x)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias js2) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number (alias y)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " TableJoin" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier y" - } - ], - - "rows": 39, - - "statistics": - { - "elapsed": 0.001393001, - "rows_read": 39, - "bytes_read": 1634 - } -} diff --git a/parser/testdata/00203_full_join/ast.json b/parser/testdata/00203_full_join/ast.json deleted file mode 100644 index 99adec2e22..0000000000 --- a/parser/testdata/00203_full_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001406852, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00204_extract_url_parameter/ast.json b/parser/testdata/00204_extract_url_parameter/ast.json deleted file mode 100644 index 8ab8b2612b..0000000000 --- a/parser/testdata/00204_extract_url_parameter/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function extractURLParameter (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'http:\/\/com\/?testq=aaa&q=111'" - }, - { - "explain": " Literal 'q'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001097699, - "rows_read": 8, - "bytes_read": 318 - } -} diff --git a/parser/testdata/00205_emptyscalar_subquery_type_mismatch_bug/ast.json b/parser/testdata/00205_emptyscalar_subquery_type_mismatch_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00205_emptyscalar_subquery_type_mismatch_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00205_scalar_subqueries/ast.json b/parser/testdata/00205_scalar_subqueries/ast.json deleted file mode 100644 index d8d71a48c5..0000000000 --- a/parser/testdata/00205_scalar_subqueries/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001247685, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00206_empty_array_to_single/ast.json b/parser/testdata/00206_empty_array_to_single/ast.json deleted file mode 100644 index d83e28a686..0000000000 --- a/parser/testdata/00206_empty_array_to_single/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function emptyArrayToSingle (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayFilter (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function notEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_99" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[UInt64_1, UInt64_2], Array_[UInt64_99], Array_[UInt64_4, UInt64_5, UInt64_6]]" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001253839, - "rows_read": 20, - "bytes_read": 913 - } -} diff --git a/parser/testdata/00207_left_array_join/ast.json b/parser/testdata/00207_left_array_join/ast.json deleted file mode 100644 index fae2d0a8bb..0000000000 --- a/parser/testdata/00207_left_array_join/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " ArrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function range (alias arr) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001090347, - "rows_read": 19, - "bytes_read": 770 - } -} diff --git a/parser/testdata/00208_agg_state_merge/ast.json b/parser/testdata/00208_agg_state_merge/ast.json deleted file mode 100644 index e320451be9..0000000000 --- a/parser/testdata/00208_agg_state_merge/ast.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function modulo (alias k2) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Literal UInt64_7" - }, - { - "explain": " Function finalizeAggregation (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniqMergeState (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier state" - }, - { - "explain": " Function uniqMerge (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier state" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Function uniqState (alias state) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (alias k) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_11" - }, - { - "explain": " Function intDiv (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_7" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k2" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k2" - } - ], - - "rows": 56, - - "statistics": - { - "elapsed": 0.001552654, - "rows_read": 56, - "bytes_read": 2486 - } -} diff --git a/parser/testdata/00209_insert_select_extremes/ast.json b/parser/testdata/00209_insert_select_extremes/ast.json deleted file mode 100644 index 39b4acadc0..0000000000 --- a/parser/testdata/00209_insert_select_extremes/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00209 (children 1)" - }, - { - "explain": " Identifier test_00209" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001170807, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00211_shard_query_formatting_aliases/ast.json b/parser/testdata/00211_shard_query_formatting_aliases/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00211_shard_query_formatting_aliases/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00212_long_shard_aggregate_function_uniq/ast.json b/parser/testdata/00212_long_shard_aggregate_function_uniq/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00212_long_shard_aggregate_function_uniq/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00213_multiple_global_in/ast.json b/parser/testdata/00213_multiple_global_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00213_multiple_global_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00214_primary_key_order/ast.json b/parser/testdata/00214_primary_key_order/ast.json deleted file mode 100644 index 52205bff48..0000000000 --- a/parser/testdata/00214_primary_key_order/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery primary_key (children 1)" - }, - { - "explain": " Identifier primary_key" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001383695, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00215_primary_key_order_zookeeper_long/ast.json b/parser/testdata/00215_primary_key_order_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00215_primary_key_order_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00216_bit_test_function_family/ast.json b/parser/testdata/00216_bit_test_function_family/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00216_bit_test_function_family/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00217_shard_global_subquery_columns_with_same_name/ast.json b/parser/testdata/00217_shard_global_subquery_columns_with_same_name/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00217_shard_global_subquery_columns_with_same_name/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00218_like_regexp_newline/ast.json b/parser/testdata/00218_like_regexp_newline/ast.json deleted file mode 100644 index 19f7a38b83..0000000000 --- a/parser/testdata/00218_like_regexp_newline/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function like (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'abcdef'" - }, - { - "explain": " Literal '%abc%def%'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001330811, - "rows_read": 8, - "bytes_read": 290 - } -} diff --git a/parser/testdata/00219_full_right_join_column_order/ast.json b/parser/testdata/00219_full_right_join_column_order/ast.json deleted file mode 100644 index ed42f7c76d..0000000000 --- a/parser/testdata/00219_full_right_join_column_order/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001313263, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00220_shard_with_totals_in_subquery_remote_and_limit/ast.json b/parser/testdata/00220_shard_with_totals_in_subquery_remote_and_limit/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00220_shard_with_totals_in_subquery_remote_and_limit/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00222_sequence_aggregate_function_family/ast.json b/parser/testdata/00222_sequence_aggregate_function_family/ast.json deleted file mode 100644 index aeafc7d942..0000000000 --- a/parser/testdata/00222_sequence_aggregate_function_family/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery sequence_test (children 1)" - }, - { - "explain": " Identifier sequence_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001320344, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/00223_shard_distributed_aggregation_memory_efficient/ast.json b/parser/testdata/00223_shard_distributed_aggregation_memory_efficient/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00223_shard_distributed_aggregation_memory_efficient/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00224_shard_distributed_aggregation_memory_efficient_and_overflows/ast.json b/parser/testdata/00224_shard_distributed_aggregation_memory_efficient_and_overflows/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00224_shard_distributed_aggregation_memory_efficient_and_overflows/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00225_join_duplicate_columns/ast.json b/parser/testdata/00225_join_duplicate_columns/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00225_join_duplicate_columns/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00226_zookeeper_deduplication_and_unexpected_parts_long/ast.json b/parser/testdata/00226_zookeeper_deduplication_and_unexpected_parts_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00226_zookeeper_deduplication_and_unexpected_parts_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00227_quantiles_timing_arbitrary_order/ast.json b/parser/testdata/00227_quantiles_timing_arbitrary_order/ast.json deleted file mode 100644 index 78a8f3576b..0000000000 --- a/parser/testdata/00227_quantiles_timing_arbitrary_order/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantilesTiming (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_0.5" - }, - { - "explain": " Literal Float64_0.9" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001732674, - "rows_read": 24, - "bytes_read": 1001 - } -} diff --git a/parser/testdata/00228_shard_quantiles_deterministic_merge_overflow/ast.json b/parser/testdata/00228_shard_quantiles_deterministic_merge_overflow/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00228_shard_quantiles_deterministic_merge_overflow/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00229_prewhere_column_missing/ast.json b/parser/testdata/00229_prewhere_column_missing/ast.json deleted file mode 100644 index a73dac3c9c..0000000000 --- a/parser/testdata/00229_prewhere_column_missing/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery prewhere_column_missing (children 1)" - }, - { - "explain": " Identifier prewhere_column_missing" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001278963, - "rows_read": 2, - "bytes_read": 98 - } -} diff --git a/parser/testdata/00230_array_functions_has_count_equal_index_of_non_const_second_arg/ast.json b/parser/testdata/00230_array_functions_has_count_equal_index_of_non_const_second_arg/ast.json deleted file mode 100644 index 9090585e34..0000000000 --- a/parser/testdata/00230_array_functions_has_count_equal_index_of_non_const_second_arg/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function has (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0 (alias x)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001408373, - "rows_read": 10, - "bytes_read": 377 - } -} diff --git a/parser/testdata/00231_format_vertical_raw/ast.json b/parser/testdata/00231_format_vertical_raw/ast.json deleted file mode 100644 index c29009e49c..0000000000 --- a/parser/testdata/00231_format_vertical_raw/ast.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'a\\tb\\nc\\td' (alias x)" - }, - { - "explain": " Identifier Vertical" - } - ], - - "rows": 6, - - "statistics": - { - "elapsed": 0.001220327, - "rows_read": 6, - "bytes_read": 219 - } -} diff --git a/parser/testdata/00232_format_readable_decimal_size/ast.json b/parser/testdata/00232_format_readable_decimal_size/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00232_format_readable_decimal_size/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00232_format_readable_size/ast.json b/parser/testdata/00232_format_readable_size/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00232_format_readable_size/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00233_position_function_family/ast.json b/parser/testdata/00233_position_function_family/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00233_position_function_family/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00233_position_function_sql_comparibilty/ast.json b/parser/testdata/00233_position_function_sql_comparibilty/ast.json deleted file mode 100644 index e7de636e71..0000000000 --- a/parser/testdata/00233_position_function_sql_comparibilty/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001039419, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00234_disjunctive_equality_chains_optimization/ast.json b/parser/testdata/00234_disjunctive_equality_chains_optimization/ast.json deleted file mode 100644 index ed50f7a6fe..0000000000 --- a/parser/testdata/00234_disjunctive_equality_chains_optimization/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery foo_00234 (children 3)" - }, - { - "explain": " Identifier foo_00234" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration id (children 1)" - }, - { - "explain": " DataType UInt64" - }, - { - "explain": " Storage definition (children 2)" - }, - { - "explain": " Function MergeTree" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001311426, - "rows_read": 10, - "bytes_read": 349 - } -} diff --git a/parser/testdata/00235_create_temporary_table_as/ast.json b/parser/testdata/00235_create_temporary_table_as/ast.json deleted file mode 100644 index 4c67c6ebb1..0000000000 --- a/parser/testdata/00235_create_temporary_table_as/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery one_0023 (children 1)" - }, - { - "explain": " Identifier one_0023" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001076654, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00236_replicated_drop_on_non_leader_zookeeper_long/ast.json b/parser/testdata/00236_replicated_drop_on_non_leader_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00236_replicated_drop_on_non_leader_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00237_group_by_arrays/ast.json b/parser/testdata/00237_group_by_arrays/ast.json deleted file mode 100644 index 9dc8f0ae24..0000000000 --- a/parser/testdata/00237_group_by_arrays/ast.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier arr1" - }, - { - "explain": " Identifier arr2" - }, - { - "explain": " Function count (alias c) (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function emptyArrayUInt8 (alias arr1) (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal Array_[UInt64_1] (alias arr2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_1]" - }, - { - "explain": " Function emptyArrayUInt8 (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier arr1" - }, - { - "explain": " Identifier arr2" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier c" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier arr1" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier arr2" - } - ], - - "rows": 34, - - "statistics": - { - "elapsed": 0.001483855, - "rows_read": 34, - "bytes_read": 1332 - } -} diff --git a/parser/testdata/00238_removal_of_temporary_columns/ast.json b/parser/testdata/00238_removal_of_temporary_columns/ast.json deleted file mode 100644 index 6b28bdbe19..0000000000 --- a/parser/testdata/00238_removal_of_temporary_columns/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001263591, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00239_type_conversion_in_in/ast.json b/parser/testdata/00239_type_conversion_in_in/ast.json deleted file mode 100644 index 7e9af98aaf..0000000000 --- a/parser/testdata/00239_type_conversion_in_in/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " Function or (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal Int64_-1" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001457183, - "rows_read": 23, - "bytes_read": 839 - } -} diff --git a/parser/testdata/00240_replace_substring_loop/ast.json b/parser/testdata/00240_replace_substring_loop/ast.json deleted file mode 100644 index cdeafb8060..0000000000 --- a/parser/testdata/00240_replace_substring_loop/ast.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " Function replaceAll (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " Literal '_'" - }, - { - "explain": " Literal 'o'" - }, - { - "explain": " Function replaceRegexpAll (alias b) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " Literal '_'" - }, - { - "explain": " Literal 'o'" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias s) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['.', '.']" - } - ], - - "rows": 30, - - "statistics": - { - "elapsed": 0.00154485, - "rows_read": 30, - "bytes_read": 1150 - } -} diff --git a/parser/testdata/00250_tuple_comparison/ast.json b/parser/testdata/00250_tuple_comparison/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00250_tuple_comparison/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00251_has_types/ast.json b/parser/testdata/00251_has_types/ast.json deleted file mode 100644 index 5b6c6c39a5..0000000000 --- a/parser/testdata/00251_has_types/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function has (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3]" - }, - { - "explain": " Literal Float64_3" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001420832, - "rows_read": 8, - "bytes_read": 315 - } -} diff --git a/parser/testdata/00252_shard_global_in_aggregate_function/ast.json b/parser/testdata/00252_shard_global_in_aggregate_function/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00252_shard_global_in_aggregate_function/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00253_insert_recursive_defaults/ast.json b/parser/testdata/00253_insert_recursive_defaults/ast.json deleted file mode 100644 index 97a4a5d2a5..0000000000 --- a/parser/testdata/00253_insert_recursive_defaults/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults (children 1)" - }, - { - "explain": " Identifier defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001188722, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00254_tuple_extremes/ast.json b/parser/testdata/00254_tuple_extremes/ast.json deleted file mode 100644 index c99d922120..0000000000 --- a/parser/testdata/00254_tuple_extremes/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery numbers_10 (children 1)" - }, - { - "explain": " Identifier numbers_10" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001069584, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00255_array_concat_string/ast.json b/parser/testdata/00255_array_concat_string/ast.json deleted file mode 100644 index 9c1629c392..0000000000 --- a/parser/testdata/00255_array_concat_string/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayStringConcat (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['Hello', 'World']" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001090145, - "rows_read": 7, - "bytes_read": 286 - } -} diff --git a/parser/testdata/00256_reverse/ast.json b/parser/testdata/00256_reverse/ast.json deleted file mode 100644 index cfdd1ef285..0000000000 --- a/parser/testdata/00256_reverse/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function reverse (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'Hello'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001058648, - "rows_read": 7, - "bytes_read": 259 - } -} diff --git a/parser/testdata/00257_shard_no_aggregates_and_constant_keys/ast.json b/parser/testdata/00257_shard_no_aggregates_and_constant_keys/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00257_shard_no_aggregates_and_constant_keys/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00258_materializing_tuples/ast.json b/parser/testdata/00258_materializing_tuples/ast.json deleted file mode 100644 index 3a0d78a5b5..0000000000 --- a/parser/testdata/00258_materializing_tuples/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier a" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.00114609, - "rows_read": 24, - "bytes_read": 984 - } -} diff --git a/parser/testdata/00259_hashing_tuples/ast.json b/parser/testdata/00259_hashing_tuples/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00259_hashing_tuples/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00260_like_and_curly_braces/ast.json b/parser/testdata/00260_like_and_curly_braces/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00260_like_and_curly_braces/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00261_storage_aliases_and_array_join/ast.json b/parser/testdata/00261_storage_aliases_and_array_join/ast.json deleted file mode 100644 index 22e81b39e7..0000000000 --- a/parser/testdata/00261_storage_aliases_and_array_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery aliases_test (children 1)" - }, - { - "explain": " Identifier aliases_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000970878, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/00262_alter_alias/ast.json b/parser/testdata/00262_alter_alias/ast.json deleted file mode 100644 index 8865458631..0000000000 --- a/parser/testdata/00262_alter_alias/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery aliases_test (children 1)" - }, - { - "explain": " Identifier aliases_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001107384, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/00263_merge_aggregates_and_overflow/ast.json b/parser/testdata/00263_merge_aggregates_and_overflow/ast.json deleted file mode 100644 index e17e909870..0000000000 --- a/parser/testdata/00263_merge_aggregates_and_overflow/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery numbers_10k_log (children 1)" - }, - { - "explain": " Identifier numbers_10k_log" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001029106, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/00264_uniq_many_args/ast.json b/parser/testdata/00264_uniq_many_args/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00264_uniq_many_args/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00266_read_overflow_mode/ast.json b/parser/testdata/00266_read_overflow_mode/ast.json deleted file mode 100644 index 129231c39d..0000000000 --- a/parser/testdata/00266_read_overflow_mode/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 6)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number (alias k)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_110000" - }, - { - "explain": " Set" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Set" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001824839, - "rows_read": 27, - "bytes_read": 1044 - } -} diff --git a/parser/testdata/00266_shard_global_subquery_and_aliases/ast.json b/parser/testdata/00266_shard_global_subquery_and_aliases/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00266_shard_global_subquery_and_aliases/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00267_tuple_array_access_operators_priority/ast.json b/parser/testdata/00267_tuple_array_access_operators_priority/ast.json deleted file mode 100644 index 803aae9ea5..0000000000 --- a/parser/testdata/00267_tuple_array_access_operators_priority/ast.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (alias res) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function negate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal Int64_-245" - }, - { - "explain": " Literal 'Ok'" - }, - { - "explain": " Literal 'Fail'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_('Hello', UInt64_123)" - } - ], - - "rows": 37, - - "statistics": - { - "elapsed": 0.001223877, - "rows_read": 37, - "bytes_read": 1597 - } -} diff --git a/parser/testdata/00268_aliases_without_as_keyword/ast.json b/parser/testdata/00268_aliases_without_as_keyword/ast.json deleted file mode 100644 index f5d0bae973..0000000000 --- a/parser/testdata/00268_aliases_without_as_keyword/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001301846, - "rows_read": 9, - "bytes_read": 362 - } -} diff --git a/parser/testdata/00269_database_table_whitespace/ast.json b/parser/testdata/00269_database_table_whitespace/ast.json deleted file mode 100644 index ea67cbb273..0000000000 --- a/parser/testdata/00269_database_table_whitespace/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001097602, - "rows_read": 9, - "bytes_read": 344 - } -} diff --git a/parser/testdata/00270_views_query_processing_stage/ast.json b/parser/testdata/00270_views_query_processing_stage/ast.json deleted file mode 100644 index c21b4e754e..0000000000 --- a/parser/testdata/00270_views_query_processing_stage/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery view1_00270 (children 1)" - }, - { - "explain": " Identifier view1_00270" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001231761, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00271_agg_state_and_totals/ast.json b/parser/testdata/00271_agg_state_and_totals/ast.json deleted file mode 100644 index a23b1fc9db..0000000000 --- a/parser/testdata/00271_agg_state_and_totals/ast.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Function finalizeAggregation (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantilesTimingState (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_0.5" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function intDiv (alias k) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_30000 (alias d)" - }, - { - "explain": " Function modulo (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier d" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100000" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - } - ], - - "rows": 38, - - "statistics": - { - "elapsed": 0.001073757, - "rows_read": 38, - "bytes_read": 1594 - } -} diff --git a/parser/testdata/00272_union_all_and_in_subquery/ast.json b/parser/testdata/00272_union_all_and_in_subquery/ast.json deleted file mode 100644 index 99495e4a80..0000000000 --- a/parser/testdata/00272_union_all_and_in_subquery/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.001279346, - "rows_read": 21, - "bytes_read": 754 - } -} diff --git a/parser/testdata/00273_quantiles/ast.json b/parser/testdata/00273_quantiles/ast.json deleted file mode 100644 index f76f01b018..0000000000 --- a/parser/testdata/00273_quantiles/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantiles (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_0.5" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number (alias x)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1001" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.00100761, - "rows_read": 23, - "bytes_read": 968 - } -} diff --git a/parser/testdata/00274_shard_group_array/ast.json b/parser/testdata/00274_shard_group_array/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00274_shard_group_array/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00275_shard_quantiles_weighted/ast.json b/parser/testdata/00275_shard_quantiles_weighted/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00275_shard_quantiles_weighted/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00276_sample/ast.json b/parser/testdata/00276_sample/ast.json deleted file mode 100644 index 3917242de4..0000000000 --- a/parser/testdata/00276_sample/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery sample_00276 (children 1)" - }, - { - "explain": " Identifier sample_00276" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001371993, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/00277_array_filter/ast.json b/parser/testdata/00277_array_filter/ast.json deleted file mode 100644 index d769982f78..0000000000 --- a/parser/testdata/00277_array_filter/ast.json +++ /dev/null @@ -1,190 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function length (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (alias arr) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function length (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 56, - - "statistics": - { - "elapsed": 0.001427849, - "rows_read": 56, - "bytes_read": 2571 - } -} diff --git a/parser/testdata/00278_insert_already_sorted/ast.json b/parser/testdata/00278_insert_already_sorted/ast.json deleted file mode 100644 index c1c53aaa78..0000000000 --- a/parser/testdata/00278_insert_already_sorted/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery sorted (children 1)" - }, - { - "explain": " Identifier sorted" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001269767, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00279_quantiles_permuted_args/ast.json b/parser/testdata/00279_quantiles_permuted_args/ast.json deleted file mode 100644 index f7a514337a..0000000000 --- a/parser/testdata/00279_quantiles_permuted_args/ast.json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantilesExact (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " ExpressionList (children 20)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Float64_0.001" - }, - { - "explain": " Literal Float64_0.01" - }, - { - "explain": " Literal Float64_0.05" - }, - { - "explain": " Literal Float64_0.9" - }, - { - "explain": " Literal Float64_0.2" - }, - { - "explain": " Literal Float64_0.3" - }, - { - "explain": " Literal Float64_0.6" - }, - { - "explain": " Literal Float64_0.5" - }, - { - "explain": " Literal Float64_0.4" - }, - { - "explain": " Literal Float64_0.7" - }, - { - "explain": " Literal Float64_0.8" - }, - { - "explain": " Literal Float64_0.1" - }, - { - "explain": " Literal Float64_0.95" - }, - { - "explain": " Literal Float64_0.99" - }, - { - "explain": " Literal Float64_0.999" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Float64_0.5" - }, - { - "explain": " Literal Float64_0.3" - }, - { - "explain": " Literal Float64_0.4" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number (alias x)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1001" - } - ], - - "rows": 42, - - "statistics": - { - "elapsed": 0.001323157, - "rows_read": 42, - "bytes_read": 1603 - } -} diff --git a/parser/testdata/00280_hex_escape_sequence/ast.json b/parser/testdata/00280_hex_escape_sequence/ast.json deleted file mode 100644 index ed62ef1ca1..0000000000 --- a/parser/testdata/00280_hex_escape_sequence/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '0 Р'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001231277, - "rows_read": 5, - "bytes_read": 175 - } -} diff --git a/parser/testdata/00282_merging/ast.json b/parser/testdata/00282_merging/ast.json deleted file mode 100644 index f66a34ef3c..0000000000 --- a/parser/testdata/00282_merging/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery merge (children 1)" - }, - { - "explain": " Identifier merge" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001201427, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00283_column_cut/ast.json b/parser/testdata/00283_column_cut/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00283_column_cut/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00284_external_aggregation/ast.json b/parser/testdata/00284_external_aggregation/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00284_external_aggregation/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00284_external_aggregation_2/ast.json b/parser/testdata/00284_external_aggregation_2/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00284_external_aggregation_2/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00285_not_all_data_in_totals/ast.json b/parser/testdata/00285_not_all_data_in_totals/ast.json deleted file mode 100644 index 18f2258ca0..0000000000 --- a/parser/testdata/00285_not_all_data_in_totals/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001096416, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00286_format_long_negative_float/ast.json b/parser/testdata/00286_format_long_negative_float/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00286_format_long_negative_float/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00287_column_const_with_nan/ast.json b/parser/testdata/00287_column_const_with_nan/ast.json deleted file mode 100644 index 11f4bef073..0000000000 --- a/parser/testdata/00287_column_const_with_nan/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001370247, - "rows_read": 27, - "bytes_read": 1078 - } -} diff --git a/parser/testdata/00288_empty_stripelog/ast.json b/parser/testdata/00288_empty_stripelog/ast.json deleted file mode 100644 index 28d1ef4666..0000000000 --- a/parser/testdata/00288_empty_stripelog/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery stripelog (children 1)" - }, - { - "explain": " Identifier stripelog" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001567285, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00290_shard_aggregation_memory_efficient/ast.json b/parser/testdata/00290_shard_aggregation_memory_efficient/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00290_shard_aggregation_memory_efficient/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00291_array_reduce/ast.json b/parser/testdata/00291_array_reduce/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00291_array_reduce/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00292_parser_tuple_element/ast.json b/parser/testdata/00292_parser_tuple_element/ast.json deleted file mode 100644 index 2fb0a67514..0000000000 --- a/parser/testdata/00292_parser_tuple_element/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_('a', 'b')" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001423402, - "rows_read": 8, - "bytes_read": 303 - } -} diff --git a/parser/testdata/00293_shard_max_subquery_depth/ast.json b/parser/testdata/00293_shard_max_subquery_depth/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00293_shard_max_subquery_depth/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00294_shard_enums/ast.json b/parser/testdata/00294_shard_enums/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00294_shard_enums/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00295_global_in_one_shard_rows_before_limit/ast.json b/parser/testdata/00295_global_in_one_shard_rows_before_limit/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00295_global_in_one_shard_rows_before_limit/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00296_url_parameters/ast.json b/parser/testdata/00296_url_parameters/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00296_url_parameters/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00298_enum_width_and_cast/ast.json b/parser/testdata/00298_enum_width_and_cast/ast.json deleted file mode 100644 index 9569682268..0000000000 --- a/parser/testdata/00298_enum_width_and_cast/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery enum (children 1)" - }, - { - "explain": " Identifier enum" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001606673, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00299_stripe_log_multiple_inserts/ast.json b/parser/testdata/00299_stripe_log_multiple_inserts/ast.json deleted file mode 100644 index b10d9f480d..0000000000 --- a/parser/testdata/00299_stripe_log_multiple_inserts/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery log (children 1)" - }, - { - "explain": " Identifier log" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001188938, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00300_csv/ast.json b/parser/testdata/00300_csv/ast.json deleted file mode 100644 index 8b788f99ae..0000000000 --- a/parser/testdata/00300_csv/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal 'Hello, \"World\"' (alias x)" - }, - { - "explain": " Literal UInt64_123 (alias y)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3] (alias z)" - }, - { - "explain": " Function tuple (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_456" - }, - { - "explain": " Literal Array_['abc', 'def']" - }, - { - "explain": " Literal 'Newline\\nhere' (alias b)" - }, - { - "explain": " Identifier CSV" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001240521, - "rows_read": 13, - "bytes_read": 532 - } -} diff --git a/parser/testdata/00306_insert_values_and_expressions/ast.json b/parser/testdata/00306_insert_values_and_expressions/ast.json deleted file mode 100644 index 0cce9e02e6..0000000000 --- a/parser/testdata/00306_insert_values_and_expressions/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery insert (children 1)" - }, - { - "explain": " Identifier insert" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001331546, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00307_format_xml/ast.json b/parser/testdata/00307_format_xml/ast.json deleted file mode 100644 index 43687a6090..0000000000 --- a/parser/testdata/00307_format_xml/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001285356, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00308_write_buffer_valid_utf8/ast.json b/parser/testdata/00308_write_buffer_valid_utf8/ast.json deleted file mode 100644 index 9f2d43b654..0000000000 --- a/parser/testdata/00308_write_buffer_valid_utf8/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001077774, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00309_formats/ast.json b/parser/testdata/00309_formats/ast.json deleted file mode 100644 index 15947c83db..0000000000 --- a/parser/testdata/00309_formats/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00145641, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00311_array_primary_key/ast.json b/parser/testdata/00311_array_primary_key/ast.json deleted file mode 100644 index 03912464c8..0000000000 --- a/parser/testdata/00311_array_primary_key/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00142114, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00312_position_case_insensitive_utf8/ast.json b/parser/testdata/00312_position_case_insensitive_utf8/ast.json deleted file mode 100644 index 4a7d061181..0000000000 --- a/parser/testdata/00312_position_case_insensitive_utf8/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function positionCaseInsensitiveUTF8 (alias res) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'иголка.ру'" - }, - { - "explain": " Function arrayStringConcat (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal ' '" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_20000" - }, - { - "explain": " Literal 'иголка.ру'" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001639552, - "rows_read": 23, - "bytes_read": 1024 - } -} diff --git a/parser/testdata/00314_sample_factor_virtual_column/ast.json b/parser/testdata/00314_sample_factor_virtual_column/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00314_sample_factor_virtual_column/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00315_quantile_off_by_one/ast.json b/parser/testdata/00315_quantile_off_by_one/ast.json deleted file mode 100644 index df44d76769..0000000000 --- a/parser/testdata/00315_quantile_off_by_one/ast.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function quantileExactWeighted (alias q5) (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_0.5" - }, - { - "explain": " Function quantilesExactWeighted (alias qs) (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 11)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Float64_0.1" - }, - { - "explain": " Literal Float64_0.2" - }, - { - "explain": " Literal Float64_0.3" - }, - { - "explain": " Literal Float64_0.4" - }, - { - "explain": " Literal Float64_0.5" - }, - { - "explain": " Literal Float64_0.6" - }, - { - "explain": " Literal Float64_0.7" - }, - { - "explain": " Literal Float64_0.8" - }, - { - "explain": " Literal Float64_0.9" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_1, UInt64_1, UInt64_10, UInt64_10, UInt64_10, UInt64_10, UInt64_100, UInt64_100, UInt64_100]" - } - ], - - "rows": 37, - - "statistics": - { - "elapsed": 0.001730292, - "rows_read": 37, - "bytes_read": 1544 - } -} diff --git a/parser/testdata/00316_rounding_functions_and_empty_block/ast.json b/parser/testdata/00316_rounding_functions_and_empty_block/ast.json deleted file mode 100644 index 04ab3ce6a7..0000000000 --- a/parser/testdata/00316_rounding_functions_and_empty_block/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001374105, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00317_in_tuples_and_out_of_range_values/ast.json b/parser/testdata/00317_in_tuples_and_out_of_range_values/ast.json deleted file mode 100644 index 7f68749d7f..0000000000 --- a/parser/testdata/00317_in_tuples_and_out_of_range_values/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(UInt64_1, '')" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_(Int64_-1, '')" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.00157742, - "rows_read": 10, - "bytes_read": 394 - } -} diff --git a/parser/testdata/00318_pk_tuple_order/ast.json b/parser/testdata/00318_pk_tuple_order/ast.json deleted file mode 100644 index 323ff90065..0000000000 --- a/parser/testdata/00318_pk_tuple_order/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery pk (children 1)" - }, - { - "explain": " Identifier pk" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001474743, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00319_index_for_like/ast.json b/parser/testdata/00319_index_for_like/ast.json deleted file mode 100644 index 39533cbbd1..0000000000 --- a/parser/testdata/00319_index_for_like/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001486023, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00320_between/ast.json b/parser/testdata/00320_between/ast.json deleted file mode 100644 index 5961993164..0000000000 --- a/parser/testdata/00320_between/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function and (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function greaterOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function lessOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function minus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001179466, - "rows_read": 20, - "bytes_read": 782 - } -} diff --git a/parser/testdata/00321_pk_set/ast.json b/parser/testdata/00321_pk_set/ast.json deleted file mode 100644 index f70b70c6a7..0000000000 --- a/parser/testdata/00321_pk_set/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery pk_set (children 1)" - }, - { - "explain": " Identifier pk_set" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001243449, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00323_quantiles_timing_bug/ast.json b/parser/testdata/00323_quantiles_timing_bug/ast.json deleted file mode 100644 index 63c50b71ad..0000000000 --- a/parser/testdata/00323_quantiles_timing_bug/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantilesTiming (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_100000" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_0.99" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001355977, - "rows_read": 13, - "bytes_read": 525 - } -} diff --git a/parser/testdata/00324_hashing_enums/ast.json b/parser/testdata/00324_hashing_enums/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00324_hashing_enums/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00326_long_function_multi_if/ast.json b/parser/testdata/00326_long_function_multi_if/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00326_long_function_multi_if/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00327_summing_composite_nested/ast.json b/parser/testdata/00327_summing_composite_nested/ast.json deleted file mode 100644 index 04ffa1fb40..0000000000 --- a/parser/testdata/00327_summing_composite_nested/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001341973, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00328_long_case_construction/ast.json b/parser/testdata/00328_long_case_construction/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00328_long_case_construction/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00330_view_subqueries/ast.json b/parser/testdata/00330_view_subqueries/ast.json deleted file mode 100644 index 7881558875..0000000000 --- a/parser/testdata/00330_view_subqueries/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery v1 (children 1)" - }, - { - "explain": " Identifier v1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001038615, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00331_final_and_prewhere/ast.json b/parser/testdata/00331_final_and_prewhere/ast.json deleted file mode 100644 index cc21e273bf..0000000000 --- a/parser/testdata/00331_final_and_prewhere/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery replace (children 1)" - }, - { - "explain": " Identifier replace" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001161932, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00331_final_and_prewhere_condition_ver_column/ast.json b/parser/testdata/00331_final_and_prewhere_condition_ver_column/ast.json deleted file mode 100644 index 42dedd6cdf..0000000000 --- a/parser/testdata/00331_final_and_prewhere_condition_ver_column/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00107301, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00332_quantile_timing_memory_leak/ast.json b/parser/testdata/00332_quantile_timing_memory_leak/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00332_quantile_timing_memory_leak/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00333_parser_number_bug/ast.json b/parser/testdata/00333_parser_number_bug/ast.json deleted file mode 100644 index 77a52f836b..0000000000 --- a/parser/testdata/00333_parser_number_bug/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier info" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias info)" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001384156, - "rows_read": 14, - "bytes_read": 571 - } -} diff --git a/parser/testdata/00334_column_aggregate_function_limit/ast.json b/parser/testdata/00334_column_aggregate_function_limit/ast.json deleted file mode 100644 index 515c50020e..0000000000 --- a/parser/testdata/00334_column_aggregate_function_limit/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ontime (children 1)" - }, - { - "explain": " Identifier ontime" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001277977, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00337_shard_any_heavy/ast.json b/parser/testdata/00337_shard_any_heavy/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00337_shard_any_heavy/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00338_replicate_array_of_strings/ast.json b/parser/testdata/00338_replicate_array_of_strings/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00338_replicate_array_of_strings/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00340_squashing_insert_select/ast.json b/parser/testdata/00340_squashing_insert_select/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00340_squashing_insert_select/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00341_squashing_insert_select2/ast.json b/parser/testdata/00341_squashing_insert_select2/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00341_squashing_insert_select2/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00342_escape_sequences/ast.json b/parser/testdata/00342_escape_sequences/ast.json deleted file mode 100644 index 44c66de4db..0000000000 --- a/parser/testdata/00342_escape_sequences/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function hex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '\u0007\\b\\f\\n\\r\\t\u000B\\\\\\'\"\\\\?�'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001487137, - "rows_read": 7, - "bytes_read": 271 - } -} diff --git a/parser/testdata/00343_array_element_generic/ast.json b/parser/testdata/00343_array_element_generic/ast.json deleted file mode 100644 index e469e5ce22..0000000000 --- a/parser/testdata/00343_array_element_generic/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function and (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.001363966, - "rows_read": 26, - "bytes_read": 1022 - } -} diff --git a/parser/testdata/00344_row_number_in_all_blocks/ast.json b/parser/testdata/00344_row_number_in_all_blocks/ast.json deleted file mode 100644 index eda2c3def7..0000000000 --- a/parser/testdata/00344_row_number_in_all_blocks/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00142055, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00345_index_accurate_comparison/ast.json b/parser/testdata/00345_index_accurate_comparison/ast.json deleted file mode 100644 index 6548e6b0c5..0000000000 --- a/parser/testdata/00345_index_accurate_comparison/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery index (children 1)" - }, - { - "explain": " Identifier index" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001027974, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00346_if_tuple/ast.json b/parser/testdata/00346_if_tuple/ast.json deleted file mode 100644 index da6a4335aa..0000000000 --- a/parser/testdata/00346_if_tuple/ast.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '! '" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 36, - - "statistics": - { - "elapsed": 0.001441645, - "rows_read": 36, - "bytes_read": 1438 - } -} diff --git a/parser/testdata/00347_has_tuple/ast.json b/parser/testdata/00347_has_tuple/ast.json deleted file mode 100644 index 60e2d1ae13..0000000000 --- a/parser/testdata/00347_has_tuple/ast.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function has (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier c" - }, - { - "explain": " Identifier d" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal UInt64_1 (alias a)" - }, - { - "explain": " Literal UInt64_2 (alias b)" - }, - { - "explain": " Literal UInt64_3 (alias c)" - }, - { - "explain": " Literal UInt64_4 (alias d)" - } - ], - - "rows": 32, - - "statistics": - { - "elapsed": 0.001746096, - "rows_read": 32, - "bytes_read": 1269 - } -} diff --git a/parser/testdata/00348_tuples/ast.json b/parser/testdata/00348_tuples/ast.json deleted file mode 100644 index 8c7c65a895..0000000000 --- a/parser/testdata/00348_tuples/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal Tuple_('1', UInt64_2) (alias t)" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001309854, - "rows_read": 13, - "bytes_read": 484 - } -} diff --git a/parser/testdata/00349_visible_width/ast.json b/parser/testdata/00349_visible_width/ast.json deleted file mode 100644 index f6c2d42138..0000000000 --- a/parser/testdata/00349_visible_width/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function visibleWidth (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_2)" - }, - { - "explain": " Function visibleWidth (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3]" - }, - { - "explain": " Function visibleWidth (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Array_[UInt64_2]" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001333359, - "rows_read": 16, - "bytes_read": 668 - } -} diff --git a/parser/testdata/00350_count_distinct/ast.json b/parser/testdata/00350_count_distinct/ast.json deleted file mode 100644 index e67ffdbcdf..0000000000 --- a/parser/testdata/00350_count_distinct/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001402676, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00351_select_distinct_arrays_tuples/ast.json b/parser/testdata/00351_select_distinct_arrays_tuples/ast.json deleted file mode 100644 index 997856193f..0000000000 --- a/parser/testdata/00351_select_distinct_arrays_tuples/ast.json +++ /dev/null @@ -1,160 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100" - } - ], - - "rows": 46, - - "statistics": - { - "elapsed": 0.001377385, - "rows_read": 46, - "bytes_read": 1802 - } -} diff --git a/parser/testdata/00352_external_sorting_and_constants/ast.json b/parser/testdata/00352_external_sorting_and_constants/ast.json deleted file mode 100644 index 8406c8267a..0000000000 --- a/parser/testdata/00352_external_sorting_and_constants/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 6)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal 'Hello' (alias k)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000000" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_999990" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Set" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.001646786, - "rows_read": 26, - "bytes_read": 1027 - } -} diff --git a/parser/testdata/00353_join_by_tuple/ast.json b/parser/testdata/00353_join_by_tuple/ast.json deleted file mode 100644 index 83ae6d926d..0000000000 --- a/parser/testdata/00353_join_by_tuple/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001328557, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00355_array_of_non_const_convertible_types/ast.json b/parser/testdata/00355_array_of_non_const_convertible_types/ast.json deleted file mode 100644 index 45b5bce3a0..0000000000 --- a/parser/testdata/00355_array_of_non_const_convertible_types/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toUInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_3" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001397965, - "rows_read": 15, - "bytes_read": 583 - } -} diff --git a/parser/testdata/00356_analyze_aggregations_and_union_all/ast.json b/parser/testdata/00356_analyze_aggregations_and_union_all/ast.json deleted file mode 100644 index d7740405d1..0000000000 --- a/parser/testdata/00356_analyze_aggregations_and_union_all/ast.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniq (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias a)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniq (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier b" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias b)" - } - ], - - "rows": 30, - - "statistics": - { - "elapsed": 0.001108915, - "rows_read": 30, - "bytes_read": 1213 - } -} diff --git a/parser/testdata/00357_to_string_complex_types/ast.json b/parser/testdata/00357_to_string_complex_types/ast.json deleted file mode 100644 index 14212c9fb6..0000000000 --- a/parser/testdata/00357_to_string_complex_types/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'Hello'" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2016-01-01'" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3]" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001647136, - "rows_read": 16, - "bytes_read": 643 - } -} diff --git a/parser/testdata/00358_from_string_complex_types/ast.json b/parser/testdata/00358_from_string_complex_types/ast.json deleted file mode 100644 index 1e66499b76..0000000000 --- a/parser/testdata/00358_from_string_complex_types/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '[1, 2, 3]'" - }, - { - "explain": " Literal 'Array(UInt8)'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001431861, - "rows_read": 8, - "bytes_read": 296 - } -} diff --git a/parser/testdata/00359_convert_or_zero_functions/ast.json b/parser/testdata/00359_convert_or_zero_functions/ast.json deleted file mode 100644 index 4f9de11e39..0000000000 --- a/parser/testdata/00359_convert_or_zero_functions/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toUInt32OrZero (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '123a'" - }, - { - "explain": " Function toUInt32OrZero (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '456'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.000984313, - "rows_read": 10, - "bytes_read": 380 - } -} diff --git a/parser/testdata/00360_to_date_from_string_with_datetime/ast.json b/parser/testdata/00360_to_date_from_string_with_datetime/ast.json deleted file mode 100644 index d1ded31e82..0000000000 --- a/parser/testdata/00360_to_date_from_string_with_datetime/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2016-08-02 12:34:19'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.00110991, - "rows_read": 7, - "bytes_read": 272 - } -} diff --git a/parser/testdata/00361_shared_array_offsets_and_squash_blocks/ast.json b/parser/testdata/00361_shared_array_offsets_and_squash_blocks/ast.json deleted file mode 100644 index aa99e97c67..0000000000 --- a/parser/testdata/00361_shared_array_offsets_and_squash_blocks/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nested1 (children 1)" - }, - { - "explain": " Identifier nested1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001870661, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00362_great_circle_distance/ast.json b/parser/testdata/00362_great_circle_distance/ast.json deleted file mode 100644 index 73e0244c54..0000000000 --- a/parser/testdata/00362_great_circle_distance/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function floor (alias distance) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greatCircleDistance (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal Float64_33.3" - }, - { - "explain": " Literal Float64_55.3" - }, - { - "explain": " Literal Float64_33.3" - }, - { - "explain": " Literal Float64_55.3" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001284591, - "rows_read": 12, - "bytes_read": 486 - } -} diff --git a/parser/testdata/00363_defaults/ast.json b/parser/testdata/00363_defaults/ast.json deleted file mode 100644 index 934d9e4693..0000000000 --- a/parser/testdata/00363_defaults/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery prewhere_defaults (children 1)" - }, - { - "explain": " Identifier prewhere_defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001360112, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00364_java_style_denormals/ast.json b/parser/testdata/00364_java_style_denormals/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00364_java_style_denormals/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00367_visible_width_of_array_tuple_enum/ast.json b/parser/testdata/00367_visible_width_of_array_tuple_enum/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00367_visible_width_of_array_tuple_enum/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00369_int_div_of_float/ast.json b/parser/testdata/00369_int_div_of_float/ast.json deleted file mode 100644 index 78c45dbcf9..0000000000 --- a/parser/testdata/00369_int_div_of_float/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function intDiv (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Literal UInt64_4" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001144141, - "rows_read": 8, - "bytes_read": 290 - } -} diff --git a/parser/testdata/00370_duplicate_columns_in_subqueries/ast.json b/parser/testdata/00370_duplicate_columns_in_subqueries/ast.json deleted file mode 100644 index f9b8d22688..0000000000 --- a/parser/testdata/00370_duplicate_columns_in_subqueries/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001738685, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00371_union_all/ast.json b/parser/testdata/00371_union_all/ast.json deleted file mode 100644 index ac100d22f4..0000000000 --- a/parser/testdata/00371_union_all/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUInt64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function countIf (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2 (alias n)" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001481769, - "rows_read": 24, - "bytes_read": 951 - } -} diff --git a/parser/testdata/00373_group_by_tuple/ast.json b/parser/testdata/00373_group_by_tuple/ast.json deleted file mode 100644 index 6b67c2b42c..0000000000 --- a/parser/testdata/00373_group_by_tuple/ast.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function if (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal 'Hello'" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'World'" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 39, - - "statistics": - { - "elapsed": 0.001675815, - "rows_read": 39, - "bytes_read": 1531 - } -} diff --git a/parser/testdata/00374_any_last_if_merge/ast.json b/parser/testdata/00374_any_last_if_merge/ast.json deleted file mode 100644 index 1b599597a4..0000000000 --- a/parser/testdata/00374_any_last_if_merge/ast.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (alias k) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10000" - }, - { - "explain": " Function anyLastIf (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_1" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Function notEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 40, - - "statistics": - { - "elapsed": 0.001948608, - "rows_read": 40, - "bytes_read": 1630 - } -} diff --git a/parser/testdata/00375_shard_group_uniq_array_of_string/ast.json b/parser/testdata/00375_shard_group_uniq_array_of_string/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00375_shard_group_uniq_array_of_string/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00376_shard_group_uniq_array_of_int_array/ast.json b/parser/testdata/00376_shard_group_uniq_array_of_int_array/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00376_shard_group_uniq_array_of_int_array/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00377_shard_group_uniq_array_of_string_array/ast.json b/parser/testdata/00377_shard_group_uniq_array_of_string_array/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00377_shard_group_uniq_array_of_string_array/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00378_json_quote_64bit_integers/ast.json b/parser/testdata/00378_json_quote_64bit_integers/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00378_json_quote_64bit_integers/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00381_first_significant_subdomain/ast.json b/parser/testdata/00381_first_significant_subdomain/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00381_first_significant_subdomain/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00383_utf8_validation/ast.json b/parser/testdata/00383_utf8_validation/ast.json deleted file mode 100644 index 2fd2cda5c7..0000000000 --- a/parser/testdata/00383_utf8_validation/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001440384, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00384_column_aggregate_function_insert_from/ast.json b/parser/testdata/00384_column_aggregate_function_insert_from/ast.json deleted file mode 100644 index c6d0cd9493..0000000000 --- a/parser/testdata/00384_column_aggregate_function_insert_from/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery aggregates (children 1)" - }, - { - "explain": " Identifier aggregates" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001755396, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00386_enum_in_pk/ast.json b/parser/testdata/00386_enum_in_pk/ast.json deleted file mode 100644 index d8f53b212d..0000000000 --- a/parser/testdata/00386_enum_in_pk/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery enum_pk (children 1)" - }, - { - "explain": " Identifier enum_pk" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001345748, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00386_has_column_in_table/ast.json b/parser/testdata/00386_has_column_in_table/ast.json deleted file mode 100644 index 8179d98634..0000000000 --- a/parser/testdata/00386_has_column_in_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery has_column_in_table (children 1)" - }, - { - "explain": " Identifier has_column_in_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001365759, - "rows_read": 2, - "bytes_read": 90 - } -} diff --git a/parser/testdata/00388_enum_with_totals/ast.json b/parser/testdata/00388_enum_with_totals/ast.json deleted file mode 100644 index 503b46e059..0000000000 --- a/parser/testdata/00388_enum_with_totals/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery enum_totals (children 1)" - }, - { - "explain": " Identifier enum_totals" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001416688, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00389_concat_operator/ast.json b/parser/testdata/00389_concat_operator/ast.json deleted file mode 100644 index 30c1a10c0e..0000000000 --- a/parser/testdata/00389_concat_operator/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'Hello'" - }, - { - "explain": " Literal ', '" - }, - { - "explain": " Literal 'World'" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001150154, - "rows_read": 9, - "bytes_read": 313 - } -} diff --git a/parser/testdata/00390_array_sort/ast.json b/parser/testdata/00390_array_sort/ast.json deleted file mode 100644 index ffb93aace7..0000000000 --- a/parser/testdata/00390_array_sort/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal Array_[UInt64_2, UInt64_1, UInt64_3] (alias arr)" - }, - { - "explain": " Function arraySort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " Function arrayReverseSort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " Function arraySort (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function negate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier arr" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001569257, - "rows_read": 22, - "bytes_read": 876 - } -} diff --git a/parser/testdata/00392_enum_nested_alter/ast.json b/parser/testdata/00392_enum_nested_alter/ast.json deleted file mode 100644 index a6ecfc1477..0000000000 --- a/parser/testdata/00392_enum_nested_alter/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery enum_nested_alter (children 1)" - }, - { - "explain": " Identifier enum_nested_alter" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001220713, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00393_if_with_constant_condition/ast.json b/parser/testdata/00393_if_with_constant_condition/ast.json deleted file mode 100644 index 1beccdf9cf..0000000000 --- a/parser/testdata/00393_if_with_constant_condition/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001259016, - "rows_read": 9, - "bytes_read": 315 - } -} diff --git a/parser/testdata/00394_new_nested_column_keeps_offsets/ast.json b/parser/testdata/00394_new_nested_column_keeps_offsets/ast.json deleted file mode 100644 index 5795f143bb..0000000000 --- a/parser/testdata/00394_new_nested_column_keeps_offsets/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery alter_00394 (children 1)" - }, - { - "explain": " Identifier alter_00394" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001336067, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00394_replaceall_vector_fixed/ast.json b/parser/testdata/00394_replaceall_vector_fixed/ast.json deleted file mode 100644 index b48d4a92de..0000000000 --- a/parser/testdata/00394_replaceall_vector_fixed/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery replaceall (children 1)" - }, - { - "explain": " Identifier replaceall" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001142965, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00395_nullable/ast.json b/parser/testdata/00395_nullable/ast.json deleted file mode 100644 index fd807c9eb1..0000000000 --- a/parser/testdata/00395_nullable/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '----- NULL value -----'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001067926, - "rows_read": 5, - "bytes_read": 193 - } -} diff --git a/parser/testdata/00396_uuid/ast.json b/parser/testdata/00396_uuid/ast.json deleted file mode 100644 index 0db659ebb3..0000000000 --- a/parser/testdata/00396_uuid/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function UUIDNumToString (alias uuid_string) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFixedString (alias uuid_binary) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function unhex (alias bytes) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '0123456789ABCDEF0123456789ABCDEF' (alias hex)" - }, - { - "explain": " Literal UInt64_16" - }, - { - "explain": " Function equals (alias test1) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function hex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function UUIDStringToNum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier uuid_string" - }, - { - "explain": " Identifier hex" - }, - { - "explain": " Function equals (alias test2) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function UUIDStringToNum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier uuid_string" - }, - { - "explain": " Identifier bytes" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.001275309, - "rows_read": 26, - "bytes_read": 1170 - } -} diff --git a/parser/testdata/00396_uuid_v7/ast.json b/parser/testdata/00396_uuid_v7/ast.json deleted file mode 100644 index 764260012d..0000000000 --- a/parser/testdata/00396_uuid_v7/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '-- UUIDToNum --'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001365315, - "rows_read": 5, - "bytes_read": 186 - } -} diff --git a/parser/testdata/00397_tsv_format_synonym/ast.json b/parser/testdata/00397_tsv_format_synonym/ast.json deleted file mode 100644 index caf45aaaa0..0000000000 --- a/parser/testdata/00397_tsv_format_synonym/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function arrayJoin (alias arr) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3]" - }, - { - "explain": " Literal 'hello' (alias s1)" - }, - { - "explain": " Literal 'world' (alias s2)" - }, - { - "explain": " Identifier TabSeparated" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001041781, - "rows_read": 10, - "bytes_read": 410 - } -} diff --git a/parser/testdata/00399_group_uniq_array_date_datetime/ast.json b/parser/testdata/00399_group_uniq_array_date_datetime/ast.json deleted file mode 100644 index 5f32f1d135..0000000000 --- a/parser/testdata/00399_group_uniq_array_date_datetime/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery grop_uniq_array_date (children 1)" - }, - { - "explain": " Identifier grop_uniq_array_date" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00130867, - "rows_read": 2, - "bytes_read": 92 - } -} diff --git a/parser/testdata/00401_merge_and_stripelog/ast.json b/parser/testdata/00401_merge_and_stripelog/ast.json deleted file mode 100644 index 6b5d57e7a0..0000000000 --- a/parser/testdata/00401_merge_and_stripelog/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery stripe1 (children 1)" - }, - { - "explain": " Identifier stripe1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000940647, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00402_nan_and_extremes/ast.json b/parser/testdata/00402_nan_and_extremes/ast.json deleted file mode 100644 index 9f1b9f0e43..0000000000 --- a/parser/testdata/00402_nan_and_extremes/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_3, UInt64_1, UInt64_2]" - }, - { - "explain": " Set" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001112525, - "rows_read": 8, - "bytes_read": 304 - } -} diff --git a/parser/testdata/00403_to_start_of_day/ast.json b/parser/testdata/00403_to_start_of_day/ast.json deleted file mode 100644 index 060adcb2e8..0000000000 --- a/parser/testdata/00403_to_start_of_day/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toStartOfDay (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function now (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function now (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001048913, - "rows_read": 16, - "bytes_read": 643 - } -} diff --git a/parser/testdata/00404_null_literal/ast.json b/parser/testdata/00404_null_literal/ast.json deleted file mode 100644 index 00a0423818..0000000000 --- a/parser/testdata/00404_null_literal/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function isNull (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal NULL" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001093264, - "rows_read": 7, - "bytes_read": 255 - } -} diff --git a/parser/testdata/00405_output_format_pretty_color/ast.json b/parser/testdata/00405_output_format_pretty_color/ast.json deleted file mode 100644 index 823aeb230d..0000000000 --- a/parser/testdata/00405_output_format_pretty_color/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001454107, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00405_pretty_formats/ast.json b/parser/testdata/00405_pretty_formats/ast.json deleted file mode 100644 index e451f7fa84..0000000000 --- a/parser/testdata/00405_pretty_formats/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001284782, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00406_tuples_with_nulls/ast.json b/parser/testdata/00406_tuples_with_nulls/ast.json deleted file mode 100644 index b195d6d8c1..0000000000 --- a/parser/testdata/00406_tuples_with_nulls/ast.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (alias tuple) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function nullIf (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function nullIf (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Identifier PrettyCompactNoEscapes" - } - ], - - "rows": 29, - - "statistics": - { - "elapsed": 0.001342323, - "rows_read": 29, - "bytes_read": 1168 - } -} diff --git a/parser/testdata/00409_shard_limit_by/ast.json b/parser/testdata/00409_shard_limit_by/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00409_shard_limit_by/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00410_aggregation_combinators_with_arenas/ast.json b/parser/testdata/00410_aggregation_combinators_with_arenas/ast.json deleted file mode 100644 index 3d6665c25f..0000000000 --- a/parser/testdata/00410_aggregation_combinators_with_arenas/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001044609, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00411_long_accurate_number_comparison_float/ast.json b/parser/testdata/00411_long_accurate_number_comparison_float/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00411_long_accurate_number_comparison_float/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00411_merge_tree_where_const_in_set/ast.json b/parser/testdata/00411_merge_tree_where_const_in_set/ast.json deleted file mode 100644 index 9b118a6e5a..0000000000 --- a/parser/testdata/00411_merge_tree_where_const_in_set/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery const_in_const (children 1)" - }, - { - "explain": " Identifier const_in_const" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001282887, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00412_logical_expressions_optimizer/ast.json b/parser/testdata/00412_logical_expressions_optimizer/ast.json deleted file mode 100644 index e1edee7838..0000000000 --- a/parser/testdata/00412_logical_expressions_optimizer/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery merge_tree (children 1)" - }, - { - "explain": " Identifier merge_tree" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001432084, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00413_distinct/ast.json b/parser/testdata/00413_distinct/ast.json deleted file mode 100644 index a5e9a8e7d2..0000000000 --- a/parser/testdata/00413_distinct/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery distinct (children 1)" - }, - { - "explain": " Identifier distinct" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001348942, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00413_least_greatest_new_behavior/ast.json b/parser/testdata/00413_least_greatest_new_behavior/ast.json deleted file mode 100644 index 27db7aacc7..0000000000 --- a/parser/testdata/00413_least_greatest_new_behavior/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function least (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " Literal UInt64_18446744073709551615" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greatest (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " Literal UInt64_18446744073709551615" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001319679, - "rows_read": 16, - "bytes_read": 688 - } -} diff --git a/parser/testdata/00414_time_zones_direct_conversion/ast.json b/parser/testdata/00414_time_zones_direct_conversion/ast.json deleted file mode 100644 index b6d624bbf8..0000000000 --- a/parser/testdata/00414_time_zones_direct_conversion/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function plus (alias ts) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1301146200" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1800" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toString (alias time_in_sydney) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier ts" - }, - { - "explain": " Literal 'Australia\/Sydney'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_7" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001587451, - "rows_read": 22, - "bytes_read": 899 - } -} diff --git a/parser/testdata/00420_null_in_scalar_subqueries/ast.json b/parser/testdata/00420_null_in_scalar_subqueries/ast.json deleted file mode 100644 index 0ebccc5e23..0000000000 --- a/parser/testdata/00420_null_in_scalar_subqueries/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001179807, - "rows_read": 11, - "bytes_read": 416 - } -} diff --git a/parser/testdata/00422_hash_function_constexpr/ast.json b/parser/testdata/00422_hash_function_constexpr/ast.json deleted file mode 100644 index 61733fd3ba..0000000000 --- a/parser/testdata/00422_hash_function_constexpr/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function cityHash64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'abc'" - }, - { - "explain": " Function cityHash64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'abc'" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001583993, - "rows_read": 12, - "bytes_read": 459 - } -} diff --git a/parser/testdata/00423_storage_log_single_thread/ast.json b/parser/testdata/00423_storage_log_single_thread/ast.json deleted file mode 100644 index 30537f6ef6..0000000000 --- a/parser/testdata/00423_storage_log_single_thread/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery log (children 1)" - }, - { - "explain": " Identifier log" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001291057, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00424_shard_aggregate_functions_of_nullable/ast.json b/parser/testdata/00424_shard_aggregate_functions_of_nullable/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00424_shard_aggregate_functions_of_nullable/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00425_count_nullable/ast.json b/parser/testdata/00425_count_nullable/ast.json deleted file mode 100644 index 6d1977ddda..0000000000 --- a/parser/testdata/00425_count_nullable/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number (alias x)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001295395, - "rows_read": 20, - "bytes_read": 850 - } -} diff --git a/parser/testdata/00426_nulls_sorting/ast.json b/parser/testdata/00426_nulls_sorting/ast.json deleted file mode 100644 index c06620623e..0000000000 --- a/parser/testdata/00426_nulls_sorting/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_0, UInt64_0, UInt64_0, UInt64_0, UInt64_0, UInt64_0, UInt64_0, UInt64_0, UInt64_0, UInt64_0, UInt64_0, UInt64_1, UInt64_2, UInt64_2, UInt64_3, UInt64_4, UInt64_12, NULL]" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001080606, - "rows_read": 10, - "bytes_read": 549 - } -} diff --git a/parser/testdata/00429_point_in_ellipses/ast.json b/parser/testdata/00429_point_in_ellipses/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00429_point_in_ellipses/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00431_if_nulls/ast.json b/parser/testdata/00431_if_nulls/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00431_if_nulls/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00432_aggregate_function_scalars_and_constants/ast.json b/parser/testdata/00432_aggregate_function_scalars_and_constants/ast.json deleted file mode 100644 index 616d12219d..0000000000 --- a/parser/testdata/00432_aggregate_function_scalars_and_constants/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery agg_func_col (children 1)" - }, - { - "explain": " Identifier agg_func_col" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001208278, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/00433_ifnull/ast.json b/parser/testdata/00433_ifnull/ast.json deleted file mode 100644 index f304790a11..0000000000 --- a/parser/testdata/00433_ifnull/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function ifNull (alias res) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'x'" - }, - { - "explain": " Literal 'y'" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier res" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001174763, - "rows_read": 11, - "bytes_read": 403 - } -} diff --git a/parser/testdata/00434_tonullable/ast.json b/parser/testdata/00434_tonullable/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00434_tonullable/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00435_coalesce/ast.json b/parser/testdata/00435_coalesce/ast.json deleted file mode 100644 index f90e56c278..0000000000 --- a/parser/testdata/00435_coalesce/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function coalesce (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function coalesce (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Function coalesce (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal NULL" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001351996, - "rows_read": 13, - "bytes_read": 460 - } -} diff --git a/parser/testdata/00436_convert_charset/ast.json b/parser/testdata/00436_convert_charset/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00436_convert_charset/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00436_fixed_string_16_comparisons/ast.json b/parser/testdata/00436_fixed_string_16_comparisons/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00436_fixed_string_16_comparisons/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00437_nulls_first_last/ast.json b/parser/testdata/00437_nulls_first_last/ast.json deleted file mode 100644 index 2e90510237..0000000000 --- a/parser/testdata/00437_nulls_first_last/ast.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " Function toFloat64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 44, - - "statistics": - { - "elapsed": 0.001639807, - "rows_read": 44, - "bytes_read": 1938 - } -} diff --git a/parser/testdata/00438_bit_rotate/ast.json b/parser/testdata/00438_bit_rotate/ast.json deleted file mode 100644 index 4afdb6ef32..0000000000 --- a/parser/testdata/00438_bit_rotate/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function hex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bitRotateLeft (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_9223372036854775809" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001066124, - "rows_read": 10, - "bytes_read": 399 - } -} diff --git a/parser/testdata/00439_fixed_string_filter/ast.json b/parser/testdata/00439_fixed_string_filter/ast.json deleted file mode 100644 index 84f599b02e..0000000000 --- a/parser/testdata/00439_fixed_string_filter/ast.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFixedString (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_20" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal 'Hello'" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_50" - }, - { - "explain": " Function notEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal '\\0\\0\\0\\0\\0'" - } - ], - - "rows": 33, - - "statistics": - { - "elapsed": 0.001483817, - "rows_read": 33, - "bytes_read": 1398 - } -} diff --git a/parser/testdata/00440_nulls_merge_tree/ast.json b/parser/testdata/00440_nulls_merge_tree/ast.json deleted file mode 100644 index 25e53ff4b2..0000000000 --- a/parser/testdata/00440_nulls_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nulls (children 1)" - }, - { - "explain": " Identifier nulls" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000989445, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00441_nulls_in/ast.json b/parser/testdata/00441_nulls_in/ast.json deleted file mode 100644 index 53dc8aedf9..0000000000 --- a/parser/testdata/00441_nulls_in/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal Tuple_(UInt64_1, NULL, UInt64_3)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_5" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001295171, - "rows_read": 13, - "bytes_read": 516 - } -} diff --git a/parser/testdata/00442_filter_by_nullable/ast.json b/parser/testdata/00442_filter_by_nullable/ast.json deleted file mode 100644 index 99ddd82518..0000000000 --- a/parser/testdata/00442_filter_by_nullable/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toNullable (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001388768, - "rows_read": 17, - "bytes_read": 688 - } -} diff --git a/parser/testdata/00444_join_use_nulls/ast.json b/parser/testdata/00444_join_use_nulls/ast.json deleted file mode 100644 index 7fa505acdf..0000000000 --- a/parser/testdata/00444_join_use_nulls/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001118492, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00445_join_nullable_keys/ast.json b/parser/testdata/00445_join_nullable_keys/ast.json deleted file mode 100644 index df66b21f2d..0000000000 --- a/parser/testdata/00445_join_nullable_keys/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001125124, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00446_clear_column_in_partition_zookeeper_long/ast.json b/parser/testdata/00446_clear_column_in_partition_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00446_clear_column_in_partition_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00447_foreach_modifier/ast.json b/parser/testdata/00447_foreach_modifier/ast.json deleted file mode 100644 index a96f825180..0000000000 --- a/parser/testdata/00447_foreach_modifier/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery data (children 3)" - }, - { - "explain": " Identifier data" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration sketch (children 1)" - }, - { - "explain": " DataType Array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " DataType Int8" - }, - { - "explain": " Storage definition (children 2)" - }, - { - "explain": " Function MergeTree" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001510638, - "rows_read": 12, - "bytes_read": 422 - } -} diff --git a/parser/testdata/00448_replicate_nullable_tuple_generic/ast.json b/parser/testdata/00448_replicate_nullable_tuple_generic/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00448_replicate_nullable_tuple_generic/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00448_to_string_cut_to_zero/ast.json b/parser/testdata/00448_to_string_cut_to_zero/ast.json deleted file mode 100644 index 4141948cfe..0000000000 --- a/parser/testdata/00448_to_string_cut_to_zero/ast.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toStringCutToZero (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000" - } - ], - - "rows": 28, - - "statistics": - { - "elapsed": 0.00147051, - "rows_read": 28, - "bytes_read": 1186 - } -} diff --git a/parser/testdata/00449_filter_array_nullable_tuple/ast.json b/parser/testdata/00449_filter_array_nullable_tuple/ast.json deleted file mode 100644 index 1f5e2c79bd..0000000000 --- a/parser/testdata/00449_filter_array_nullable_tuple/ast.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function range (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function length (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 30, - - "statistics": - { - "elapsed": 0.00139412, - "rows_read": 30, - "bytes_read": 1234 - } -} diff --git a/parser/testdata/00450_higher_order_and_nullable/ast.json b/parser/testdata/00450_higher_order_and_nullable/ast.json deleted file mode 100644 index b0d139238f..0000000000 --- a/parser/testdata/00450_higher_order_and_nullable/ast.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 30, - - "statistics": - { - "elapsed": 0.001495722, - "rows_read": 30, - "bytes_read": 1195 - } -} diff --git a/parser/testdata/00451_left_array_join_and_constants/ast.json b/parser/testdata/00451_left_array_join_and_constants/ast.json deleted file mode 100644 index cfb6ff53bf..0000000000 --- a/parser/testdata/00451_left_array_join_and_constants/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " Identifier element" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1] (alias arr)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " ArrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier arr (alias element)" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001136843, - "rows_read": 19, - "bytes_read": 779 - } -} diff --git a/parser/testdata/00452_left_array_join_and_nullable/ast.json b/parser/testdata/00452_left_array_join_and_nullable/ast.json deleted file mode 100644 index 856d751caa..0000000000 --- a/parser/testdata/00452_left_array_join_and_nullable/ast.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function emptyArrayToSingle (alias arr) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function nullIf (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function emptyArrayUInt8 (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal Array_[UInt64_1]" - }, - { - "explain": " Literal Array_[UInt64_2, UInt64_3]" - } - ], - - "rows": 25, - - "statistics": - { - "elapsed": 0.001622711, - "rows_read": 25, - "bytes_read": 1082 - } -} diff --git a/parser/testdata/00453_cast_enum/ast.json b/parser/testdata/00453_cast_enum/ast.json deleted file mode 100644 index 1e8127c29c..0000000000 --- a/parser/testdata/00453_cast_enum/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery cast_enums (children 1)" - }, - { - "explain": " Identifier cast_enums" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001140458, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00453_top_k/ast.json b/parser/testdata/00453_top_k/ast.json deleted file mode 100644 index be2397244e..0000000000 --- a/parser/testdata/00453_top_k/ast.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arraySort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function topK (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (alias n) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100000" - } - ], - - "rows": 38, - - "statistics": - { - "elapsed": 0.001631439, - "rows_read": 38, - "bytes_read": 1649 - } -} diff --git a/parser/testdata/00456_alter_nullable/ast.json b/parser/testdata/00456_alter_nullable/ast.json deleted file mode 100644 index b71bff0e21..0000000000 --- a/parser/testdata/00456_alter_nullable/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nullable_alter (children 1)" - }, - { - "explain": " Identifier nullable_alter" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001404429, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00457_log_tinylog_stripelog_nullable/ast.json b/parser/testdata/00457_log_tinylog_stripelog_nullable/ast.json deleted file mode 100644 index cd871a5e34..0000000000 --- a/parser/testdata/00457_log_tinylog_stripelog_nullable/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nullable_00457 (children 1)" - }, - { - "explain": " Identifier nullable_00457" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001630252, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00458_merge_type_cast/ast.json b/parser/testdata/00458_merge_type_cast/ast.json deleted file mode 100644 index d89b4342bb..0000000000 --- a/parser/testdata/00458_merge_type_cast/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal ' UInt32 | UInt64 '" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001538415, - "rows_read": 5, - "bytes_read": 188 - } -} diff --git a/parser/testdata/00459_group_array_insert_at/ast.json b/parser/testdata/00459_group_array_insert_at/ast.json deleted file mode 100644 index f8f6d0940c..0000000000 --- a/parser/testdata/00459_group_array_insert_at/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupArrayInsertAt (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001412684, - "rows_read": 27, - "bytes_read": 1127 - } -} diff --git a/parser/testdata/00460_vertical_and_totals_extremes/ast.json b/parser/testdata/00460_vertical_and_totals_extremes/ast.json deleted file mode 100644 index 82a18a85ab..0000000000 --- a/parser/testdata/00460_vertical_and_totals_extremes/ast.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (alias k) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Identifier Vertical" - } - ], - - "rows": 30, - - "statistics": - { - "elapsed": 0.00130698, - "rows_read": 30, - "bytes_read": 1200 - } -} diff --git a/parser/testdata/00461_default_value_of_argument_type/ast.json b/parser/testdata/00461_default_value_of_argument_type/ast.json deleted file mode 100644 index 4d3a090dca..0000000000 --- a/parser/testdata/00461_default_value_of_argument_type/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function defaultValueOfArgumentType (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3]" - }, - { - "explain": " Function defaultValueOfArgumentType (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[Array_[UInt64_1]]]" - }, - { - "explain": " Function defaultValueOfArgumentType (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'Hello'" - }, - { - "explain": " Function toTimeZone (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function now (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal 'UTC'" - }, - { - "explain": " Function today (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001645719, - "rows_read": 23, - "bytes_read": 980 - } -} diff --git a/parser/testdata/00462_json_true_false_literals/ast.json b/parser/testdata/00462_json_true_false_literals/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00462_json_true_false_literals/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00464_array_element_out_of_range/ast.json b/parser/testdata/00464_array_element_out_of_range/ast.json deleted file mode 100644 index e2f0853979..0000000000 --- a/parser/testdata/00464_array_element_out_of_range/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function arrayElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Function arrayElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_1, NULL, UInt64_2]" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Function arrayElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_('1', UInt64_1)" - }, - { - "explain": " Literal Tuple_('2', UInt64_2)" - }, - { - "explain": " Literal Int64_-3" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.00129614, - "rows_read": 19, - "bytes_read": 772 - } -} diff --git a/parser/testdata/00464_sort_all_constant_columns/ast.json b/parser/testdata/00464_sort_all_constant_columns/ast.json deleted file mode 100644 index 9e7df81e26..0000000000 --- a/parser/testdata/00464_sort_all_constant_columns/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " Literal UInt64_2 (alias y)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001253124, - "rows_read": 18, - "bytes_read": 708 - } -} diff --git a/parser/testdata/00465_nullable_default/ast.json b/parser/testdata/00465_nullable_default/ast.json deleted file mode 100644 index ba69c9aa17..0000000000 --- a/parser/testdata/00465_nullable_default/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nullable_00465 (children 1)" - }, - { - "explain": " Identifier nullable_00465" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001297712, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00466_comments_in_keyword/ast.json b/parser/testdata/00466_comments_in_keyword/ast.json deleted file mode 100644 index f9e5a5f986..0000000000 --- a/parser/testdata/00466_comments_in_keyword/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001318009, - "rows_read": 8, - "bytes_read": 289 - } -} diff --git a/parser/testdata/00467_qualified_names/ast.json b/parser/testdata/00467_qualified_names/ast.json deleted file mode 100644 index 9ea009f915..0000000000 --- a/parser/testdata/00467_qualified_names/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001731749, - "rows_read": 9, - "bytes_read": 352 - } -} diff --git a/parser/testdata/00468_array_join_multiple_arrays_and_use_original_column/ast.json b/parser/testdata/00468_array_join_multiple_arrays_and_use_original_column/ast.json deleted file mode 100644 index d25313c315..0000000000 --- a/parser/testdata/00468_array_join_multiple_arrays_and_use_original_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nested (children 1)" - }, - { - "explain": " Identifier nested" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001052644, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00469_comparison_of_strings_containing_null_char/ast.json b/parser/testdata/00469_comparison_of_strings_containing_null_char/ast.json deleted file mode 100644 index 327ed9f81a..0000000000 --- a/parser/testdata/00469_comparison_of_strings_containing_null_char/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '**** constant-constant comparisons ****'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.00129716, - "rows_read": 5, - "bytes_read": 210 - } -} diff --git a/parser/testdata/00470_identifiers_in_double_quotes/ast.json b/parser/testdata/00470_identifiers_in_double_quotes/ast.json deleted file mode 100644 index 314cd22040..0000000000 --- a/parser/testdata/00470_identifiers_in_double_quotes/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier numbers.number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001380895, - "rows_read": 10, - "bytes_read": 392 - } -} diff --git a/parser/testdata/00471_sql_style_quoting/ast.json b/parser/testdata/00471_sql_style_quoting/ast.json deleted file mode 100644 index a8c45c31b6..0000000000 --- a/parser/testdata/00471_sql_style_quoting/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier ta`ble.dummy" - }, - { - "explain": " Literal 'hello\\'world' (alias hel\"lo)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one (alias ta`ble)" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001214776, - "rows_read": 10, - "bytes_read": 423 - } -} diff --git a/parser/testdata/00472_compare_uuid_with_constant_string/ast.json b/parser/testdata/00472_compare_uuid_with_constant_string/ast.json deleted file mode 100644 index 36951d96ac..0000000000 --- a/parser/testdata/00472_compare_uuid_with_constant_string/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toUUID (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '61f0c404-5cb3-11e7-907b-a6006ad3dba0'" - }, - { - "explain": " Literal '61f0c404-5cb3-11e7-907b-a6006ad3dba0'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001332885, - "rows_read": 10, - "bytes_read": 435 - } -} diff --git a/parser/testdata/00472_create_view_if_not_exists/ast.json b/parser/testdata/00472_create_view_if_not_exists/ast.json deleted file mode 100644 index 4f6dd75a78..0000000000 --- a/parser/testdata/00472_create_view_if_not_exists/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_00472 (children 1)" - }, - { - "explain": " Identifier t_00472" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00121735, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00475_in_join_db_table/ast.json b/parser/testdata/00475_in_join_db_table/ast.json deleted file mode 100644 index e30130eb01..0000000000 --- a/parser/testdata/00475_in_join_db_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery set (children 1)" - }, - { - "explain": " Identifier set" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001306747, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00476_pretty_formats_and_widths/ast.json b/parser/testdata/00476_pretty_formats_and_widths/ast.json deleted file mode 100644 index bab1100e74..0000000000 --- a/parser/testdata/00476_pretty_formats_and_widths/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001242716, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00477_parsing_data_types/ast.json b/parser/testdata/00477_parsing_data_types/ast.json deleted file mode 100644 index d5df48c671..0000000000 --- a/parser/testdata/00477_parsing_data_types/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_00477 (children 1)" - }, - { - "explain": " Identifier t_00477" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001076469, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00479_date_and_datetime_to_number/ast.json b/parser/testdata/00479_date_and_datetime_to_number/ast.json deleted file mode 100644 index fabeca7afd..0000000000 --- a/parser/testdata/00479_date_and_datetime_to_number/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toYYYYMM (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2017-07-21'" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001159284, - "rows_read": 9, - "bytes_read": 351 - } -} diff --git a/parser/testdata/00480_mac_addresses/ast.json b/parser/testdata/00480_mac_addresses/ast.json deleted file mode 100644 index 77e745dd2f..0000000000 --- a/parser/testdata/00480_mac_addresses/ast.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 9)" - }, - { - "explain": " Literal '01:02:03:04:05:06' (alias mac_str)" - }, - { - "explain": " Function MACStringToNum (alias mac_num) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier mac_str" - }, - { - "explain": " Function hex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier mac_num" - }, - { - "explain": " Function MACNumToString (alias mac_str2) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier mac_num" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier mac_str" - }, - { - "explain": " Identifier mac_str2" - }, - { - "explain": " Function MACStringToOUI (alias oui_num) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier mac_str" - }, - { - "explain": " Function hex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier oui_num" - }, - { - "explain": " Function MACStringToOUI (alias oui_num2) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function substring (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier mac_str" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_8" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier oui_num" - }, - { - "explain": " Identifier oui_num2" - } - ], - - "rows": 35, - - "statistics": - { - "elapsed": 0.001316276, - "rows_read": 35, - "bytes_read": 1411 - } -} diff --git a/parser/testdata/00481_create_view_for_null/ast.json b/parser/testdata/00481_create_view_for_null/ast.json deleted file mode 100644 index 2db2568c55..0000000000 --- a/parser/testdata/00481_create_view_for_null/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery null_00481 (children 1)" - }, - { - "explain": " Identifier null_00481" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000986069, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00481_reading_from_last_granula/ast.json b/parser/testdata/00481_reading_from_last_granula/ast.json deleted file mode 100644 index 5cc14ae0ed..0000000000 --- a/parser/testdata/00481_reading_from_last_granula/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab_00481 (children 1)" - }, - { - "explain": " Identifier tab_00481" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001290182, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00482_subqueries_and_aliases/ast.json b/parser/testdata/00482_subqueries_and_aliases/ast.json deleted file mode 100644 index 46b900bad0..0000000000 --- a/parser/testdata/00482_subqueries_and_aliases/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001228451, - "rows_read": 19, - "bytes_read": 754 - } -} diff --git a/parser/testdata/00483_cast_syntax/ast.json b/parser/testdata/00483_cast_syntax/ast.json deleted file mode 100644 index 0a9e82f596..0000000000 --- a/parser/testdata/00483_cast_syntax/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'Int8'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.00121161, - "rows_read": 8, - "bytes_read": 285 - } -} diff --git a/parser/testdata/00483_reading_from_array_structure/ast.json b/parser/testdata/00483_reading_from_array_structure/ast.json deleted file mode 100644 index 28eb5dd1a7..0000000000 --- a/parser/testdata/00483_reading_from_array_structure/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_00483 (children 1)" - }, - { - "explain": " Identifier table_00483" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001278537, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00484_preferred_max_column_in_block_size_bytes/ast.json b/parser/testdata/00484_preferred_max_column_in_block_size_bytes/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00484_preferred_max_column_in_block_size_bytes/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00486_if_fixed_string/ast.json b/parser/testdata/00486_if_fixed_string/ast.json deleted file mode 100644 index 34371b20c1..0000000000 --- a/parser/testdata/00486_if_fixed_string/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " Literal 'world'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_5" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001253303, - "rows_read": 17, - "bytes_read": 638 - } -} diff --git a/parser/testdata/00487_if_array_fixed_string/ast.json b/parser/testdata/00487_if_array_fixed_string/ast.json deleted file mode 100644 index 2889f4ee83..0000000000 --- a/parser/testdata/00487_if_array_fixed_string/ast.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Literal Array_['hello', 'world']" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Literal Array_['a', 'b', 'c']" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_4" - } - ], - - "rows": 39, - - "statistics": - { - "elapsed": 0.001197552, - "rows_read": 39, - "bytes_read": 1601 - } -} diff --git a/parser/testdata/00488_column_name_primary/ast.json b/parser/testdata/00488_column_name_primary/ast.json deleted file mode 100644 index 3fddc9fa6c..0000000000 --- a/parser/testdata/00488_column_name_primary/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery primary (children 1)" - }, - { - "explain": " Identifier primary" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001133642, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00488_non_ascii_column_names/ast.json b/parser/testdata/00488_non_ascii_column_names/ast.json deleted file mode 100644 index f771a9268c..0000000000 --- a/parser/testdata/00488_non_ascii_column_names/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery non_ascii (children 1)" - }, - { - "explain": " Identifier non_ascii" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001245757, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00489_pk_subexpression/ast.json b/parser/testdata/00489_pk_subexpression/ast.json deleted file mode 100644 index 5e90df2812..0000000000 --- a/parser/testdata/00489_pk_subexpression/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery pk (children 1)" - }, - { - "explain": " Identifier pk" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001339584, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00490_special_line_separators_and_characters_outside_of_bmp/ast.json b/parser/testdata/00490_special_line_separators_and_characters_outside_of_bmp/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00490_special_line_separators_and_characters_outside_of_bmp/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00490_with_select/ast.json b/parser/testdata/00490_with_select/ast.json deleted file mode 100644 index a685bda053..0000000000 --- a/parser/testdata/00490_with_select/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001365504, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00491_shard_distributed_and_aliases_in_where_having/ast.json b/parser/testdata/00491_shard_distributed_and_aliases_in_where_having/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00491_shard_distributed_and_aliases_in_where_having/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00492_drop_temporary_table/ast.json b/parser/testdata/00492_drop_temporary_table/ast.json deleted file mode 100644 index 85c0ac376d..0000000000 --- a/parser/testdata/00492_drop_temporary_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery temp_tab (children 1)" - }, - { - "explain": " Identifier temp_tab" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001286529, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00494_shard_alias_substitution_bug/ast.json b/parser/testdata/00494_shard_alias_substitution_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00494_shard_alias_substitution_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00495_reading_const_zero_column/ast.json b/parser/testdata/00495_reading_const_zero_column/ast.json deleted file mode 100644 index eb33ee88e4..0000000000 --- a/parser/testdata/00495_reading_const_zero_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery one_table (children 1)" - }, - { - "explain": " Identifier one_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001450921, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00498_array_functions_concat_slice_push_pop/ast.json b/parser/testdata/00498_array_functions_concat_slice_push_pop/ast.json deleted file mode 100644 index 9599a05b51..0000000000 --- a/parser/testdata/00498_array_functions_concat_slice_push_pop/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'const args'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001043555, - "rows_read": 5, - "bytes_read": 181 - } -} diff --git a/parser/testdata/00498_bitwise_aggregate_functions/ast.json b/parser/testdata/00498_bitwise_aggregate_functions/ast.json deleted file mode 100644 index 42ea50818f..0000000000 --- a/parser/testdata/00498_bitwise_aggregate_functions/ast.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Function modulo (alias k) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Function groupArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function groupBitOr (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function groupBitAnd (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function groupBitXor (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_20" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - } - ], - - "rows": 39, - - "statistics": - { - "elapsed": 0.001756765, - "rows_read": 39, - "bytes_read": 1542 - } -} diff --git a/parser/testdata/00499_json_enum_insert/ast.json b/parser/testdata/00499_json_enum_insert/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00499_json_enum_insert/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00500_point_in_polygon/ast.json b/parser/testdata/00500_point_in_polygon/ast.json deleted file mode 100644 index c7a3d43252..0000000000 --- a/parser/testdata/00500_point_in_polygon/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'inner'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001247223, - "rows_read": 5, - "bytes_read": 176 - } -} diff --git a/parser/testdata/00500_point_in_polygon_2d_const/ast.json b/parser/testdata/00500_point_in_polygon_2d_const/ast.json deleted file mode 100644 index dccad09f87..0000000000 --- a/parser/testdata/00500_point_in_polygon_2d_const/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function pointInPolygon (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_0)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_0)" - }, - { - "explain": " Literal Tuple_(UInt64_10, UInt64_0)" - }, - { - "explain": " Literal Tuple_(UInt64_10, UInt64_10)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_10)" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001476042, - "rows_read": 15, - "bytes_read": 667 - } -} diff --git a/parser/testdata/00500_point_in_polygon_3d_const/ast.json b/parser/testdata/00500_point_in_polygon_3d_const/ast.json deleted file mode 100644 index 3becdf37ac..0000000000 --- a/parser/testdata/00500_point_in_polygon_3d_const/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery points_test (children 1)" - }, - { - "explain": " Identifier points_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001169329, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00500_point_in_polygon_bug/ast.json b/parser/testdata/00500_point_in_polygon_bug/ast.json deleted file mode 100644 index e6ebe2cd5c..0000000000 --- a/parser/testdata/00500_point_in_polygon_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery coords (children 1)" - }, - { - "explain": " Identifier coords" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001133819, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00500_point_in_polygon_bug_2/ast.json b/parser/testdata/00500_point_in_polygon_bug_2/ast.json deleted file mode 100644 index 81ba8e1312..0000000000 --- a/parser/testdata/00500_point_in_polygon_bug_2/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function pointInPolygon (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(Float64_35.45285, Float64_58.72587)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 11)" - }, - { - "explain": " Literal Tuple_(Float64_32.947998, Float64_59.506455)" - }, - { - "explain": " Literal Tuple_(Float64_34.222412, Float64_59.215312)" - }, - { - "explain": " Literal Tuple_(Float64_33.343506, Float64_58.551061)" - }, - { - "explain": " Literal Tuple_(Float64_34.859619, Float64_58.938673)" - }, - { - "explain": " Literal Tuple_(Float64_36.463623, Float64_58.528125)" - }, - { - "explain": " Literal Tuple_(Float64_35.397949, Float64_59.215312)" - }, - { - "explain": " Literal Tuple_(Float64_36.804199, Float64_59.495303)" - }, - { - "explain": " Literal Tuple_(Float64_35.2771, Float64_59.50088)" - }, - { - "explain": " Literal Tuple_(Float64_34.892578, Float64_60.267066)" - }, - { - "explain": " Literal Tuple_(Float64_34.343262, Float64_59.517603)" - }, - { - "explain": " Literal Tuple_(Float64_32.947998, Float64_59.506455)" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001226443, - "rows_read": 20, - "bytes_read": 1130 - } -} diff --git a/parser/testdata/00500_point_in_polygon_bug_3_linestring_rotation_precision/ast.json b/parser/testdata/00500_point_in_polygon_bug_3_linestring_rotation_precision/ast.json deleted file mode 100644 index 8c75518f43..0000000000 --- a/parser/testdata/00500_point_in_polygon_bug_3_linestring_rotation_precision/ast.json +++ /dev/null @@ -1,1105 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function pointInPolygon (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(Float64_106.6671509, Float64_10.7674952)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 352)" - }, - { - "explain": " Literal Tuple_(Float64_106.667161868227, Float64_10.7674952)" - }, - { - "explain": " Literal Tuple_(Float64_106.667165727127, Float64_10.7675059912261)" - }, - { - "explain": " Literal Tuple_(Float64_106.667170817563, Float64_10.7674904752629)" - }, - { - "explain": " Literal Tuple_(Float64_106.667229225265, Float64_10.7672278502066)" - }, - { - "explain": " Literal Tuple_(Float64_106.667231193621, Float64_10.7672115129572)" - }, - { - "explain": " Literal Tuple_(Float64_106.667229912029, Float64_10.7671951075415)" - }, - { - "explain": " Literal Tuple_(Float64_106.667225430503, Float64_10.767179274157)" - }, - { - "explain": " Literal Tuple_(Float64_106.667217923927, Float64_10.7671646306786)" - }, - { - "explain": " Literal Tuple_(Float64_106.667207685234, Float64_10.7671517485471)" - }, - { - "explain": " Literal Tuple_(Float64_106.667195113975, Float64_10.7671411304688)" - }, - { - "explain": " Literal Tuple_(Float64_106.667180700725, Float64_10.7671331907989)" - }, - { - "explain": " Literal Tuple_(Float64_106.66716500794, Float64_10.7671282393715)" - }, - { - "explain": " Literal Tuple_(Float64_106.666628232995, Float64_10.7670156787539)" - }, - { - "explain": " Literal Tuple_(Float64_106.666612233649, Float64_10.7670139127584)" - }, - { - "explain": " Literal Tuple_(Float64_106.666596193354, Float64_10.7670152569112)" - }, - { - "explain": " Literal Tuple_(Float64_106.666580711053, Float64_10.7670196610218)" - }, - { - "explain": " Literal Tuple_(Float64_106.666566364856, Float64_10.7670269606408)" - }, - { - "explain": " Literal Tuple_(Float64_106.666553690448, Float64_10.7670368832008)" - }, - { - "explain": " Literal Tuple_(Float64_106.666543161092, Float64_10.767049058194)" - }, - { - "explain": " Literal Tuple_(Float64_106.666535169952, Float64_10.7670630310067)" - }, - { - "explain": " Literal Tuple_(Float64_106.666530015418, Float64_10.7670782798948)" - }, - { - "explain": " Literal Tuple_(Float64_106.666482284259, Float64_10.7672828714379)" - }, - { - "explain": " Literal Tuple_(Float64_106.666480170141, Float64_10.7672985245675)" - }, - { - "explain": " Literal Tuple_(Float64_106.666481048788, Float64_10.7673142953614)" - }, - { - "explain": " Literal Tuple_(Float64_106.666484888609, Float64_10.7673296167758)" - }, - { - "explain": " Literal Tuple_(Float64_106.666491551541, Float64_10.7673439379244)" - }, - { - "explain": " Literal Tuple_(Float64_106.666500798017, Float64_10.7673567438858)" - }, - { - "explain": " Literal Tuple_(Float64_106.666512295576, Float64_10.7673675742178)" - }, - { - "explain": " Literal Tuple_(Float64_106.666525630821, Float64_10.7673760395122)" - }, - { - "explain": " Literal Tuple_(Float64_106.667032331859, Float64_10.7676338521733)" - }, - { - "explain": " Literal Tuple_(Float64_106.6671413386, Float64_10.7676893154858)" - }, - { - "explain": " Literal Tuple_(Float64_106.667371048786, Float64_10.7678061934666)" - }, - { - "explain": " Literal Tuple_(Float64_106.667552760053, Float64_10.7678987010209)" - }, - { - "explain": " Literal Tuple_(Float64_106.667801848625, Float64_10.7680278028917)" - }, - { - "explain": " Literal Tuple_(Float64_106.667817742281, Float64_10.7680340673957)" - }, - { - "explain": " Literal Tuple_(Float64_106.667834579682, Float64_10.7680369577679)" - }, - { - "explain": " Literal Tuple_(Float64_106.66785165264, Float64_10.7680363524383)" - }, - { - "explain": " Literal Tuple_(Float64_106.667868243061, Float64_10.7680322768672)" - }, - { - "explain": " Literal Tuple_(Float64_106.667878683314, Float64_10.7680285412847)" - }, - { - "explain": " Literal Tuple_(Float64_106.667885469819, Float64_10.7680268413536)" - }, - { - "explain": " Literal Tuple_(Float64_106.667892390269, Float64_10.7680258148018)" - }, - { - "explain": " Literal Tuple_(Float64_106.667899378015, Float64_10.7680254715159)" - }, - { - "explain": " Literal Tuple_(Float64_106.667906365761, Float64_10.7680258148018)" - }, - { - "explain": " Literal Tuple_(Float64_106.667913286211, Float64_10.7680268413536)" - }, - { - "explain": " Literal Tuple_(Float64_106.667920072716, Float64_10.7680285412847)" - }, - { - "explain": " Literal Tuple_(Float64_106.667926659921, Float64_10.7680308982244)" - }, - { - "explain": " Literal Tuple_(Float64_106.667932984386, Float64_10.7680338894736)" - }, - { - "explain": " Literal Tuple_(Float64_106.667938985204, Float64_10.7680374862253)" - }, - { - "explain": " Literal Tuple_(Float64_106.667944604583, Float64_10.7680416538412)" - }, - { - "explain": " Literal Tuple_(Float64_106.667949788405, Float64_10.7680463521828)" - }, - { - "explain": " Literal Tuple_(Float64_106.667954486747, Float64_10.7680515360051)" - }, - { - "explain": " Literal Tuple_(Float64_106.667958654362, Float64_10.7680571553826)" - }, - { - "explain": " Literal Tuple_(Float64_106.667962251113, Float64_10.7680631561994)" - }, - { - "explain": " Literal Tuple_(Float64_106.667965242363, Float64_10.7680694806664)" - }, - { - "explain": " Literal Tuple_(Float64_106.667967599303, Float64_10.7680760678724)" - }, - { - "explain": " Literal Tuple_(Float64_106.667969299234, Float64_10.7680828543774)" - }, - { - "explain": " Literal Tuple_(Float64_106.667970926246, Float64_10.7680938227996)" - }, - { - "explain": " Literal Tuple_(Float64_106.667974657027, Float64_10.7681089916695)" - }, - { - "explain": " Literal Tuple_(Float64_106.667981154238, Float64_10.7681231972879)" - }, - { - "explain": " Literal Tuple_(Float64_106.667990189396, Float64_10.7681359400994)" - }, - { - "explain": " Literal Tuple_(Float64_106.668001444773, Float64_10.7681467719897)" - }, - { - "explain": " Literal Tuple_(Float64_106.668014524559, Float64_10.7681553120441)" - }, - { - "explain": " Literal Tuple_(Float64_106.668198488147, Float64_10.7682521458591)" - }, - { - "explain": " Literal Tuple_(Float64_106.669562015793, Float64_10.7689901124345)" - }, - { - "explain": " Literal Tuple_(Float64_106.669614757162, Float64_10.7690820717448)" - }, - { - "explain": " Literal Tuple_(Float64_106.669623023723, Float64_10.7690939566151)" - }, - { - "explain": " Literal Tuple_(Float64_106.669633223154, Float64_10.7691042307472)" - }, - { - "explain": " Literal Tuple_(Float64_106.669645047385, Float64_10.7691125838155)" - }, - { - "explain": " Literal Tuple_(Float64_106.670748051536, Float64_10.7697559307954)" - }, - { - "explain": " Literal Tuple_(Float64_106.670751419717, Float64_10.7697577924329)" - }, - { - "explain": " Literal Tuple_(Float64_106.671035494073, Float64_10.7699063431327)" - }, - { - "explain": " Literal Tuple_(Float64_106.671270162713, Float64_10.7700364834325)" - }, - { - "explain": " Literal Tuple_(Float64_106.67127192876, Float64_10.7700374352053)" - }, - { - "explain": " Literal Tuple_(Float64_106.671437929267, Float64_10.7701243344783)" - }, - { - "explain": " Literal Tuple_(Float64_106.671665917937, Float64_10.7702517637461)" - }, - { - "explain": " Literal Tuple_(Float64_106.67166656035, Float64_10.7702521191025)" - }, - { - "explain": " Literal Tuple_(Float64_106.671943689514, Float64_10.7704038245574)" - }, - { - "explain": " Literal Tuple_(Float64_106.671943806749, Float64_10.7704038886117)" - }, - { - "explain": " Literal Tuple_(Float64_106.6722776446, Float64_10.7705859421916)" - }, - { - "explain": " Literal Tuple_(Float64_106.672278295949, Float64_10.7705862936499)" - }, - { - "explain": " Literal Tuple_(Float64_106.673020324076, Float64_10.7709824352208)" - }, - { - "explain": " Literal Tuple_(Float64_106.673433726727, Float64_10.7712057751884)" - }, - { - "explain": " Literal Tuple_(Float64_106.673694081332, Float64_10.7713489702214)" - }, - { - "explain": " Literal Tuple_(Float64_106.673977066657, Float64_10.7715146655761)" - }, - { - "explain": " Literal Tuple_(Float64_106.674254247937, Float64_10.7716778144336)" - }, - { - "explain": " Literal Tuple_(Float64_106.67440928634, Float64_10.7717698954974)" - }, - { - "explain": " Literal Tuple_(Float64_106.674658478275, Float64_10.7719268836667)" - }, - { - "explain": " Literal Tuple_(Float64_106.674658802254, Float64_10.7719270867325)" - }, - { - "explain": " Literal Tuple_(Float64_106.6748919449, Float64_10.7720724734391)" - }, - { - "explain": " Literal Tuple_(Float64_106.675071660589, Float64_10.7721853602936)" - }, - { - "explain": " Literal Tuple_(Float64_106.675350447469, Float64_10.7723606751059)" - }, - { - "explain": " Literal Tuple_(Float64_106.675350748696, Float64_10.7723608636368)" - }, - { - "explain": " Literal Tuple_(Float64_106.6756252856, Float64_10.7725318758852)" - }, - { - "explain": " Literal Tuple_(Float64_106.675888735092, Float64_10.7726957126602)" - }, - { - "explain": " Literal Tuple_(Float64_106.676114500069, Float64_10.7728361211927)" - }, - { - "explain": " Literal Tuple_(Float64_106.676379504941, Float64_10.7730007692002)" - }, - { - "explain": " Literal Tuple_(Float64_106.67661713771, Float64_10.7731502653527)" - }, - { - "explain": " Literal Tuple_(Float64_106.676617572241, Float64_10.773150536857)" - }, - { - "explain": " Literal Tuple_(Float64_106.676852995814, Float64_10.7732966297465)" - }, - { - "explain": " Literal Tuple_(Float64_106.677284352687, Float64_10.7735807849214)" - }, - { - "explain": " Literal Tuple_(Float64_106.677738143311, Float64_10.7738851794554)" - }, - { - "explain": " Literal Tuple_(Float64_106.677752655777, Float64_10.7738929549383)" - }, - { - "explain": " Literal Tuple_(Float64_106.677768414072, Float64_10.773897724206)" - }, - { - "explain": " Literal Tuple_(Float64_106.677784802596, Float64_10.7738993009456)" - }, - { - "explain": " Literal Tuple_(Float64_106.677801181124, Float64_10.7738976235612)" - }, - { - "explain": " Literal Tuple_(Float64_106.677816909825, Float64_10.7738927575805)" - }, - { - "explain": " Literal Tuple_(Float64_106.677831374252, Float64_10.7738848930944)" - }, - { - "explain": " Literal Tuple_(Float64_106.677844009349, Float64_10.7738743373313)" - }, - { - "explain": " Literal Tuple_(Float64_106.677920079221, Float64_10.7737967983562)" - }, - { - "explain": " Literal Tuple_(Float64_106.678239245717, Float64_10.7735243703649)" - }, - { - "explain": " Literal Tuple_(Float64_106.67839926068, Float64_10.7733892116467)" - }, - { - "explain": " Literal Tuple_(Float64_106.678400691571, Float64_10.7733879749217)" - }, - { - "explain": " Literal Tuple_(Float64_106.678515896101, Float64_10.7732860955802)" - }, - { - "explain": " Literal Tuple_(Float64_106.678557979259, Float64_10.7732504310319)" - }, - { - "explain": " Literal Tuple_(Float64_106.67855930664, Float64_10.7732492818517)" - }, - { - "explain": " Literal Tuple_(Float64_106.679033975331, Float64_10.7728295048433)" - }, - { - "explain": " Literal Tuple_(Float64_106.679053201911, Float64_10.772844898411)" - }, - { - "explain": " Literal Tuple_(Float64_106.679632133733, Float64_10.7733262832973)" - }, - { - "explain": " Literal Tuple_(Float64_106.679771732358, Float64_10.7734524450384)" - }, - { - "explain": " Literal Tuple_(Float64_106.679773325229, Float64_10.7734538481348)" - }, - { - "explain": " Literal Tuple_(Float64_106.680011463819, Float64_10.7736582857586)" - }, - { - "explain": " Literal Tuple_(Float64_106.680175801881, Float64_10.7738018862846)" - }, - { - "explain": " Literal Tuple_(Float64_106.680176891116, Float64_10.7738028216402)" - }, - { - "explain": " Literal Tuple_(Float64_106.680320149367, Float64_10.773923712053)" - }, - { - "explain": " Literal Tuple_(Float64_106.680672123374, Float64_10.7742204563391)" - }, - { - "explain": " Literal Tuple_(Float64_106.68094213423, Float64_10.7744504786771)" - }, - { - "explain": " Literal Tuple_(Float64_106.68094233625, Float64_10.7744506502241)" - }, - { - "explain": " Literal Tuple_(Float64_106.68124725775, Float64_10.7747087432576)" - }, - { - "explain": " Literal Tuple_(Float64_106.681247329066, Float64_10.7747088035527)" - }, - { - "explain": " Literal Tuple_(Float64_106.681470746982, Float64_10.7748974804345)" - }, - { - "explain": " Literal Tuple_(Float64_106.681471338135, Float64_10.7748979749973)" - }, - { - "explain": " Literal Tuple_(Float64_106.681840030697, Float64_10.7752035373868)" - }, - { - "explain": " Literal Tuple_(Float64_106.682304929691, Float64_10.7756040772245)" - }, - { - "explain": " Literal Tuple_(Float64_106.682308650112, Float64_10.7756071005185)" - }, - { - "explain": " Literal Tuple_(Float64_106.682312917236, Float64_10.7756103687835)" - }, - { - "explain": " Literal Tuple_(Float64_106.682359764439, Float64_10.7756490693986)" - }, - { - "explain": " Literal Tuple_(Float64_106.682640114944, Float64_10.7758996628849)" - }, - { - "explain": " Literal Tuple_(Float64_106.682644070655, Float64_10.7759029839554)" - }, - { - "explain": " Literal Tuple_(Float64_106.682711710544, Float64_10.7759562859055)" - }, - { - "explain": " Literal Tuple_(Float64_106.682806505954, Float64_10.7760368956153)" - }, - { - "explain": " Literal Tuple_(Float64_106.68280745353, Float64_10.776037689352)" - }, - { - "explain": " Literal Tuple_(Float64_106.683169164535, Float64_10.7763361378178)" - }, - { - "explain": " Literal Tuple_(Float64_106.68363265876, Float64_10.7767252395911)" - }, - { - "explain": " Literal Tuple_(Float64_106.683677875719, Float64_10.7767650291442)" - }, - { - "explain": " Literal Tuple_(Float64_106.683797775698, Float64_10.77688614766)" - }, - { - "explain": " Literal Tuple_(Float64_106.684138558845, Float64_10.7772306328105)" - }, - { - "explain": " Literal Tuple_(Float64_106.68414063031, Float64_10.7772326552454)" - }, - { - "explain": " Literal Tuple_(Float64_106.684827531639, Float64_10.777880369263)" - }, - { - "explain": " Literal Tuple_(Float64_106.685228619785, Float64_10.7782605077038)" - }, - { - "explain": " Literal Tuple_(Float64_106.685228896163, Float64_10.7782607684525)" - }, - { - "explain": " Literal Tuple_(Float64_106.686025996525, Float64_10.7790093622583)" - }, - { - "explain": " Literal Tuple_(Float64_106.686026813787, Float64_10.7790101368229)" - }, - { - "explain": " Literal Tuple_(Float64_106.68658269265, Float64_10.7795369738106)" - }, - { - "explain": " Literal Tuple_(Float64_106.687194479537, Float64_10.7801158277128)" - }, - { - "explain": " Literal Tuple_(Float64_106.688401155505, Float64_10.7812670656457)" - }, - { - "explain": " Literal Tuple_(Float64_106.688401571342, Float64_10.7812674596561)" - }, - { - "explain": " Literal Tuple_(Float64_106.689622367701, Float64_10.7824162362891)" - }, - { - "explain": " Literal Tuple_(Float64_106.690002723257, Float64_10.7827815572149)" - }, - { - "explain": " Literal Tuple_(Float64_106.690002908997, Float64_10.7827817350625)" - }, - { - "explain": " Literal Tuple_(Float64_106.690359062158, Float64_10.7831217027417)" - }, - { - "explain": " Literal Tuple_(Float64_106.690359638585, Float64_10.7831222477508)" - }, - { - "explain": " Literal Tuple_(Float64_106.690747557266, Float64_10.7834855403784)" - }, - { - "explain": " Literal Tuple_(Float64_106.691628272565, Float64_10.7843952548301)" - }, - { - "explain": " Literal Tuple_(Float64_106.692179613338, Float64_10.7849709155958)" - }, - { - "explain": " Literal Tuple_(Float64_106.692179802225, Float64_10.7849711121697)" - }, - { - "explain": " Literal Tuple_(Float64_106.692743910048, Float64_10.7855562574979)" - }, - { - "explain": " Literal Tuple_(Float64_106.693288875836, Float64_10.7861225208133)" - }, - { - "explain": " Literal Tuple_(Float64_106.693601234729, Float64_10.7864484801726)" - }, - { - "explain": " Literal Tuple_(Float64_106.69220838651, Float64_10.7875617536129)" - }, - { - "explain": " Literal Tuple_(Float64_106.692196691453, Float64_10.787573150248)" - }, - { - "explain": " Literal Tuple_(Float64_106.692187444486, Float64_10.7875866094924)" - }, - { - "explain": " Literal Tuple_(Float64_106.692181000965, Float64_10.7876016141149)" - }, - { - "explain": " Literal Tuple_(Float64_106.692177608512, Float64_10.7876175874962)" - }, - { - "explain": " Literal Tuple_(Float64_106.692177397496, Float64_10.7876339157883)" - }, - { - "explain": " Literal Tuple_(Float64_106.692180376026, Float64_10.7876499715041)" - }, - { - "explain": " Literal Tuple_(Float64_106.692186429639, Float64_10.7876651376314)" - }, - { - "explain": " Literal Tuple_(Float64_106.692195325699, Float64_10.7876788313445)" - }, - { - "explain": " Literal Tuple_(Float64_106.692206722334, Float64_10.7876905264015)" - }, - { - "explain": " Literal Tuple_(Float64_106.692220181578, Float64_10.7876997733682)" - }, - { - "explain": " Literal Tuple_(Float64_106.692235186201, Float64_10.7877062168886)" - }, - { - "explain": " Literal Tuple_(Float64_106.692251159582, Float64_10.787709609342)" - }, - { - "explain": " Literal Tuple_(Float64_106.692267487874, Float64_10.7877098203582)" - }, - { - "explain": " Literal Tuple_(Float64_106.69228354359, Float64_10.7877068418281)" - }, - { - "explain": " Literal Tuple_(Float64_106.692298709717, Float64_10.7877007882148)" - }, - { - "explain": " Literal Tuple_(Float64_106.69231240343, Float64_10.7876918921553)" - }, - { - "explain": " Literal Tuple_(Float64_106.693776442708, Float64_10.7865217172423)" - }, - { - "explain": " Literal Tuple_(Float64_106.693788736175, Float64_10.7865096022178)" - }, - { - "explain": " Literal Tuple_(Float64_106.693798269005, Float64_10.7864952137411)" - }, - { - "explain": " Literal Tuple_(Float64_106.693804631934, Float64_10.7864791695437)" - }, - { - "explain": " Literal Tuple_(Float64_106.693807551784, Float64_10.7864621584413)" - }, - { - "explain": " Literal Tuple_(Float64_106.693806903199, Float64_10.7864449107613)" - }, - { - "explain": " Literal Tuple_(Float64_106.693802714026, Float64_10.7864281669878)" - }, - { - "explain": " Literal Tuple_(Float64_106.693795164114, Float64_10.786412645971)" - }, - { - "explain": " Literal Tuple_(Float64_106.693784577601, Float64_10.7863990140651)" - }, - { - "explain": " Literal Tuple_(Float64_106.69340910087, Float64_10.7860071886444)" - }, - { - "explain": " Literal Tuple_(Float64_106.69340897739, Float64_10.7860070600637)" - }, - { - "explain": " Literal Tuple_(Float64_106.692863924954, Float64_10.7854407067139)" - }, - { - "explain": " Literal Tuple_(Float64_106.69229983717, Float64_10.7848555821281)" - }, - { - "explain": " Literal Tuple_(Float64_106.691748435669, Float64_10.7842798579551)" - }, - { - "explain": " Literal Tuple_(Float64_106.691748124777, Float64_10.7842795350934)" - }, - { - "explain": " Literal Tuple_(Float64_106.690865834778, Float64_10.7833681940925)" - }, - { - "explain": " Literal Tuple_(Float64_106.690862927107, Float64_10.7833653342196)" - }, - { - "explain": " Literal Tuple_(Float64_106.690473809086, Float64_10.7830009183885)" - }, - { - "explain": " Literal Tuple_(Float64_106.690118035849, Float64_10.7826613133679)" - }, - { - "explain": " Literal Tuple_(Float64_106.689737465891, Float64_10.7822957865149)" - }, - { - "explain": " Literal Tuple_(Float64_106.689736848623, Float64_10.7822951996834)" - }, - { - "explain": " Literal Tuple_(Float64_106.688515950726, Float64_10.7811463275029)" - }, - { - "explain": " Literal Tuple_(Float64_106.687309357068, Float64_10.7799951680976)" - }, - { - "explain": " Literal Tuple_(Float64_106.687309106711, Float64_10.779994930232)" - }, - { - "explain": " Literal Tuple_(Float64_106.686697270266, Float64_10.7794160294802)" - }, - { - "explain": " Literal Tuple_(Float64_106.686141416688, Float64_10.7788892164565)" - }, - { - "explain": " Literal Tuple_(Float64_106.686140461741, Float64_10.7788883114)" - }, - { - "explain": " Literal Tuple_(Float64_106.686140185762, Float64_10.7788880510296)" - }, - { - "explain": " Literal Tuple_(Float64_106.6853430856, Float64_10.7781394574112)" - }, - { - "explain": " Literal Tuple_(Float64_106.684942058447, Float64_10.7777593767781)" - }, - { - "explain": " Literal Tuple_(Float64_106.684941904463, Float64_10.7777592312084)" - }, - { - "explain": " Literal Tuple_(Float64_106.684255979358, Float64_10.7771124377212)" - }, - { - "explain": " Literal Tuple_(Float64_106.683916204215, Float64_10.776768971525)" - }, - { - "explain": " Literal Tuple_(Float64_106.683794256559, Float64_10.7766457845149)" - }, - { - "explain": " Literal Tuple_(Float64_106.68379008676, Float64_10.7766418525893)" - }, - { - "explain": " Literal Tuple_(Float64_106.683741989497, Float64_10.7765995284558)" - }, - { - "explain": " Literal Tuple_(Float64_106.683740519326, Float64_10.7765982647987)" - }, - { - "explain": " Literal Tuple_(Float64_106.683276011394, Float64_10.7762083120217)" - }, - { - "explain": " Literal Tuple_(Float64_106.683275466929, Float64_10.7762078588774)" - }, - { - "explain": " Literal Tuple_(Float64_106.68291395946, Float64_10.77590957835)" - }, - { - "explain": " Literal Tuple_(Float64_106.682818451152, Float64_10.775828362424)" - }, - { - "explain": " Literal Tuple_(Float64_106.682816046951, Float64_10.7758263940715)" - }, - { - "explain": " Literal Tuple_(Float64_106.682749215964, Float64_10.7757737295564)" - }, - { - "explain": " Literal Tuple_(Float64_106.682469581984, Float64_10.775523776542)" - }, - { - "explain": " Literal Tuple_(Float64_106.682467121137, Float64_10.7755216616573)" - }, - { - "explain": " Literal Tuple_(Float64_106.682417839663, Float64_10.775480950083)" - }, - { - "explain": " Literal Tuple_(Float64_106.68241543796, Float64_10.7754790393628)" - }, - { - "explain": " Literal Tuple_(Float64_106.682411856108, Float64_10.7754762959601)" - }, - { - "explain": " Literal Tuple_(Float64_106.681948170223, Float64_10.775076801292)" - }, - { - "explain": " Literal Tuple_(Float64_106.681946953215, Float64_10.7750757728772)" - }, - { - "explain": " Literal Tuple_(Float64_106.681577943952, Float64_10.7747699480145)" - }, - { - "explain": " Literal Tuple_(Float64_106.681354856141, Float64_10.7745815499075)" - }, - { - "explain": " Literal Tuple_(Float64_106.681050071432, Float64_10.7743235726569)" - }, - { - "explain": " Literal Tuple_(Float64_106.680779998801, Float64_10.774093497693)" - }, - { - "explain": " Literal Tuple_(Float64_106.680779672798, Float64_10.7740932214111)" - }, - { - "explain": " Literal Tuple_(Float64_106.680427578845, Float64_10.7737963760106)" - }, - { - "explain": " Literal Tuple_(Float64_106.680284883706, Float64_10.7736759607876)" - }, - { - "explain": " Literal Tuple_(Float64_106.680120811518, Float64_10.7735325925854)" - }, - { - "explain": " Literal Tuple_(Float64_106.680120259999, Float64_10.7735321149047)" - }, - { - "explain": " Literal Tuple_(Float64_106.679882649978, Float64_10.7733281310479)" - }, - { - "explain": " Literal Tuple_(Float64_106.679742564868, Float64_10.7732015296478)" - }, - { - "explain": " Literal Tuple_(Float64_106.67973997054, Float64_10.7731992804165)" - }, - { - "explain": " Literal Tuple_(Float64_106.679159125009, Float64_10.772716304271)" - }, - { - "explain": " Literal Tuple_(Float64_106.679157929246, Float64_10.7727153285815)" - }, - { - "explain": " Literal Tuple_(Float64_106.679083371982, Float64_10.7726556350576)" - }, - { - "explain": " Literal Tuple_(Float64_106.679069423592, Float64_10.7726465921904)" - }, - { - "explain": " Literal Tuple_(Float64_106.679053957365, Float64_10.7726404990091)" - }, - { - "explain": " Literal Tuple_(Float64_106.679037589221, Float64_10.7726375981655)" - }, - { - "explain": " Literal Tuple_(Float64_106.679020970997, Float64_10.7726380051815)" - }, - { - "explain": " Literal Tuple_(Float64_106.679004764489, Float64_10.7726417038483)" - }, - { - "explain": " Literal Tuple_(Float64_106.678989615098, Float64_10.7726485468719)" - }, - { - "explain": " Literal Tuple_(Float64_106.678976126125, Float64_10.772658261739)" - }, - { - "explain": " Literal Tuple_(Float64_106.678449597495, Float64_10.7731239014943)" - }, - { - "explain": " Literal Tuple_(Float64_106.678407514754, Float64_10.773159565689)" - }, - { - "explain": " Literal Tuple_(Float64_106.678406188192, Float64_10.7731607141448)" - }, - { - "explain": " Literal Tuple_(Float64_106.678291034854, Float64_10.7732625482153)" - }, - { - "explain": " Literal Tuple_(Float64_106.678131577851, Float64_10.7733972356454)" - }, - { - "explain": " Literal Tuple_(Float64_106.678131249559, Float64_10.7733975143985)" - }, - { - "explain": " Literal Tuple_(Float64_106.677809116892, Float64_10.7736724741964)" - }, - { - "explain": " Literal Tuple_(Float64_106.677803734254, Float64_10.7736774962862)" - }, - { - "explain": " Literal Tuple_(Float64_106.67777351642, Float64_10.773708297704)" - }, - { - "explain": " Literal Tuple_(Float64_106.677376870851, Float64_10.7734422350384)" - }, - { - "explain": " Literal Tuple_(Float64_106.677376291861, Float64_10.7734418501559)" - }, - { - "explain": " Literal Tuple_(Float64_106.676943701895, Float64_10.7731568826838)" - }, - { - "explain": " Literal Tuple_(Float64_106.676941799819, Float64_10.7731556663352)" - }, - { - "explain": " Literal Tuple_(Float64_106.676705634648, Float64_10.7730091132449)" - }, - { - "explain": " Literal Tuple_(Float64_106.676468020922, Float64_10.7728596290723)" - }, - { - "explain": " Literal Tuple_(Float64_106.676467624617, Float64_10.7728593813034)" - }, - { - "explain": " Literal Tuple_(Float64_106.676202468827, Float64_10.7726946395397)" - }, - { - "explain": " Literal Tuple_(Float64_106.675976718772, Float64_10.7725542402878)" - }, - { - "explain": " Literal Tuple_(Float64_106.675713344944, Float64_10.7723904505946)" - }, - { - "explain": " Literal Tuple_(Float64_106.675438984881, Float64_10.7722195485022)" - }, - { - "explain": " Literal Tuple_(Float64_106.675160330528, Float64_10.7720443170291)" - }, - { - "explain": " Literal Tuple_(Float64_106.674980445983, Float64_10.7719313240966)" - }, - { - "explain": " Literal Tuple_(Float64_106.674980215342, Float64_10.7719311797465)" - }, - { - "explain": " Literal Tuple_(Float64_106.674747119479, Float64_10.7717858222138)" - }, - { - "explain": " Literal Tuple_(Float64_106.674497164595, Float64_10.7716283533947)" - }, - { - "explain": " Literal Tuple_(Float64_106.674495300219, Float64_10.7716272127471)" - }, - { - "explain": " Literal Tuple_(Float64_106.674339180867, Float64_10.7715344896819)" - }, - { - "explain": " Literal Tuple_(Float64_106.674338897981, Float64_10.771534322423)" - }, - { - "explain": " Literal Tuple_(Float64_106.674061493048, Float64_10.7713710419232)" - }, - { - "explain": " Literal Tuple_(Float64_106.674061328848, Float64_10.7713709455279)" - }, - { - "explain": " Literal Tuple_(Float64_106.673777295695, Float64_10.7712046366425)" - }, - { - "explain": " Literal Tuple_(Float64_106.673775349509, Float64_10.7712035319333)" - }, - { - "explain": " Literal Tuple_(Float64_106.673513740027, Float64_10.7710596467179)" - }, - { - "explain": " Literal Tuple_(Float64_106.673513190173, Float64_10.7710593469847)" - }, - { - "explain": " Literal Tuple_(Float64_106.673099330442, Float64_10.7708357600807)" - }, - { - "explain": " Literal Tuple_(Float64_106.673098966779, Float64_10.7708355647753)" - }, - { - "explain": " Literal Tuple_(Float64_106.672357083034, Float64_10.7704395002842)" - }, - { - "explain": " Literal Tuple_(Float64_106.672023628724, Float64_10.7702576558632)" - }, - { - "explain": " Literal Tuple_(Float64_106.671746880137, Float64_10.7701061587426)" - }, - { - "explain": " Literal Tuple_(Float64_106.671518215262, Float64_10.7699783515251)" - }, - { - "explain": " Literal Tuple_(Float64_106.671516207112, Float64_10.7699772649622)" - }, - { - "explain": " Literal Tuple_(Float64_106.671350083838, Float64_10.7698903014222)" - }, - { - "explain": " Literal Tuple_(Float64_106.671115399209, Float64_10.7697601522552)" - }, - { - "explain": " Literal Tuple_(Float64_106.671113600766, Float64_10.7697591835329)" - }, - { - "explain": " Literal Tuple_(Float64_106.670830326847, Float64_10.7696110514048)" - }, - { - "explain": " Literal Tuple_(Float64_106.66974820551, Float64_10.7689798847013)" - }, - { - "explain": " Literal Tuple_(Float64_106.66969475177, Float64_10.7688866833063)" - }, - { - "explain": " Literal Tuple_(Float64_106.669685913661, Float64_10.7688741199651)" - }, - { - "explain": " Literal Tuple_(Float64_106.669674918986, Float64_10.7688633930448)" - }, - { - "explain": " Literal Tuple_(Float64_106.669662141606, Float64_10.7688548673033)" - }, - { - "explain": " Literal Tuple_(Float64_106.668277363011, Float64_10.7681053993183)" - }, - { - "explain": " Literal Tuple_(Float64_106.668276514094, Float64_10.7681049461882)" - }, - { - "explain": " Literal Tuple_(Float64_106.668126503268, Float64_10.7680259842551)" - }, - { - "explain": " Literal Tuple_(Float64_106.668125839186, Float64_10.7680237950692)" - }, - { - "explain": " Literal Tuple_(Float64_106.66812072496, Float64_10.7680095017658)" - }, - { - "explain": " Literal Tuple_(Float64_106.668117596648, Float64_10.7680019493532)" - }, - { - "explain": " Literal Tuple_(Float64_106.66811110606, Float64_10.7679882261576)" - }, - { - "explain": " Literal Tuple_(Float64_106.668107252546, Float64_10.7679810167398)" - }, - { - "explain": " Literal Tuple_(Float64_106.668099448104, Float64_10.7679679958141)" - }, - { - "explain": " Literal Tuple_(Float64_106.668094906497, Float64_10.767961198818)" - }, - { - "explain": " Literal Tuple_(Float64_106.668085863361, Float64_10.7679490055608)" - }, - { - "explain": " Literal Tuple_(Float64_106.668080677403, Float64_10.7679426864524)" - }, - { - "explain": " Literal Tuple_(Float64_106.668070482664, Float64_10.7679314382913)" - }, - { - "explain": " Literal Tuple_(Float64_106.668064702296, Float64_10.7679256579236)" - }, - { - "explain": " Literal Tuple_(Float64_106.668053454135, Float64_10.7679154631847)" - }, - { - "explain": " Literal Tuple_(Float64_106.668047135024, Float64_10.7679102772246)" - }, - { - "explain": " Literal Tuple_(Float64_106.668034941766, Float64_10.7679012340887)" - }, - { - "explain": " Literal Tuple_(Float64_106.668028144776, Float64_10.7678966924853)" - }, - { - "explain": " Literal Tuple_(Float64_106.668015123851, Float64_10.7678888880428)" - }, - { - "explain": " Literal Tuple_(Float64_106.668007914429, Float64_10.7678850345264)" - }, - { - "explain": " Literal Tuple_(Float64_106.667994191233, Float64_10.7678785439383)" - }, - { - "explain": " Literal Tuple_(Float64_106.667986638821, Float64_10.7678754156266)" - }, - { - "explain": " Literal Tuple_(Float64_106.667972345518, Float64_10.7678703014008)" - }, - { - "explain": " Literal Tuple_(Float64_106.667964522841, Float64_10.7678679284177)" - }, - { - "explain": " Literal Tuple_(Float64_106.667949797082, Float64_10.7678642398071)" - }, - { - "explain": " Literal Tuple_(Float64_106.667941779481, Float64_10.7678626450072)" - }, - { - "explain": " Literal Tuple_(Float64_106.667926763083, Float64_10.767860417535)" - }, - { - "explain": " Literal Tuple_(Float64_106.667918627772, Float64_10.7678596162768)" - }, - { - "explain": " Literal Tuple_(Float64_106.667903465352, Float64_10.7678588713949)" - }, - { - "explain": " Literal Tuple_(Float64_106.667895290678, Float64_10.7678588713949)" - }, - { - "explain": " Literal Tuple_(Float64_106.667880128258, Float64_10.7678596162768)" - }, - { - "explain": " Literal Tuple_(Float64_106.667871992947, Float64_10.767860417535)" - }, - { - "explain": " Literal Tuple_(Float64_106.667856976549, Float64_10.7678626450072)" - }, - { - "explain": " Literal Tuple_(Float64_106.667848958948, Float64_10.7678642398071)" - }, - { - "explain": " Literal Tuple_(Float64_106.667848526162, Float64_10.7678643482145)" - }, - { - "explain": " Literal Tuple_(Float64_106.667629153721, Float64_10.7677506481269)" - }, - { - "explain": " Literal Tuple_(Float64_106.667628614008, Float64_10.7677503708842)" - }, - { - "explain": " Literal Tuple_(Float64_106.66744662399, Float64_10.7676577214203)" - }, - { - "explain": " Literal Tuple_(Float64_106.667216888626, Float64_10.7675408306262)" - }, - { - "explain": " Literal Tuple_(Float64_106.667161868227, Float64_10.7675128359024)" - }, - { - "explain": " Literal Tuple_(Float64_106.667012119458, Float64_10.7674366427911)" - }, - { - "explain": " Literal Tuple_(Float64_106.666659357657, Float64_10.7672571553777)" - }, - { - "explain": " Literal Tuple_(Float64_106.666673753979, Float64_10.7671954479766)" - }, - { - "explain": " Literal Tuple_(Float64_106.667048293768, Float64_10.7672739882109)" - }, - { - "explain": " Literal Tuple_(Float64_106.6670141, Float64_10.7674274)" - } - ], - - "rows": 361, - - "statistics": - { - "elapsed": 0.003636441, - "rows_read": 361, - "bytes_read": 29164 - } -} diff --git a/parser/testdata/00500_point_in_polygon_empty_bound/ast.json b/parser/testdata/00500_point_in_polygon_empty_bound/ast.json deleted file mode 100644 index b81ff4fed0..0000000000 --- a/parser/testdata/00500_point_in_polygon_empty_bound/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00114868, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00500_point_in_polygon_nan/ast.json b/parser/testdata/00500_point_in_polygon_nan/ast.json deleted file mode 100644 index 49274b67c1..0000000000 --- a/parser/testdata/00500_point_in_polygon_nan/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function pointInPolygon (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(Float64_nan, Float64_10.000100135803223)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Literal Tuple_(Float64_39.83154, Float64_21.41527)" - }, - { - "explain": " Literal Tuple_(Float64_2, Float64_1000.0001220703125)" - }, - { - "explain": " Literal Tuple_(Float64_39.90033, Float64_21.37195)" - }, - { - "explain": " Literal Tuple_(Float64_1.000100016593933, Float64_10.000100135803223)" - }, - { - "explain": " Literal Tuple_(Float64_39.83051, Float64_21.42553)" - }, - { - "explain": " Literal Tuple_(Float64_39.82898, Float64_21.41382)" - }, - { - "explain": " Literal Tuple_(Float64_39.83043, Float64_21.41432)" - }, - { - "explain": " Literal Tuple_(Float64_39.83154, Float64_21.41527)" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001090062, - "rows_read": 17, - "bytes_read": 939 - } -} diff --git a/parser/testdata/00500_point_in_polygon_non_const_poly/ast.json b/parser/testdata/00500_point_in_polygon_non_const_poly/ast.json deleted file mode 100644 index d178afc60d..0000000000 --- a/parser/testdata/00500_point_in_polygon_non_const_poly/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery polygons (children 1)" - }, - { - "explain": " Identifier polygons" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001091191, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00502_custom_partitioning_local/ast.json b/parser/testdata/00502_custom_partitioning_local/ast.json deleted file mode 100644 index b81b430f4f..0000000000 --- a/parser/testdata/00502_custom_partitioning_local/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '*** Not partitioned ***'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001184344, - "rows_read": 5, - "bytes_read": 194 - } -} diff --git a/parser/testdata/00502_custom_partitioning_replicated_zookeeper_long/ast.json b/parser/testdata/00502_custom_partitioning_replicated_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00502_custom_partitioning_replicated_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00502_string_concat_with_array/ast.json b/parser/testdata/00502_string_concat_with_array/ast.json deleted file mode 100644 index 325f4c075e..0000000000 --- a/parser/testdata/00502_string_concat_with_array/ast.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier b" - }, - { - "explain": " Identifier b" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toString (alias b) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 28, - - "statistics": - { - "elapsed": 0.00151906, - "rows_read": 28, - "bytes_read": 1178 - } -} diff --git a/parser/testdata/00502_sum_map/ast.json b/parser/testdata/00502_sum_map/ast.json deleted file mode 100644 index ebafe229ef..0000000000 --- a/parser/testdata/00502_sum_map/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001093848, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00503_cast_const_nullable/ast.json b/parser/testdata/00503_cast_const_nullable/ast.json deleted file mode 100644 index c9c6833f57..0000000000 --- a/parser/testdata/00503_cast_const_nullable/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (alias id) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'Nullable(UInt8)'" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier id" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'Nullable(UInt8)'" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001245968, - "rows_read": 15, - "bytes_read": 562 - } -} diff --git a/parser/testdata/00504_mergetree_arrays_rw/ast.json b/parser/testdata/00504_mergetree_arrays_rw/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00504_mergetree_arrays_rw/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00506_shard_global_in_union/ast.json b/parser/testdata/00506_shard_global_in_union/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00506_shard_global_in_union/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00506_union_distributed/ast.json b/parser/testdata/00506_union_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00506_union_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00507_sumwithoverflow/ast.json b/parser/testdata/00507_sumwithoverflow/ast.json deleted file mode 100644 index 7e68c723c8..0000000000 --- a/parser/testdata/00507_sumwithoverflow/ast.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUInt16 (alias n) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100" - } - ], - - "rows": 25, - - "statistics": - { - "elapsed": 0.001124731, - "rows_read": 25, - "bytes_read": 1076 - } -} diff --git a/parser/testdata/00508_materialized_view_to/ast.json b/parser/testdata/00508_materialized_view_to/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00508_materialized_view_to/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00509_extended_storage_definition_syntax_zookeeper/ast.json b/parser/testdata/00509_extended_storage_definition_syntax_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00509_extended_storage_definition_syntax_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00510_materizlized_view_and_deduplication_zookeeper/ast.json b/parser/testdata/00510_materizlized_view_and_deduplication_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00510_materizlized_view_and_deduplication_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00511_get_size_of_enum/ast.json b/parser/testdata/00511_get_size_of_enum/ast.json deleted file mode 100644 index 357f513640..0000000000 --- a/parser/testdata/00511_get_size_of_enum/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function getSizeOfEnumType (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'Enum8(\\'a\\' = 1, \\'b\\' = 2)'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001474037, - "rows_read": 10, - "bytes_read": 407 - } -} diff --git a/parser/testdata/00513_fractional_time_zones/ast.json b/parser/testdata/00513_fractional_time_zones/ast.json deleted file mode 100644 index e5ce7a7158..0000000000 --- a/parser/testdata/00513_fractional_time_zones/ast.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (alias t) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1509138000" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_300" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toHour (alias h) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal 'Asia\/Kolkata'" - }, - { - "explain": " Function toString (alias h_start) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toStartOfHour (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal 'Asia\/Kolkata'" - }, - { - "explain": " Literal 'Asia\/Kolkata'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_12" - } - ], - - "rows": 30, - - "statistics": - { - "elapsed": 0.001428555, - "rows_read": 30, - "bytes_read": 1207 - } -} diff --git a/parser/testdata/00514_interval_operators/ast.json b/parser/testdata/00514_interval_operators/ast.json deleted file mode 100644 index d7d8a8cd4d..0000000000 --- a/parser/testdata/00514_interval_operators/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001096457, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00515_enhanced_time_zones/ast.json b/parser/testdata/00515_enhanced_time_zones/ast.json deleted file mode 100644 index 7e4158a2e9..0000000000 --- a/parser/testdata/00515_enhanced_time_zones/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00127451, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00515_gcd_lcm/ast.json b/parser/testdata/00515_gcd_lcm/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00515_gcd_lcm/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00515_shard_desc_table_functions_and_subqueries/ast.json b/parser/testdata/00515_shard_desc_table_functions_and_subqueries/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00515_shard_desc_table_functions_and_subqueries/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00516_deduplication_after_drop_partition_zookeeper/ast.json b/parser/testdata/00516_deduplication_after_drop_partition_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00516_deduplication_after_drop_partition_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00516_is_inf_nan/ast.json b/parser/testdata/00516_is_inf_nan/ast.json deleted file mode 100644 index 9a62a83c0c..0000000000 --- a/parser/testdata/00516_is_inf_nan/ast.json +++ /dev/null @@ -1,205 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function isFinite (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function isInfinite (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function isNaN (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 14)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Literal Float64_inf" - }, - { - "explain": " Literal Float64_-inf" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Float64_-0" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_-0" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Float64_-0" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Literal Float64_-0" - } - ], - - "rows": 61, - - "statistics": - { - "elapsed": 0.001265533, - "rows_read": 61, - "bytes_read": 2630 - } -} diff --git a/parser/testdata/00516_modulo/ast.json b/parser/testdata/00516_modulo/ast.json deleted file mode 100644 index e588d12cd6..0000000000 --- a/parser/testdata/00516_modulo/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1000" - }, - { - "explain": " Literal UInt64_32" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001851594, - "rows_read": 8, - "bytes_read": 293 - } -} diff --git a/parser/testdata/00517_date_parsing/ast.json b/parser/testdata/00517_date_parsing/ast.json deleted file mode 100644 index a887c5d303..0000000000 --- a/parser/testdata/00517_date_parsing/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias s) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['2017-01-02', '2017-1-02', '2017-01-2', '2017-1-2', '2017\/01\/02', '2017\/1\/02', '2017\/01\/2', '2017\/1\/2', '2017-11-12']" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001715085, - "rows_read": 18, - "bytes_read": 862 - } -} diff --git a/parser/testdata/00518_extract_all_and_empty_matches/ast.json b/parser/testdata/00518_extract_all_and_empty_matches/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00518_extract_all_and_empty_matches/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00519_create_as_select_from_temporary_table/ast.json b/parser/testdata/00519_create_as_select_from_temporary_table/ast.json deleted file mode 100644 index 0288b2becd..0000000000 --- a/parser/testdata/00519_create_as_select_from_temporary_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1_00519 (children 1)" - }, - { - "explain": " Identifier t1_00519" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001222884, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00520_tuple_values_interpreter/ast.json b/parser/testdata/00520_tuple_values_interpreter/ast.json deleted file mode 100644 index f17aa112d6..0000000000 --- a/parser/testdata/00520_tuple_values_interpreter/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tuple (children 1)" - }, - { - "explain": " Identifier tuple" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001130574, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00521_multidimensional/ast.json b/parser/testdata/00521_multidimensional/ast.json deleted file mode 100644 index 3dfd4d0033..0000000000 --- a/parser/testdata/00521_multidimensional/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery multidimensional (children 1)" - }, - { - "explain": " Identifier multidimensional" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001444248, - "rows_read": 2, - "bytes_read": 84 - } -} diff --git a/parser/testdata/00522_multidimensional/ast.json b/parser/testdata/00522_multidimensional/ast.json deleted file mode 100644 index edc31334a8..0000000000 --- a/parser/testdata/00522_multidimensional/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery multidimensional (children 1)" - }, - { - "explain": " Identifier multidimensional" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001436906, - "rows_read": 2, - "bytes_read": 84 - } -} diff --git a/parser/testdata/00523_aggregate_functions_in_group_array/ast.json b/parser/testdata/00523_aggregate_functions_in_group_array/ast.json deleted file mode 100644 index 91f218e93c..0000000000 --- a/parser/testdata/00523_aggregate_functions_in_group_array/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier key2" - }, - { - "explain": " Function arrayReduce (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'uniqExactMerge'" - }, - { - "explain": " Identifier arr" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001257939, - "rows_read": 9, - "bytes_read": 327 - } -} diff --git a/parser/testdata/00524_time_intervals_months_underflow/ast.json b/parser/testdata/00524_time_intervals_months_underflow/ast.json deleted file mode 100644 index 823baeeef6..0000000000 --- a/parser/testdata/00524_time_intervals_months_underflow/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2017-01-01 00:00:00'" - }, - { - "explain": " Function toIntervalMonth (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001297387, - "rows_read": 12, - "bytes_read": 495 - } -} diff --git a/parser/testdata/00525_aggregate_functions_of_nullable_that_return_non_nullable/ast.json b/parser/testdata/00525_aggregate_functions_of_nullable_that_return_non_nullable/ast.json deleted file mode 100644 index a76974b6ea..0000000000 --- a/parser/testdata/00525_aggregate_functions_of_nullable_that_return_non_nullable/ast.json +++ /dev/null @@ -1,151 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Function groupArray (alias res1) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier res1" - }, - { - "explain": " Function avg (alias res2) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier res2" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias k)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, NULL, UInt64_2]" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2 (alias k)" - }, - { - "explain": " Function CAST (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[NULL, NULL]" - }, - { - "explain": " Literal 'Nullable(UInt8)'" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - } - ], - - "rows": 43, - - "statistics": - { - "elapsed": 0.001320637, - "rows_read": 43, - "bytes_read": 1791 - } -} diff --git a/parser/testdata/00526_array_join_with_arrays_of_nullable/ast.json b/parser/testdata/00526_array_join_with_arrays_of_nullable/ast.json deleted file mode 100644 index 8e041c84b1..0000000000 --- a/parser/testdata/00526_array_join_with_arrays_of_nullable/ast.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Function arrayJoin (alias z) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['a', NULL, 'b']" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " ArrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_1, NULL, UInt64_3] (alias x)" - }, - { - "explain": " Function array (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal Tuple_(NULL, '')" - }, - { - "explain": " Literal Tuple_(UInt64_123, 'Hello')" - }, - { - "explain": " Literal Tuple_(UInt64_456, NULL)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier z" - } - ], - - "rows": 29, - - "statistics": - { - "elapsed": 0.001697309, - "rows_read": 29, - "bytes_read": 1168 - } -} diff --git a/parser/testdata/00527_totals_having_nullable/ast.json b/parser/testdata/00527_totals_having_nullable/ast.json deleted file mode 100644 index 0819c67559..0000000000 --- a/parser/testdata/00527_totals_having_nullable/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (alias x) (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function notEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001183358, - "rows_read": 12, - "bytes_read": 448 - } -} diff --git a/parser/testdata/00528_const_of_nullable/ast.json b/parser/testdata/00528_const_of_nullable/ast.json deleted file mode 100644 index f06612131c..0000000000 --- a/parser/testdata/00528_const_of_nullable/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function plus (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toColumnTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001298948, - "rows_read": 16, - "bytes_read": 613 - } -} diff --git a/parser/testdata/00529_orantius/ast.json b/parser/testdata/00529_orantius/ast.json deleted file mode 100644 index cd5eb3d730..0000000000 --- a/parser/testdata/00529_orantius/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal NULL" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001627961, - "rows_read": 7, - "bytes_read": 259 - } -} diff --git a/parser/testdata/00530_arrays_of_nothing/ast.json b/parser/testdata/00530_arrays_of_nothing/ast.json deleted file mode 100644 index e0f56c419b..0000000000 --- a/parser/testdata/00530_arrays_of_nothing/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.00127361, - "rows_read": 14, - "bytes_read": 554 - } -} diff --git a/parser/testdata/00531_aggregate_over_nullable/ast.json b/parser/testdata/00531_aggregate_over_nullable/ast.json deleted file mode 100644 index 13e7343ce8..0000000000 --- a/parser/testdata/00531_aggregate_over_nullable/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery agg_over_nullable (children 1)" - }, - { - "explain": " Identifier agg_over_nullable" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001108095, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00532_topk_generic/ast.json b/parser/testdata/00532_topk_generic/ast.json deleted file mode 100644 index d34eada90c..0000000000 --- a/parser/testdata/00532_topk_generic/ast.json +++ /dev/null @@ -1,217 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Function arraySort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function topK (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier v" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (alias k) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function arrayMap (alias v) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function intDiv (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_13" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - } - ], - - "rows": 65, - - "statistics": - { - "elapsed": 0.00166912, - "rows_read": 65, - "bytes_read": 2939 - } -} diff --git a/parser/testdata/00533_uniq_array/ast.json b/parser/testdata/00533_uniq_array/ast.json deleted file mode 100644 index 22ccb34c27..0000000000 --- a/parser/testdata/00533_uniq_array/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniqArray (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal Array_[UInt64_0, UInt64_1, UInt64_1]" - }, - { - "explain": " Literal Array_[UInt64_0, UInt64_1, UInt64_1]" - }, - { - "explain": " Literal Array_[UInt64_0, UInt64_1, UInt64_1]" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001172759, - "rows_read": 9, - "bytes_read": 406 - } -} diff --git a/parser/testdata/00534_exp10/ast.json b/parser/testdata/00534_exp10/ast.json deleted file mode 100644 index 0780c59e33..0000000000 --- a/parser/testdata/00534_exp10/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function exp10 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function minus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_500" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001421564, - "rows_read": 16, - "bytes_read": 616 - } -} diff --git a/parser/testdata/00535_parse_float_scientific/ast.json b/parser/testdata/00535_parse_float_scientific/ast.json deleted file mode 100644 index a1ebf2b81f..0000000000 --- a/parser/testdata/00535_parse_float_scientific/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery float (children 1)" - }, - { - "explain": " Identifier float" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001237961, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00536_int_exp/ast.json b/parser/testdata/00536_int_exp/ast.json deleted file mode 100644 index bae7eaf177..0000000000 --- a/parser/testdata/00536_int_exp/ast.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 6)" - }, - { - "explain": " Function exp2 (alias e2d) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function intExp2 (alias e2i) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function equals (alias e2eq) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toUInt64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier e2d" - }, - { - "explain": " Identifier e2i" - }, - { - "explain": " Function exp10 (alias e10d) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function intExp10 (alias e10i) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function equals (alias e10eq) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier e10d" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier e10i" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_64" - } - ], - - "rows": 35, - - "statistics": - { - "elapsed": 0.001815934, - "rows_read": 35, - "bytes_read": 1415 - } -} diff --git a/parser/testdata/00536_int_exp_overflow/ast.json b/parser/testdata/00536_int_exp_overflow/ast.json deleted file mode 100644 index 3b3f1205ca..0000000000 --- a/parser/testdata/00536_int_exp_overflow/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'intExp2:'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.00141966, - "rows_read": 5, - "bytes_read": 179 - } -} diff --git a/parser/testdata/00537_quarters/ast.json b/parser/testdata/00537_quarters/ast.json deleted file mode 100644 index d31e584aec..0000000000 --- a/parser/testdata/00537_quarters/ast.json +++ /dev/null @@ -1,169 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Function plus (alias d) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDate (alias base) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2017-01-01'" - }, - { - "explain": " Function toIntervalMonth (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toDateTime (alias t) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier d" - }, - { - "explain": " Literal 'UTC'" - }, - { - "explain": " Function toQuarter (alias qd) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier d" - }, - { - "explain": " Function toQuarter (alias qt) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Function toStartOfQuarter (alias sqd) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier d" - }, - { - "explain": " Function toStartOfQuarter (alias sqt) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Function minus (alias qdiff_d) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toRelativeQuarterNum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier d" - }, - { - "explain": " Function toRelativeQuarterNum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier base" - }, - { - "explain": " Function minus (alias qdiff_t) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toRelativeQuarterNum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Function toRelativeQuarterNum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier base" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_24" - } - ], - - "rows": 49, - - "statistics": - { - "elapsed": 0.001900929, - "rows_read": 49, - "bytes_read": 2046 - } -} diff --git a/parser/testdata/00538_datediff/ast.json b/parser/testdata/00538_datediff/ast.json deleted file mode 100644 index 9079398da7..0000000000 --- a/parser/testdata/00538_datediff/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'Various intervals'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001412231, - "rows_read": 5, - "bytes_read": 188 - } -} diff --git a/parser/testdata/00538_datediff_plural_units/ast.json b/parser/testdata/00538_datediff_plural_units/ast.json deleted file mode 100644 index dd54dad1a5..0000000000 --- a/parser/testdata/00538_datediff_plural_units/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function dateDiff (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'years'" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2017-12-31'" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2016-01-01'" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001050687, - "rows_read": 13, - "bytes_read": 500 - } -} diff --git a/parser/testdata/00539_functions_for_working_with_json/ast.json b/parser/testdata/00539_functions_for_working_with_json/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00539_functions_for_working_with_json/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00541_kahan_sum/ast.json b/parser/testdata/00541_kahan_sum/ast.json deleted file mode 100644 index a38ab43bf5..0000000000 --- a/parser/testdata/00541_kahan_sum/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1000" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.001818126, - "rows_read": 21, - "bytes_read": 874 - } -} diff --git a/parser/testdata/00541_to_start_of_fifteen_minutes/ast.json b/parser/testdata/00541_to_start_of_fifteen_minutes/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00541_to_start_of_fifteen_minutes/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00542_access_to_temporary_table_in_readonly_mode/ast.json b/parser/testdata/00542_access_to_temporary_table_in_readonly_mode/ast.json deleted file mode 100644 index 5704b05068..0000000000 --- a/parser/testdata/00542_access_to_temporary_table_in_readonly_mode/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001332775, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00542_materialized_view_and_time_zone_tag/ast.json b/parser/testdata/00542_materialized_view_and_time_zone_tag/ast.json deleted file mode 100644 index c7856a98bb..0000000000 --- a/parser/testdata/00542_materialized_view_and_time_zone_tag/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery m3 (children 1)" - }, - { - "explain": " Identifier m3" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001303031, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00543_null_and_prewhere/ast.json b/parser/testdata/00543_null_and_prewhere/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00543_null_and_prewhere/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00544_agg_foreach_of_two_arg/ast.json b/parser/testdata/00544_agg_foreach_of_two_arg/ast.json deleted file mode 100644 index 0931fda2b8..0000000000 --- a/parser/testdata/00544_agg_foreach_of_two_arg/ast.json +++ /dev/null @@ -1,151 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function sumForEach (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " Function sumForEachIf (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function sumIfForEach (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function notEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Identifier arr" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias arr) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[UInt64_1, UInt64_2, UInt64_3], Array_[UInt64_4, UInt64_5, UInt64_6]]" - } - ], - - "rows": 43, - - "statistics": - { - "elapsed": 0.00134122, - "rows_read": 43, - "bytes_read": 1822 - } -} diff --git a/parser/testdata/00544_insert_with_select/ast.json b/parser/testdata/00544_insert_with_select/ast.json deleted file mode 100644 index 029fd81087..0000000000 --- a/parser/testdata/00544_insert_with_select/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001200337, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00545_weird_aggregate_functions/ast.json b/parser/testdata/00545_weird_aggregate_functions/ast.json deleted file mode 100644 index 7902bfbe92..0000000000 --- a/parser/testdata/00545_weird_aggregate_functions/ast.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumForEachMergeArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumForEachStateForEachIfArrayMerge (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumForEachStateForEachIfArrayState (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[Array_[Array_[UInt64_1, UInt64_2, UInt64_3], Array_[UInt64_4, UInt64_5, UInt64_6], Array_[UInt64_7, UInt64_8, UInt64_9]]]" - }, - { - "explain": " Literal Array_[UInt64_1]" - } - ], - - "rows": 30, - - "statistics": - { - "elapsed": 0.001322515, - "rows_read": 30, - "bytes_read": 1546 - } -} diff --git a/parser/testdata/00546_shard_tuple_element_formatting/ast.json b/parser/testdata/00546_shard_tuple_element_formatting/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00546_shard_tuple_element_formatting/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00547_named_tuples/ast.json b/parser/testdata/00547_named_tuples/ast.json deleted file mode 100644 index 83634abbb9..0000000000 --- a/parser/testdata/00547_named_tuples/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 6)" - }, - { - "explain": " Function CAST (alias t) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(UInt64_1, 'Hello')" - }, - { - "explain": " Literal 'Tuple(x UInt64, s String)'" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal 'x'" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal 's'" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.0013219, - "rows_read": 27, - "bytes_read": 1001 - } -} diff --git a/parser/testdata/00548_slice_of_nested/ast.json b/parser/testdata/00548_slice_of_nested/ast.json deleted file mode 100644 index 941a23e84b..0000000000 --- a/parser/testdata/00548_slice_of_nested/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function array (alias nested) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(UInt64_1, 'Hello')" - }, - { - "explain": " Literal Tuple_(UInt64_2, 'World')" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier nested" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier nested" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001227626, - "rows_read": 16, - "bytes_read": 631 - } -} diff --git a/parser/testdata/00549_join_use_nulls/ast.json b/parser/testdata/00549_join_use_nulls/ast.json deleted file mode 100644 index 54ac5f8dae..0000000000 --- a/parser/testdata/00549_join_use_nulls/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001434453, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00551_parse_or_null/ast.json b/parser/testdata/00551_parse_or_null/ast.json deleted file mode 100644 index 216e5b75b5..0000000000 --- a/parser/testdata/00551_parse_or_null/ast.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toUInt64OrZero (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " Function toUInt64OrNull (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function multiIf (alias s) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 36, - - "statistics": - { - "elapsed": 0.001270508, - "rows_read": 36, - "bytes_read": 1562 - } -} diff --git a/parser/testdata/00552_logical_functions_simple/ast.json b/parser/testdata/00552_logical_functions_simple/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00552_logical_functions_simple/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00552_logical_functions_ternary/ast.json b/parser/testdata/00552_logical_functions_ternary/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00552_logical_functions_ternary/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00552_logical_functions_uint8_as_bool/ast.json b/parser/testdata/00552_logical_functions_uint8_as_bool/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00552_logical_functions_uint8_as_bool/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00552_or_nullable/ast.json b/parser/testdata/00552_or_nullable/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00552_or_nullable/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00553_buff_exists_materlized_column/ast.json b/parser/testdata/00553_buff_exists_materlized_column/ast.json deleted file mode 100644 index 06b75cccd6..0000000000 --- a/parser/testdata/00553_buff_exists_materlized_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nums (children 1)" - }, - { - "explain": " Identifier nums" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001640776, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00553_invalid_nested_name/ast.json b/parser/testdata/00553_invalid_nested_name/ast.json deleted file mode 100644 index 004611d3ce..0000000000 --- a/parser/testdata/00553_invalid_nested_name/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Float64_1.1, Float64_1.2]" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001064155, - "rows_read": 14, - "bytes_read": 575 - } -} diff --git a/parser/testdata/00554_nested_and_table_engines/ast.json b/parser/testdata/00554_nested_and_table_engines/ast.json deleted file mode 100644 index 7d6e6e5207..0000000000 --- a/parser/testdata/00554_nested_and_table_engines/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nested (children 1)" - }, - { - "explain": " Identifier nested" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001611639, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00555_hasAll_hasAny/ast.json b/parser/testdata/00555_hasAll_hasAny/ast.json deleted file mode 100644 index b0de557212..0000000000 --- a/parser/testdata/00555_hasAll_hasAny/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function hasAll (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001167865, - "rows_read": 10, - "bytes_read": 369 - } -} diff --git a/parser/testdata/00555_hasSubstr/ast.json b/parser/testdata/00555_hasSubstr/ast.json deleted file mode 100644 index ed27b51647..0000000000 --- a/parser/testdata/00555_hasSubstr/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function hasSubstr (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001279964, - "rows_read": 10, - "bytes_read": 372 - } -} diff --git a/parser/testdata/00555_right_join_excessive_rows/ast.json b/parser/testdata/00555_right_join_excessive_rows/ast.json deleted file mode 100644 index f79dc05f67..0000000000 --- a/parser/testdata/00555_right_join_excessive_rows/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001099768, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00556_array_intersect/ast.json b/parser/testdata/00556_array_intersect/ast.json deleted file mode 100644 index 429f36d6cf..0000000000 --- a/parser/testdata/00556_array_intersect/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayIntersect (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001111728, - "rows_read": 10, - "bytes_read": 377 - } -} diff --git a/parser/testdata/00556_remove_columns_from_subquery/ast.json b/parser/testdata/00556_remove_columns_from_subquery/ast.json deleted file mode 100644 index 9be8e5d716..0000000000 --- a/parser/testdata/00556_remove_columns_from_subquery/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias a)" - }, - { - "explain": " Literal UInt64_2 (alias b)" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001259067, - "rows_read": 15, - "bytes_read": 610 - } -} diff --git a/parser/testdata/00557_alter_null_storage_tables/ast.json b/parser/testdata/00557_alter_null_storage_tables/ast.json deleted file mode 100644 index e9c26f8a9c..0000000000 --- a/parser/testdata/00557_alter_null_storage_tables/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery null_00557 (children 1)" - }, - { - "explain": " Identifier null_00557" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000994026, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00557_array_resize/ast.json b/parser/testdata/00557_array_resize/ast.json deleted file mode 100644 index 4bc451151d..0000000000 --- a/parser/testdata/00557_array_resize/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayResize (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3]" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001143007, - "rows_read": 8, - "bytes_read": 323 - } -} diff --git a/parser/testdata/00558_aggregate_merge_totals_with_arenas/ast.json b/parser/testdata/00558_aggregate_merge_totals_with_arenas/ast.json deleted file mode 100644 index ec9fab5458..0000000000 --- a/parser/testdata/00558_aggregate_merge_totals_with_arenas/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001507616, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00558_parse_floats/ast.json b/parser/testdata/00558_parse_floats/ast.json deleted file mode 100644 index bc6edd096b..0000000000 --- a/parser/testdata/00558_parse_floats/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFloat64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '0.00000'" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_100" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001462862, - "rows_read": 17, - "bytes_read": 682 - } -} diff --git a/parser/testdata/00559_filter_array_generic/ast.json b/parser/testdata/00559_filter_array_generic/ast.json deleted file mode 100644 index 5d634d03a8..0000000000 --- a/parser/testdata/00559_filter_array_generic/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[Array_[UInt64_1], Array_[UInt64_2]], Array_[Array_[UInt64_1]]]" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function length (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001429947, - "rows_read": 13, - "bytes_read": 556 - } -} diff --git a/parser/testdata/00560_float_leading_plus_in_exponent/ast.json b/parser/testdata/00560_float_leading_plus_in_exponent/ast.json deleted file mode 100644 index 38b73740f0..0000000000 --- a/parser/testdata/00560_float_leading_plus_in_exponent/ast.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery test_float (children 2)" - }, - { - "explain": " Identifier test_float" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration x (children 1)" - }, - { - "explain": " DataType Float64" - } - ], - - "rows": 6, - - "statistics": - { - "elapsed": 0.001452855, - "rows_read": 6, - "bytes_read": 221 - } -} diff --git a/parser/testdata/00561_storage_join/ast.json b/parser/testdata/00561_storage_join/ast.json deleted file mode 100644 index fc1925baa0..0000000000 --- a/parser/testdata/00561_storage_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery joinbug (children 1)" - }, - { - "explain": " Identifier joinbug" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00112576, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00562_in_subquery_merge_tree/ast.json b/parser/testdata/00562_in_subquery_merge_tree/ast.json deleted file mode 100644 index 6256e18df0..0000000000 --- a/parser/testdata/00562_in_subquery_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery merge_tree_in_subqueries (children 1)" - }, - { - "explain": " Identifier merge_tree_in_subqueries" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001382289, - "rows_read": 2, - "bytes_read": 100 - } -} diff --git a/parser/testdata/00562_rewrite_select_expression_with_union/ast.json b/parser/testdata/00562_rewrite_select_expression_with_union/ast.json deleted file mode 100644 index 654b6df064..0000000000 --- a/parser/testdata/00562_rewrite_select_expression_with_union/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00562 (children 1)" - }, - { - "explain": " Identifier test_00562" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001371171, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00563_complex_in_expression/ast.json b/parser/testdata/00563_complex_in_expression/ast.json deleted file mode 100644 index 3a42aa713f..0000000000 --- a/parser/testdata/00563_complex_in_expression/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00563 (children 1)" - }, - { - "explain": " Identifier test_00563" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001119594, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00563_insert_into_remote_and_zookeeper_long/ast.json b/parser/testdata/00563_insert_into_remote_and_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00563_insert_into_remote_and_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00563_shard_insert_into_remote/ast.json b/parser/testdata/00563_shard_insert_into_remote/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00563_shard_insert_into_remote/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00564_initial_column_values_with_default_expression/ast.json b/parser/testdata/00564_initial_column_values_with_default_expression/ast.json deleted file mode 100644 index fa1a468b49..0000000000 --- a/parser/testdata/00564_initial_column_values_with_default_expression/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001007392, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00564_temporary_table_management/ast.json b/parser/testdata/00564_temporary_table_management/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00564_temporary_table_management/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00564_versioned_collapsing_merge_tree/ast.json b/parser/testdata/00564_versioned_collapsing_merge_tree/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00564_versioned_collapsing_merge_tree/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00566_enum_min_max/ast.json b/parser/testdata/00566_enum_min_max/ast.json deleted file mode 100644 index 0a4613330f..0000000000 --- a/parser/testdata/00566_enum_min_max/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function min (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function max (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - }, - { - "explain": " Literal 'Enum8(\\'Hello\\' = 1, \\'World\\' = 2)'" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001214845, - "rows_read": 27, - "bytes_read": 1131 - } -} diff --git a/parser/testdata/00567_parse_datetime_as_unix_timestamp/ast.json b/parser/testdata/00567_parse_datetime_as_unix_timestamp/ast.json deleted file mode 100644 index 06dcdb36b3..0000000000 --- a/parser/testdata/00567_parse_datetime_as_unix_timestamp/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001151386, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00568_empty_function_with_fixed_string/ast.json b/parser/testdata/00568_empty_function_with_fixed_string/ast.json deleted file mode 100644 index f959f2d0b7..0000000000 --- a/parser/testdata/00568_empty_function_with_fixed_string/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toFixedString (alias str) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Function empty (alias is_empty) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier str" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.00114886, - "rows_read": 11, - "bytes_read": 426 - } -} diff --git a/parser/testdata/00569_parse_date_time_best_effort/ast.json b/parser/testdata/00569_parse_date_time_best_effort/ast.json deleted file mode 100644 index 2df7b70f42..0000000000 --- a/parser/testdata/00569_parse_date_time_best_effort/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001210177, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00570_empty_array_is_const/ast.json b/parser/testdata/00570_empty_array_is_const/ast.json deleted file mode 100644 index e694fecdb4..0000000000 --- a/parser/testdata/00570_empty_array_is_const/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function dumpColumnStructure (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001364619, - "rows_read": 8, - "bytes_read": 312 - } -} diff --git a/parser/testdata/00571_alter_nullable/ast.json b/parser/testdata/00571_alter_nullable/ast.json deleted file mode 100644 index 0d2678c656..0000000000 --- a/parser/testdata/00571_alter_nullable/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nullable_00571 (children 1)" - }, - { - "explain": " Identifier nullable_00571" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001520795, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00571_non_exist_database_when_create_materializ_view/ast.json b/parser/testdata/00571_non_exist_database_when_create_materializ_view/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00571_non_exist_database_when_create_materializ_view/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00572_aggregation_by_empty_set/ast.json b/parser/testdata/00572_aggregation_by_empty_set/ast.json deleted file mode 100644 index 66ff0f8a91..0000000000 --- a/parser/testdata/00572_aggregation_by_empty_set/ast.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery t (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration x (children 1)" - }, - { - "explain": " DataType UInt8" - } - ], - - "rows": 6, - - "statistics": - { - "elapsed": 0.001183711, - "rows_read": 6, - "bytes_read": 201 - } -} diff --git a/parser/testdata/00573_shard_aggregation_by_empty_set/ast.json b/parser/testdata/00573_shard_aggregation_by_empty_set/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00573_shard_aggregation_by_empty_set/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00575_merge_and_index_with_function_in_in/ast.json b/parser/testdata/00575_merge_and_index_with_function_in_in/ast.json deleted file mode 100644 index 8ee6e776b0..0000000000 --- a/parser/testdata/00575_merge_and_index_with_function_in_in/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_00575 (children 1)" - }, - { - "explain": " Identifier t_00575" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000966019, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00576_nested_and_prewhere/ast.json b/parser/testdata/00576_nested_and_prewhere/ast.json deleted file mode 100644 index 568b5f4b8f..0000000000 --- a/parser/testdata/00576_nested_and_prewhere/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nested (children 1)" - }, - { - "explain": " Identifier nested" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001331222, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00577_full_join_segfault/ast.json b/parser/testdata/00577_full_join_segfault/ast.json deleted file mode 100644 index b8b0574b1a..0000000000 --- a/parser/testdata/00577_full_join_segfault/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.000981647, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00577_replacing_merge_tree_vertical_merge/ast.json b/parser/testdata/00577_replacing_merge_tree_vertical_merge/ast.json deleted file mode 100644 index 4ee0226262..0000000000 --- a/parser/testdata/00577_replacing_merge_tree_vertical_merge/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001678271, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00578_merge_table_and_table_virtual_column/ast.json b/parser/testdata/00578_merge_table_and_table_virtual_column/ast.json deleted file mode 100644 index 9fd0533478..0000000000 --- a/parser/testdata/00578_merge_table_and_table_virtual_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery numbers1 (children 1)" - }, - { - "explain": " Identifier numbers1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00098555, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00578_merge_table_sampling/ast.json b/parser/testdata/00578_merge_table_sampling/ast.json deleted file mode 100644 index 0a4351b906..0000000000 --- a/parser/testdata/00578_merge_table_sampling/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery numbers1 (children 1)" - }, - { - "explain": " Identifier numbers1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00145057, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00578_merge_table_shadow_virtual_column/ast.json b/parser/testdata/00578_merge_table_shadow_virtual_column/ast.json deleted file mode 100644 index cc336dc3b2..0000000000 --- a/parser/testdata/00578_merge_table_shadow_virtual_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery numbers1 (children 1)" - }, - { - "explain": " Identifier numbers1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001543551, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00578_merge_trees_without_primary_key/ast.json b/parser/testdata/00578_merge_trees_without_primary_key/ast.json deleted file mode 100644 index 57b3740d16..0000000000 --- a/parser/testdata/00578_merge_trees_without_primary_key/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '*** MergeTree ***'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001418209, - "rows_read": 5, - "bytes_read": 188 - } -} diff --git a/parser/testdata/00579_merge_tree_partition_and_primary_keys_using_same_expression/ast.json b/parser/testdata/00579_merge_tree_partition_and_primary_keys_using_same_expression/ast.json deleted file mode 100644 index cf903d65dd..0000000000 --- a/parser/testdata/00579_merge_tree_partition_and_primary_keys_using_same_expression/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery partition_and_primary_keys_using_same_expression (children 1)" - }, - { - "explain": " Identifier partition_and_primary_keys_using_same_expression" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001290505, - "rows_read": 2, - "bytes_read": 148 - } -} diff --git a/parser/testdata/00579_virtual_column_and_lazy/ast.json b/parser/testdata/00579_virtual_column_and_lazy/ast.json deleted file mode 100644 index 1e1c5a32cc..0000000000 --- a/parser/testdata/00579_virtual_column_and_lazy/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery sample_00579_1 (children 1)" - }, - { - "explain": " Identifier sample_00579_1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001114452, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00580_cast_nullable_to_non_nullable/ast.json b/parser/testdata/00580_cast_nullable_to_non_nullable/ast.json deleted file mode 100644 index 969d6f3cf5..0000000000 --- a/parser/testdata/00580_cast_nullable_to_non_nullable/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_999999" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal 'UInt64'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001420899, - "rows_read": 20, - "bytes_read": 767 - } -} diff --git a/parser/testdata/00580_consistent_hashing_functions/ast.json b/parser/testdata/00580_consistent_hashing_functions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00580_consistent_hashing_functions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00581_limit_on_result_and_subquery_and_insert/ast.json b/parser/testdata/00581_limit_on_result_and_subquery_and_insert/ast.json deleted file mode 100644 index d4fd9580c2..0000000000 --- a/parser/testdata/00581_limit_on_result_and_subquery_and_insert/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00177981, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00582_not_aliasing_functions/ast.json b/parser/testdata/00582_not_aliasing_functions/ast.json deleted file mode 100644 index a003eb92fe..0000000000 --- a/parser/testdata/00582_not_aliasing_functions/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001611959, - "rows_read": 22, - "bytes_read": 937 - } -} diff --git a/parser/testdata/00583_limit_by_expressions/ast.json b/parser/testdata/00583_limit_by_expressions/ast.json deleted file mode 100644 index 21a0fd6f2f..0000000000 --- a/parser/testdata/00583_limit_by_expressions/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001494562, - "rows_read": 12, - "bytes_read": 445 - } -} diff --git a/parser/testdata/00584_view_union_all/ast.json b/parser/testdata/00584_view_union_all/ast.json deleted file mode 100644 index 50269715a9..0000000000 --- a/parser/testdata/00584_view_union_all/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery Test_00584 (children 1)" - }, - { - "explain": " Identifier Test_00584" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001335869, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00585_union_all_subquery_aggregation_column_removal/ast.json b/parser/testdata/00585_union_all_subquery_aggregation_column_removal/ast.json deleted file mode 100644 index 409a3484e5..0000000000 --- a/parser/testdata/00585_union_all_subquery_aggregation_column_removal/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery clicks (children 1)" - }, - { - "explain": " Identifier clicks" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001485085, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00586_removing_unused_columns_from_subquery/ast.json b/parser/testdata/00586_removing_unused_columns_from_subquery/ast.json deleted file mode 100644 index 29e2f035aa..0000000000 --- a/parser/testdata/00586_removing_unused_columns_from_subquery/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001408882, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00587_union_all_type_conversions/ast.json b/parser/testdata/00587_union_all_type_conversions/ast.json deleted file mode 100644 index 8be5b07571..0000000000 --- a/parser/testdata/00587_union_all_type_conversions/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001455822, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00588_shard_distributed_prewhere/ast.json b/parser/testdata/00588_shard_distributed_prewhere/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00588_shard_distributed_prewhere/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00589_removal_unused_columns_aggregation/ast.json b/parser/testdata/00589_removal_unused_columns_aggregation/ast.json deleted file mode 100644 index 36b0758e7d..0000000000 --- a/parser/testdata/00589_removal_unused_columns_aggregation/ast.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function sum (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function avg (alias b) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number (alias x)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 34, - - "statistics": - { - "elapsed": 0.001422753, - "rows_read": 34, - "bytes_read": 1577 - } -} diff --git a/parser/testdata/00590_limit_by_column_removal/ast.json b/parser/testdata/00590_limit_by_column_removal/ast.json deleted file mode 100644 index 48131d0268..0000000000 --- a/parser/testdata/00590_limit_by_column_removal/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " Literal UInt64_2 (alias y)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001571, - "rows_read": 18, - "bytes_read": 699 - } -} diff --git a/parser/testdata/00591_columns_removal_union_all/ast.json b/parser/testdata/00591_columns_removal_union_all/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00591_columns_removal_union_all/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00592_union_all_different_aliases/ast.json b/parser/testdata/00592_union_all_different_aliases/ast.json deleted file mode 100644 index 032ee0a2e9..0000000000 --- a/parser/testdata/00592_union_all_different_aliases/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias a)" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001517394, - "rows_read": 5, - "bytes_read": 187 - } -} diff --git a/parser/testdata/00593_union_all_assert_columns_removed/ast.json b/parser/testdata/00593_union_all_assert_columns_removed/ast.json deleted file mode 100644 index 1e858e3811..0000000000 --- a/parser/testdata/00593_union_all_assert_columns_removed/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery columns (children 1)" - }, - { - "explain": " Identifier columns" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001309812, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00594_alias_in_distributed/ast.json b/parser/testdata/00594_alias_in_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00594_alias_in_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00597_push_down_predicate_long/ast.json b/parser/testdata/00597_push_down_predicate_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00597_push_down_predicate_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00597_with_totals_on_empty_set/ast.json b/parser/testdata/00597_with_totals_on_empty_set/ast.json deleted file mode 100644 index 643f1f4fc5..0000000000 --- a/parser/testdata/00597_with_totals_on_empty_set/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Identifier Vertical" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001431811, - "rows_read": 17, - "bytes_read": 633 - } -} diff --git a/parser/testdata/00599_create_view_with_subquery/ast.json b/parser/testdata/00599_create_view_with_subquery/ast.json deleted file mode 100644 index 22ee1f16b0..0000000000 --- a/parser/testdata/00599_create_view_with_subquery/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00599 (children 1)" - }, - { - "explain": " Identifier test_00599" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001283599, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00600_create_temporary_table_if_not_exists/ast.json b/parser/testdata/00600_create_temporary_table_if_not_exists/ast.json deleted file mode 100644 index b595e4c18d..0000000000 --- a/parser/testdata/00600_create_temporary_table_if_not_exists/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery temporary_table (children 3)" - }, - { - "explain": " Identifier temporary_table" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration column (children 1)" - }, - { - "explain": " DataType UInt32" - }, - { - "explain": " Storage definition (children 1)" - }, - { - "explain": " Function Memory" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.00134787, - "rows_read": 8, - "bytes_read": 300 - } -} diff --git a/parser/testdata/00603_system_parts_nonexistent_database/ast.json b/parser/testdata/00603_system_parts_nonexistent_database/ast.json deleted file mode 100644 index 406f9edc72..0000000000 --- a/parser/testdata/00603_system_parts_nonexistent_database/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.parts" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier database" - }, - { - "explain": " Literal 'T5yajf3DLcMjJJvpCeX5ajUy1P0VTk51zMEp1kDKXZAGr5EpleuIKbuY8cKaThkaBqllUm2EFxDX'" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001537147, - "rows_read": 14, - "bytes_read": 601 - } -} diff --git a/parser/testdata/00604_shard_remote_and_columns_with_defaults/ast.json b/parser/testdata/00604_shard_remote_and_columns_with_defaults/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00604_shard_remote_and_columns_with_defaults/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00604_show_create_database/ast.json b/parser/testdata/00604_show_create_database/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00604_show_create_database/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00605_intersections_aggregate_functions/ast.json b/parser/testdata/00605_intersections_aggregate_functions/ast.json deleted file mode 100644 index beb2e4936f..0000000000 --- a/parser/testdata/00605_intersections_aggregate_functions/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001372219, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00606_quantiles_and_nans/ast.json b/parser/testdata/00606_quantiles_and_nans/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00606_quantiles_and_nans/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00607_index_in_in/ast.json b/parser/testdata/00607_index_in_in/ast.json deleted file mode 100644 index fa2e670997..0000000000 --- a/parser/testdata/00607_index_in_in/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery merge_tree (children 1)" - }, - { - "explain": " Identifier merge_tree" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001418482, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00608_uniq_array/ast.json b/parser/testdata/00608_uniq_array/ast.json deleted file mode 100644 index ec743da299..0000000000 --- a/parser/testdata/00608_uniq_array/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniq (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3]" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001256172, - "rows_read": 24, - "bytes_read": 1073 - } -} diff --git a/parser/testdata/00609_distributed_with_case_when_then/ast.json b/parser/testdata/00609_distributed_with_case_when_then/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00609_distributed_with_case_when_then/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00609_mv_index_in_in/ast.json b/parser/testdata/00609_mv_index_in_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00609_mv_index_in_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00609_prewhere_and_default/ast.json b/parser/testdata/00609_prewhere_and_default/ast.json deleted file mode 100644 index e68df1c032..0000000000 --- a/parser/testdata/00609_prewhere_and_default/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_00609 (children 1)" - }, - { - "explain": " Identifier table_00609" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001354986, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00610_materialized_view_forward_alter_partition_statements/ast.json b/parser/testdata/00610_materialized_view_forward_alter_partition_statements/ast.json deleted file mode 100644 index a17317cf8e..0000000000 --- a/parser/testdata/00610_materialized_view_forward_alter_partition_statements/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab_00610 (children 1)" - }, - { - "explain": " Identifier tab_00610" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001349234, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00612_count/ast.json b/parser/testdata/00612_count/ast.json deleted file mode 100644 index dd39332095..0000000000 --- a/parser/testdata/00612_count/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery count (children 1)" - }, - { - "explain": " Identifier count" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001142725, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00612_http_max_query_size_for_distributed/ast.json b/parser/testdata/00612_http_max_query_size_for_distributed/ast.json deleted file mode 100644 index f5de26b064..0000000000 --- a/parser/testdata/00612_http_max_query_size_for_distributed/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data_00612 (children 1)" - }, - { - "explain": " Identifier data_00612" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001278013, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00612_pk_in_tuple/ast.json b/parser/testdata/00612_pk_in_tuple/ast.json deleted file mode 100644 index c22e192c3a..0000000000 --- a/parser/testdata/00612_pk_in_tuple/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab_00612 (children 1)" - }, - { - "explain": " Identifier tab_00612" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001339276, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00612_shard_count/ast.json b/parser/testdata/00612_shard_count/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00612_shard_count/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00612_union_query_with_subquery/ast.json b/parser/testdata/00612_union_query_with_subquery/ast.json deleted file mode 100644 index 98a0784a42..0000000000 --- a/parser/testdata/00612_union_query_with_subquery/ast.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - } - ], - - "rows": 38, - - "statistics": - { - "elapsed": 0.001737901, - "rows_read": 38, - "bytes_read": 1599 - } -} diff --git a/parser/testdata/00613_shard_distributed_max_execution_time/ast.json b/parser/testdata/00613_shard_distributed_max_execution_time/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00613_shard_distributed_max_execution_time/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00614_array_nullable/ast.json b/parser/testdata/00614_array_nullable/ast.json deleted file mode 100644 index 633675e025..0000000000 --- a/parser/testdata/00614_array_nullable/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001187012, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00614_shard_same_header_for_local_and_remote_node_in_distributed_query/ast.json b/parser/testdata/00614_shard_same_header_for_local_and_remote_node_in_distributed_query/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00614_shard_same_header_for_local_and_remote_node_in_distributed_query/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00615_nullable_alter_optimize/ast.json b/parser/testdata/00615_nullable_alter_optimize/ast.json deleted file mode 100644 index 83097fc2da..0000000000 --- a/parser/testdata/00615_nullable_alter_optimize/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00615 (children 1)" - }, - { - "explain": " Identifier test_00615" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001285897, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00616_final_single_part/ast.json b/parser/testdata/00616_final_single_part/ast.json deleted file mode 100644 index f0212ed0c9..0000000000 --- a/parser/testdata/00616_final_single_part/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001233848, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00617_array_in/ast.json b/parser/testdata/00617_array_in/ast.json deleted file mode 100644 index c4ef138126..0000000000 --- a/parser/testdata/00617_array_in/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_array_ops (children 1)" - }, - { - "explain": " Identifier test_array_ops" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001279648, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00618_nullable_in/ast.json b/parser/testdata/00618_nullable_in/ast.json deleted file mode 100644 index 4778226cad..0000000000 --- a/parser/testdata/00618_nullable_in/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'a'" - }, - { - "explain": " Literal 'a'" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001246875, - "rows_read": 12, - "bytes_read": 454 - } -} diff --git a/parser/testdata/00619_extract/ast.json b/parser/testdata/00619_extract/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00619_extract/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00619_union_highlite/ast.json b/parser/testdata/00619_union_highlite/ast.json deleted file mode 100644 index 38c87ca82b..0000000000 --- a/parser/testdata/00619_union_highlite/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery union (children 1)" - }, - { - "explain": " Identifier union" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001138975, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00620_optimize_on_nonleader_replica_zookeeper/ast.json b/parser/testdata/00620_optimize_on_nonleader_replica_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00620_optimize_on_nonleader_replica_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00621_regression_for_in_operator/ast.json b/parser/testdata/00621_regression_for_in_operator/ast.json deleted file mode 100644 index b0e3a468be..0000000000 --- a/parser/testdata/00621_regression_for_in_operator/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery regression_for_in_operator_view (children 1)" - }, - { - "explain": " Identifier regression_for_in_operator_view" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001121794, - "rows_read": 2, - "bytes_read": 114 - } -} diff --git a/parser/testdata/00622_select_in_parens/ast.json b/parser/testdata/00622_select_in_parens/ast.json deleted file mode 100644 index 665ff0089e..0000000000 --- a/parser/testdata/00622_select_in_parens/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001179172, - "rows_read": 5, - "bytes_read": 177 - } -} diff --git a/parser/testdata/00623_in_partition_key/ast.json b/parser/testdata/00623_in_partition_key/ast.json deleted file mode 100644 index b2ccbf1b81..0000000000 --- a/parser/testdata/00623_in_partition_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test54378 (children 1)" - }, - { - "explain": " Identifier test54378" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001511713, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00623_replicated_truncate_table_zookeeper_long/ast.json b/parser/testdata/00623_replicated_truncate_table_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00623_replicated_truncate_table_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00623_truncate_all_tables/ast.json b/parser/testdata/00623_truncate_all_tables/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00623_truncate_all_tables/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00623_truncate_table/ast.json b/parser/testdata/00623_truncate_table/ast.json deleted file mode 100644 index 4ee04911fa..0000000000 --- a/parser/testdata/00623_truncate_table/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001290147, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00624_length_utf8/ast.json b/parser/testdata/00624_length_utf8/ast.json deleted file mode 100644 index fe8c2e2d8d..0000000000 --- a/parser/testdata/00624_length_utf8/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'привет пр' (alias x)" - }, - { - "explain": " Function lengthUTF8 (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001340059, - "rows_read": 8, - "bytes_read": 318 - } -} diff --git a/parser/testdata/00625_arrays_in_nested/ast.json b/parser/testdata/00625_arrays_in_nested/ast.json deleted file mode 100644 index 2e11d849e7..0000000000 --- a/parser/testdata/00625_arrays_in_nested/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nested (children 1)" - }, - { - "explain": " Identifier nested" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00147293, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00625_summing_merge_tree_merge/ast.json b/parser/testdata/00625_summing_merge_tree_merge/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00625_summing_merge_tree_merge/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00626_in_syntax/ast.json b/parser/testdata/00626_in_syntax/ast.json deleted file mode 100644 index be4ed88fe9..0000000000 --- a/parser/testdata/00626_in_syntax/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_2)" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001477808, - "rows_read": 10, - "bytes_read": 406 - } -} diff --git a/parser/testdata/00626_replace_partition_from_table/ast.json b/parser/testdata/00626_replace_partition_from_table/ast.json deleted file mode 100644 index a2d027b7ea..0000000000 --- a/parser/testdata/00626_replace_partition_from_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery src (children 1)" - }, - { - "explain": " Identifier src" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001465219, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00627_recursive_alias/ast.json b/parser/testdata/00627_recursive_alias/ast.json deleted file mode 100644 index 48e66d887b..0000000000 --- a/parser/testdata/00627_recursive_alias/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier dummy (alias x)" - }, - { - "explain": " Function plus (alias dummy) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Function identity (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001381207, - "rows_read": 24, - "bytes_read": 992 - } -} diff --git a/parser/testdata/00628_in_lambda_on_merge_table_bug/ast.json b/parser/testdata/00628_in_lambda_on_merge_table_bug/ast.json deleted file mode 100644 index 0546f0f5b7..0000000000 --- a/parser/testdata/00628_in_lambda_on_merge_table_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_in_tuple_1 (children 1)" - }, - { - "explain": " Identifier test_in_tuple_1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001607269, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/00632_aggregation_window_funnel/ast.json b/parser/testdata/00632_aggregation_window_funnel/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00632_aggregation_window_funnel/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00632_get_sample_block_cache/ast.json b/parser/testdata/00632_get_sample_block_cache/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00632_get_sample_block_cache/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00633_func_or_in/ast.json b/parser/testdata/00633_func_or_in/ast.json deleted file mode 100644 index 86e7c32681..0000000000 --- a/parser/testdata/00633_func_or_in/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery orin_test (children 1)" - }, - { - "explain": " Identifier orin_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001150066, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00634_rename_view/ast.json b/parser/testdata/00634_rename_view/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00634_rename_view/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00635_shard_distinct_order_by/ast.json b/parser/testdata/00635_shard_distinct_order_by/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00635_shard_distinct_order_by/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00639_startsWith/ast.json b/parser/testdata/00639_startsWith/ast.json deleted file mode 100644 index 6fd689fe09..0000000000 --- a/parser/testdata/00639_startsWith/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function startsWith (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " Literal 'He'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias s) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['', 'H', 'He', 'Hellow', '3434', 'fffffffffdHe']" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001743014, - "rows_read": 19, - "bytes_read": 823 - } -} diff --git a/parser/testdata/00640_endsWith/ast.json b/parser/testdata/00640_endsWith/ast.json deleted file mode 100644 index cc62cbe22c..0000000000 --- a/parser/testdata/00640_endsWith/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function endsWith (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " Literal 'ow'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias s) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['', 'o', 'ow', 'Hellow', '3434', 'owfffffffdHe']" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001416866, - "rows_read": 19, - "bytes_read": 821 - } -} diff --git a/parser/testdata/00642_cast/ast.json b/parser/testdata/00642_cast/ast.json deleted file mode 100644 index 626aba9bea..0000000000 --- a/parser/testdata/00642_cast/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'Enum8(\\'hello\\' = 1, \\'world\\' = 2)'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001710037, - "rows_read": 8, - "bytes_read": 316 - } -} diff --git a/parser/testdata/00643_cast_zookeeper_long/ast.json b/parser/testdata/00643_cast_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00643_cast_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00644_different_expressions_with_same_alias/ast.json b/parser/testdata/00644_different_expressions_with_same_alias/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00644_different_expressions_with_same_alias/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00645_date_time_input_format/ast.json b/parser/testdata/00645_date_time_input_format/ast.json deleted file mode 100644 index 64b512b356..0000000000 --- a/parser/testdata/00645_date_time_input_format/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery test_00645 (children 3)" - }, - { - "explain": " Identifier test_00645" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration d (children 1)" - }, - { - "explain": " DataType DateTime" - }, - { - "explain": " Storage definition (children 1)" - }, - { - "explain": " Function Memory" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001553989, - "rows_read": 8, - "bytes_read": 287 - } -} diff --git a/parser/testdata/00646_weird_mmx/ast.json b/parser/testdata/00646_weird_mmx/ast.json deleted file mode 100644 index 4b7cc24229..0000000000 --- a/parser/testdata/00646_weird_mmx/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery weird_mmx (children 1)" - }, - { - "explain": " Identifier weird_mmx" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001438474, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00647_histogram/ast.json b/parser/testdata/00647_histogram/ast.json deleted file mode 100644 index 4019ead158..0000000000 --- a/parser/testdata/00647_histogram/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function histogram (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function minus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_20" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.001718506, - "rows_read": 26, - "bytes_read": 1067 - } -} diff --git a/parser/testdata/00647_histogram_negative/ast.json b/parser/testdata/00647_histogram_negative/ast.json deleted file mode 100644 index e445255371..0000000000 --- a/parser/testdata/00647_histogram_negative/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery histogram (children 1)" - }, - { - "explain": " Identifier histogram" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001310797, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00647_multiply_aggregation_state/ast.json b/parser/testdata/00647_multiply_aggregation_state/ast.json deleted file mode 100644 index 96a9c7aec1..0000000000 --- a/parser/testdata/00647_multiply_aggregation_state/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001485922, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00647_select_numbers_with_offset/ast.json b/parser/testdata/00647_select_numbers_with_offset/ast.json deleted file mode 100644 index f459e5dde1..0000000000 --- a/parser/testdata/00647_select_numbers_with_offset/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001162502, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00648_replacing_empty_set_from_prewhere/ast.json b/parser/testdata/00648_replacing_empty_set_from_prewhere/ast.json deleted file mode 100644 index 0166bb31ca..0000000000 --- a/parser/testdata/00648_replacing_empty_set_from_prewhere/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery final_test (children 1)" - }, - { - "explain": " Identifier final_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001560772, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00649_quantile_tdigest_negative/ast.json b/parser/testdata/00649_quantile_tdigest_negative/ast.json deleted file mode 100644 index 46c21a73a4..0000000000 --- a/parser/testdata/00649_quantile_tdigest_negative/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantileTDigest (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Int64_-1, Int64_-2, Int64_-3]" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_0.5" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.00142094, - "rows_read": 11, - "bytes_read": 458 - } -} diff --git a/parser/testdata/00650_array_enumerate_uniq_with_tuples/ast.json b/parser/testdata/00650_array_enumerate_uniq_with_tuples/ast.json deleted file mode 100644 index ce1b2be163..0000000000 --- a/parser/testdata/00650_array_enumerate_uniq_with_tuples/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab_00650 (children 1)" - }, - { - "explain": " Identifier tab_00650" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001466608, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00653_monotonic_integer_cast/ast.json b/parser/testdata/00653_monotonic_integer_cast/ast.json deleted file mode 100644 index c8679c21c7..0000000000 --- a/parser/testdata/00653_monotonic_integer_cast/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_00653 (children 1)" - }, - { - "explain": " Identifier table_00653" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001144115, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00653_running_difference/ast.json b/parser/testdata/00653_running_difference/ast.json deleted file mode 100644 index b8aa0162a2..0000000000 --- a/parser/testdata/00653_running_difference/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001358504, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00660_optimize_final_without_partition/ast.json b/parser/testdata/00660_optimize_final_without_partition/ast.json deleted file mode 100644 index f383fb789c..0000000000 --- a/parser/testdata/00660_optimize_final_without_partition/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001335004, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00661_array_has_silviucpp/ast.json b/parser/testdata/00661_array_has_silviucpp/ast.json deleted file mode 100644 index 8690b1c358..0000000000 --- a/parser/testdata/00661_array_has_silviucpp/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery has_function (children 1)" - }, - { - "explain": " Identifier has_function" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001232592, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/00661_optimize_final_replicated_without_partition_zookeeper/ast.json b/parser/testdata/00661_optimize_final_replicated_without_partition_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00661_optimize_final_replicated_without_partition_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00662_array_has_nullable/ast.json b/parser/testdata/00662_array_has_nullable/ast.json deleted file mode 100644 index 06133e7d5e..0000000000 --- a/parser/testdata/00662_array_has_nullable/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function has (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_['a', 'b']" - }, - { - "explain": " Literal 'a'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001325548, - "rows_read": 8, - "bytes_read": 289 - } -} diff --git a/parser/testdata/00662_has_nullable/ast.json b/parser/testdata/00662_has_nullable/ast.json deleted file mode 100644 index 59e3a2fa99..0000000000 --- a/parser/testdata/00662_has_nullable/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery 00662_has_nullable (children 1)" - }, - { - "explain": " Identifier 00662_has_nullable" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001154579, - "rows_read": 2, - "bytes_read": 88 - } -} diff --git a/parser/testdata/00663_tiny_log_empty_insert/ast.json b/parser/testdata/00663_tiny_log_empty_insert/ast.json deleted file mode 100644 index e872659632..0000000000 --- a/parser/testdata/00663_tiny_log_empty_insert/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery empty (children 1)" - }, - { - "explain": " Identifier empty" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001443712, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00664_cast_from_string_to_nullable/ast.json b/parser/testdata/00664_cast_from_string_to_nullable/ast.json deleted file mode 100644 index b8d77c47c7..0000000000 --- a/parser/testdata/00664_cast_from_string_to_nullable/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['', 'abc', '123', '123a', '-123']" - }, - { - "explain": " Literal 'Nullable(UInt8)'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001414962, - "rows_read": 10, - "bytes_read": 417 - } -} diff --git a/parser/testdata/00665_alter_nullable_string_to_nullable_uint8/ast.json b/parser/testdata/00665_alter_nullable_string_to_nullable_uint8/ast.json deleted file mode 100644 index 320acf8fac..0000000000 --- a/parser/testdata/00665_alter_nullable_string_to_nullable_uint8/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery alter_00665 (children 1)" - }, - { - "explain": " Identifier alter_00665" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001154758, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00666_uniq_complex_types/ast.json b/parser/testdata/00666_uniq_complex_types/ast.json deleted file mode 100644 index df3d7f23fd..0000000000 --- a/parser/testdata/00666_uniq_complex_types/ast.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniq (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal Array_['a']" - }, - { - "explain": " Literal Array_['a', 'b']" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 25, - - "statistics": - { - "elapsed": 0.001430357, - "rows_read": 25, - "bytes_read": 1069 - } -} diff --git a/parser/testdata/00667_compare_arrays_of_different_types/ast.json b/parser/testdata/00667_compare_arrays_of_different_types/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00667_compare_arrays_of_different_types/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00668_compare_arrays_silviucpp/ast.json b/parser/testdata/00668_compare_arrays_silviucpp/ast.json deleted file mode 100644 index 26140e1d8e..0000000000 --- a/parser/testdata/00668_compare_arrays_silviucpp/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery array (children 1)" - }, - { - "explain": " Identifier array" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001139857, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00670_truncate_temporary_table/ast.json b/parser/testdata/00670_truncate_temporary_table/ast.json deleted file mode 100644 index 1db6728ca8..0000000000 --- a/parser/testdata/00670_truncate_temporary_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00670 (children 1)" - }, - { - "explain": " Identifier test_00670" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001370996, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00671_max_intersections/ast.json b/parser/testdata/00671_max_intersections/ast.json deleted file mode 100644 index fcac3494be..0000000000 --- a/parser/testdata/00671_max_intersections/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test1_00671 (children 1)" - }, - { - "explain": " Identifier test1_00671" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001223738, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00672_arrayDistinct/ast.json b/parser/testdata/00672_arrayDistinct/ast.json deleted file mode 100644 index 65f8eaf1a0..0000000000 --- a/parser/testdata/00672_arrayDistinct/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayDistinct (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3]" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001229942, - "rows_read": 7, - "bytes_read": 294 - } -} diff --git a/parser/testdata/00673_subquery_prepared_set_performance/ast.json b/parser/testdata/00673_subquery_prepared_set_performance/ast.json deleted file mode 100644 index ea07ceaa59..0000000000 --- a/parser/testdata/00673_subquery_prepared_set_performance/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mergetree_00673 (children 1)" - }, - { - "explain": " Identifier mergetree_00673" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001307853, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/00674_has_array_enum/ast.json b/parser/testdata/00674_has_array_enum/ast.json deleted file mode 100644 index 40f071d5d2..0000000000 --- a/parser/testdata/00674_has_array_enum/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function has (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Literal 'Enum8(\\'hello\\' = 1, \\'world\\' = 2, \\'abc\\' = 10)'" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001411144, - "rows_read": 22, - "bytes_read": 935 - } -} diff --git a/parser/testdata/00674_join_on_syntax/ast.json b/parser/testdata/00674_join_on_syntax/ast.json deleted file mode 100644 index 0eff7cfd2f..0000000000 --- a/parser/testdata/00674_join_on_syntax/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001381903, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00675_shard_remote_with_table_function/ast.json b/parser/testdata/00675_shard_remote_with_table_function/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00675_shard_remote_with_table_function/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00676_group_by_in/ast.json b/parser/testdata/00676_group_by_in/ast.json deleted file mode 100644 index 9cde471128..0000000000 --- a/parser/testdata/00676_group_by_in/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function in (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001170838, - "rows_read": 12, - "bytes_read": 423 - } -} diff --git a/parser/testdata/00677_shard_any_heavy_merge/ast.json b/parser/testdata/00677_shard_any_heavy_merge/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00677_shard_any_heavy_merge/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00678_murmurhash/ast.json b/parser/testdata/00678_murmurhash/ast.json deleted file mode 100644 index f8d8023287..0000000000 --- a/parser/testdata/00678_murmurhash/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function murmurHash2_32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_123456" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001583032, - "rows_read": 7, - "bytes_read": 272 - } -} diff --git a/parser/testdata/00678_shard_funnel_window/ast.json b/parser/testdata/00678_shard_funnel_window/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00678_shard_funnel_window/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00679_replace_asterisk/ast.json b/parser/testdata/00679_replace_asterisk/ast.json deleted file mode 100644 index f46b1f5de7..0000000000 --- a/parser/testdata/00679_replace_asterisk/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001671906, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00679_uuid_in_key/ast.json b/parser/testdata/00679_uuid_in_key/ast.json deleted file mode 100644 index 2585cf83e5..0000000000 --- a/parser/testdata/00679_uuid_in_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery uuid (children 1)" - }, - { - "explain": " Identifier uuid" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00121459, - "rows_read": 2, - "bytes_read": 61 - } -} diff --git a/parser/testdata/00680_duplicate_columns_inside_union_all/ast.json b/parser/testdata/00680_duplicate_columns_inside_union_all/ast.json deleted file mode 100644 index 12bc1f35fd..0000000000 --- a/parser/testdata/00680_duplicate_columns_inside_union_all/ast.json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " Literal UInt64_2 (alias y)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_3 (alias x)" - }, - { - "explain": " Literal UInt64_4 (alias y)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier y" - } - ], - - "rows": 45, - - "statistics": - { - "elapsed": 0.001740384, - "rows_read": 45, - "bytes_read": 1934 - } -} diff --git a/parser/testdata/00681_duplicate_columns_inside_union_all_stas_sviridov/ast.json b/parser/testdata/00681_duplicate_columns_inside_union_all_stas_sviridov/ast.json deleted file mode 100644 index 30358e8c83..0000000000 --- a/parser/testdata/00681_duplicate_columns_inside_union_all_stas_sviridov/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00681 (children 1)" - }, - { - "explain": " Identifier test_00681" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00100034, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00685_output_format_json_escape_forward_slashes/ast.json b/parser/testdata/00685_output_format_json_escape_forward_slashes/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00685_output_format_json_escape_forward_slashes/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00687_insert_into_mv/ast.json b/parser/testdata/00687_insert_into_mv/ast.json deleted file mode 100644 index 0a821292e0..0000000000 --- a/parser/testdata/00687_insert_into_mv/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00687 (children 1)" - }, - { - "explain": " Identifier test_00687" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000994697, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00688_aggregation_retention/ast.json b/parser/testdata/00688_aggregation_retention/ast.json deleted file mode 100644 index cee646d745..0000000000 --- a/parser/testdata/00688_aggregation_retention/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery retention_test (children 1)" - }, - { - "explain": " Identifier retention_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001216029, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00688_case_without_else/ast.json b/parser/testdata/00688_case_without_else/ast.json deleted file mode 100644 index e59a39b066..0000000000 --- a/parser/testdata/00688_case_without_else/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00688 (children 1)" - }, - { - "explain": " Identifier test_00688" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001307114, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00688_low_cardinality_alter_add_column/ast.json b/parser/testdata/00688_low_cardinality_alter_add_column/ast.json deleted file mode 100644 index 1f2065de65..0000000000 --- a/parser/testdata/00688_low_cardinality_alter_add_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery cardinality (children 1)" - }, - { - "explain": " Identifier cardinality" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001031167, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00688_low_cardinality_defaults/ast.json b/parser/testdata/00688_low_cardinality_defaults/ast.json deleted file mode 100644 index 20c84d6fed..0000000000 --- a/parser/testdata/00688_low_cardinality_defaults/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toLowCardinality (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier val" - }, - { - "explain": " Literal 'UInt64'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias val) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['1']" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.001032767, - "rows_read": 21, - "bytes_read": 877 - } -} diff --git a/parser/testdata/00688_low_cardinality_dictionary_deserialization/ast.json b/parser/testdata/00688_low_cardinality_dictionary_deserialization/ast.json deleted file mode 100644 index 7a4fd05421..0000000000 --- a/parser/testdata/00688_low_cardinality_dictionary_deserialization/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery lc_dict_reading (children 1)" - }, - { - "explain": " Identifier lc_dict_reading" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001199466, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/00688_low_cardinality_in/ast.json b/parser/testdata/00688_low_cardinality_in/ast.json deleted file mode 100644 index 624080ecce..0000000000 --- a/parser/testdata/00688_low_cardinality_in/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.000978499, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00688_low_cardinality_nullable_cast/ast.json b/parser/testdata/00688_low_cardinality_nullable_cast/ast.json deleted file mode 100644 index 69d9a9a7a2..0000000000 --- a/parser/testdata/00688_low_cardinality_nullable_cast/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001175879, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00688_low_cardinality_prewhere/ast.json b/parser/testdata/00688_low_cardinality_prewhere/ast.json deleted file mode 100644 index ac280512d3..0000000000 --- a/parser/testdata/00688_low_cardinality_prewhere/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery lc_prewhere (children 1)" - }, - { - "explain": " Identifier lc_prewhere" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001361055, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00688_low_cardinality_serialization/ast.json b/parser/testdata/00688_low_cardinality_serialization/ast.json deleted file mode 100644 index d6872bbf5a..0000000000 --- a/parser/testdata/00688_low_cardinality_serialization/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'NativeReader'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001241504, - "rows_read": 5, - "bytes_read": 183 - } -} diff --git a/parser/testdata/00688_low_cardinality_syntax/ast.json b/parser/testdata/00688_low_cardinality_syntax/ast.json deleted file mode 100644 index 3c92eb9b59..0000000000 --- a/parser/testdata/00688_low_cardinality_syntax/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001369762, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00689_join_table_function/ast.json b/parser/testdata/00689_join_table_function/ast.json deleted file mode 100644 index fa1b9d6263..0000000000 --- a/parser/testdata/00689_join_table_function/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (alias b) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a.number" - }, - { - "explain": " Identifier b.number" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier a.number" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001313124, - "rows_read": 24, - "bytes_read": 948 - } -} diff --git a/parser/testdata/00691_array_distinct/ast.json b/parser/testdata/00691_array_distinct/ast.json deleted file mode 100644 index ffff0a6782..0000000000 --- a/parser/testdata/00691_array_distinct/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayDistinct (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001608761, - "rows_read": 23, - "bytes_read": 940 - } -} diff --git a/parser/testdata/00692_if_exception_code/ast.json b/parser/testdata/00692_if_exception_code/ast.json deleted file mode 100644 index 7edc635320..0000000000 --- a/parser/testdata/00692_if_exception_code/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001175111, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00693_max_block_size_system_tables_columns/ast.json b/parser/testdata/00693_max_block_size_system_tables_columns/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00693_max_block_size_system_tables_columns/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00695_pretty_max_column_pad_width/ast.json b/parser/testdata/00695_pretty_max_column_pad_width/ast.json deleted file mode 100644 index e265e8f797..0000000000 --- a/parser/testdata/00695_pretty_max_column_pad_width/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00105676, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00696_system_columns_limit/ast.json b/parser/testdata/00696_system_columns_limit/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00696_system_columns_limit/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00697_in_subquery_shard/ast.json b/parser/testdata/00697_in_subquery_shard/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00697_in_subquery_shard/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00698_validate_array_sizes_for_nested/ast.json b/parser/testdata/00698_validate_array_sizes_for_nested/ast.json deleted file mode 100644 index 4c4c6ea2f9..0000000000 --- a/parser/testdata/00698_validate_array_sizes_for_nested/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.000935214, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00698_validate_array_sizes_for_nested_kshvakov/ast.json b/parser/testdata/00698_validate_array_sizes_for_nested_kshvakov/ast.json deleted file mode 100644 index 42b44b8585..0000000000 --- a/parser/testdata/00698_validate_array_sizes_for_nested_kshvakov/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001123606, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00700_decimal_aggregates/ast.json b/parser/testdata/00700_decimal_aggregates/ast.json deleted file mode 100644 index e30b1f05d4..0000000000 --- a/parser/testdata/00700_decimal_aggregates/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001099425, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_decimal_arithm/ast.json b/parser/testdata/00700_decimal_arithm/ast.json deleted file mode 100644 index e4f0555057..0000000000 --- a/parser/testdata/00700_decimal_arithm/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00113477, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_decimal_array_functions/ast.json b/parser/testdata/00700_decimal_array_functions/ast.json deleted file mode 100644 index ee076193c0..0000000000 --- a/parser/testdata/00700_decimal_array_functions/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayDifference (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_0" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_1" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001002594, - "rows_read": 19, - "bytes_read": 765 - } -} diff --git a/parser/testdata/00700_decimal_bounds/ast.json b/parser/testdata/00700_decimal_bounds/ast.json deleted file mode 100644 index f787a45914..0000000000 --- a/parser/testdata/00700_decimal_bounds/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001310927, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_decimal_casts/ast.json b/parser/testdata/00700_decimal_casts/ast.json deleted file mode 100644 index fe8ce3b80b..0000000000 --- a/parser/testdata/00700_decimal_casts/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1.1'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1.1'" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1.1'" - }, - { - "explain": " Literal UInt64_8" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001169272, - "rows_read": 16, - "bytes_read": 575 - } -} diff --git a/parser/testdata/00700_decimal_casts_2/ast.json b/parser/testdata/00700_decimal_casts_2/ast.json deleted file mode 100644 index 07448a398c..0000000000 --- a/parser/testdata/00700_decimal_casts_2/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function toDecimal128 (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1234567890'" - }, - { - "explain": " Literal UInt64_28" - }, - { - "explain": " Function toDecimal128 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_29" - }, - { - "explain": " Function toDecimal128 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDecimal128 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1234567890'" - }, - { - "explain": " Literal UInt64_28" - }, - { - "explain": " Literal UInt64_29" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001328942, - "rows_read": 19, - "bytes_read": 729 - } -} diff --git a/parser/testdata/00700_decimal_compare/ast.json b/parser/testdata/00700_decimal_compare/ast.json deleted file mode 100644 index e4f9e87d1e..0000000000 --- a/parser/testdata/00700_decimal_compare/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00099215, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_decimal_complex_types/ast.json b/parser/testdata/00700_decimal_complex_types/ast.json deleted file mode 100644 index 9d1733b3e2..0000000000 --- a/parser/testdata/00700_decimal_complex_types/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001078482, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_decimal_defaults/ast.json b/parser/testdata/00700_decimal_defaults/ast.json deleted file mode 100644 index 4bdc653973..0000000000 --- a/parser/testdata/00700_decimal_defaults/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001041266, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_decimal_empty_aggregates/ast.json b/parser/testdata/00700_decimal_empty_aggregates/ast.json deleted file mode 100644 index 6dc482a99e..0000000000 --- a/parser/testdata/00700_decimal_empty_aggregates/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000983587, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_decimal_formats/ast.json b/parser/testdata/00700_decimal_formats/ast.json deleted file mode 100644 index 222276cc48..0000000000 --- a/parser/testdata/00700_decimal_formats/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001035301, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_decimal_gathers/ast.json b/parser/testdata/00700_decimal_gathers/ast.json deleted file mode 100644 index ddeb5916cf..0000000000 --- a/parser/testdata/00700_decimal_gathers/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_2" - }, - { - "explain": " Literal 'Decimal(9,3)'" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_1" - }, - { - "explain": " Literal 'Decimal(9,3)'" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001131618, - "rows_read": 23, - "bytes_read": 941 - } -} diff --git a/parser/testdata/00700_decimal_in_keys/ast.json b/parser/testdata/00700_decimal_in_keys/ast.json deleted file mode 100644 index 035ea3bfc8..0000000000 --- a/parser/testdata/00700_decimal_in_keys/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001189775, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_decimal_math/ast.json b/parser/testdata/00700_decimal_math/ast.json deleted file mode 100644 index 2ff01cdaa9..0000000000 --- a/parser/testdata/00700_decimal_math/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function toDecimal32 (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '42.42'" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Function toDecimal32 (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function log (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function exp (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal UInt64_6" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001108488, - "rows_read": 20, - "bytes_read": 755 - } -} diff --git a/parser/testdata/00700_decimal_null/ast.json b/parser/testdata/00700_decimal_null/ast.json deleted file mode 100644 index eab19a78df..0000000000 --- a/parser/testdata/00700_decimal_null/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001118402, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_decimal_round/ast.json b/parser/testdata/00700_decimal_round/ast.json deleted file mode 100644 index 0765cca6ef..0000000000 --- a/parser/testdata/00700_decimal_round/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 7)" - }, - { - "explain": " Function toDecimal32 (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_12345.6789" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_5" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001006645, - "rows_read": 31, - "bytes_read": 1094 - } -} diff --git a/parser/testdata/00700_decimal_with_default_precision_and_scale/ast.json b/parser/testdata/00700_decimal_with_default_precision_and_scale/ast.json deleted file mode 100644 index 52919b7a1d..0000000000 --- a/parser/testdata/00700_decimal_with_default_precision_and_scale/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal (children 1)" - }, - { - "explain": " Identifier decimal" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001266029, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00700_to_decimal_or_something/ast.json b/parser/testdata/00700_to_decimal_or_something/ast.json deleted file mode 100644 index bbca5407e4..0000000000 --- a/parser/testdata/00700_to_decimal_or_something/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function toDecimal32OrZero (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1.1'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toDecimal32OrZero (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1.1'" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function toDecimal32OrZero (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1.1'" - }, - { - "explain": " Literal UInt64_8" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001144277, - "rows_read": 16, - "bytes_read": 593 - } -} diff --git a/parser/testdata/00701_context_use_after_free/ast.json b/parser/testdata/00701_context_use_after_free/ast.json deleted file mode 100644 index e52bfef9eb..0000000000 --- a/parser/testdata/00701_context_use_after_free/ast.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDecimal128 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '1'" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function toDecimal128 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '2'" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDecimal128 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1'" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function toDecimal128 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '2'" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 28, - - "statistics": - { - "elapsed": 0.001066477, - "rows_read": 28, - "bytes_read": 1120 - } -} diff --git a/parser/testdata/00701_join_default_strictness/ast.json b/parser/testdata/00701_join_default_strictness/ast.json deleted file mode 100644 index c19fb67ef0..0000000000 --- a/parser/testdata/00701_join_default_strictness/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery a1 (children 1)" - }, - { - "explain": " Identifier a1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000988396, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00701_rollup/ast.json b/parser/testdata/00701_rollup/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00701_rollup/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00702_join_on_dups/ast.json b/parser/testdata/00702_join_on_dups/ast.json deleted file mode 100644 index 2fd3438815..0000000000 --- a/parser/testdata/00702_join_on_dups/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery X (children 1)" - }, - { - "explain": " Identifier X" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000983641, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00702_join_with_using/ast.json b/parser/testdata/00702_join_with_using/ast.json deleted file mode 100644 index 2ce81ddf19..0000000000 --- a/parser/testdata/00702_join_with_using/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery using1 (children 1)" - }, - { - "explain": " Identifier using1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001108141, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00702_join_with_using_dups/ast.json b/parser/testdata/00702_join_with_using_dups/ast.json deleted file mode 100644 index c966edc9e9..0000000000 --- a/parser/testdata/00702_join_with_using_dups/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery X (children 1)" - }, - { - "explain": " Identifier X" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001065457, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00702_where_with_quailified_names/ast.json b/parser/testdata/00702_where_with_quailified_names/ast.json deleted file mode 100644 index 45a65f2435..0000000000 --- a/parser/testdata/00702_where_with_quailified_names/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery where_qualified (children 1)" - }, - { - "explain": " Identifier where_qualified" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001401823, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/00703_join_crash/ast.json b/parser/testdata/00703_join_crash/ast.json deleted file mode 100644 index b7b37c5da4..0000000000 --- a/parser/testdata/00703_join_crash/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab1 (children 1)" - }, - { - "explain": " Identifier tab1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001077986, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00704_arrayCumSumLimited_arrayDifference/ast.json b/parser/testdata/00704_arrayCumSumLimited_arrayDifference/ast.json deleted file mode 100644 index b035b741e1..0000000000 --- a/parser/testdata/00704_arrayCumSumLimited_arrayDifference/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000902583, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00705_aggregate_states_addition/ast.json b/parser/testdata/00705_aggregate_states_addition/ast.json deleted file mode 100644 index fd814770bc..0000000000 --- a/parser/testdata/00705_aggregate_states_addition/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001124711, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00706_iso_week_and_day_of_year/ast.json b/parser/testdata/00706_iso_week_and_day_of_year/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00706_iso_week_and_day_of_year/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00707_float_csv_delimiter/ast.json b/parser/testdata/00707_float_csv_delimiter/ast.json deleted file mode 100644 index 3308b1390a..0000000000 --- a/parser/testdata/00707_float_csv_delimiter/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00707 (children 1)" - }, - { - "explain": " Identifier test_00707" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001054198, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00709_virtual_column_partition_id/ast.json b/parser/testdata/00709_virtual_column_partition_id/ast.json deleted file mode 100644 index 1a702c7171..0000000000 --- a/parser/testdata/00709_virtual_column_partition_id/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery partition_id (children 1)" - }, - { - "explain": " Identifier partition_id" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001040986, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/00710_array_enumerate_dense/ast.json b/parser/testdata/00710_array_enumerate_dense/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00710_array_enumerate_dense/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00711_array_enumerate_variants/ast.json b/parser/testdata/00711_array_enumerate_variants/ast.json deleted file mode 100644 index f5885b2253..0000000000 --- a/parser/testdata/00711_array_enumerate_variants/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayEnumerateUniq (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3, UInt64_1, UInt64_2]" - }, - { - "explain": " Function arrayEnumerateDense (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3, UInt64_1, UInt64_2]" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.000891382, - "rows_read": 10, - "bytes_read": 490 - } -} diff --git a/parser/testdata/00712_nan_comparison/ast.json b/parser/testdata/00712_nan_comparison/ast.json deleted file mode 100644 index 3ad3e54f53..0000000000 --- a/parser/testdata/00712_nan_comparison/ast.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 6)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " Function toUInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function notEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " Function toUInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " Function toUInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " Function toUInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function lessOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " Function toUInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function greaterOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " Function toUInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 40, - - "statistics": - { - "elapsed": 0.001634908, - "rows_read": 40, - "bytes_read": 1546 - } -} diff --git a/parser/testdata/00712_prewhere_with_alias/ast.json b/parser/testdata/00712_prewhere_with_alias/ast.json deleted file mode 100644 index 5ffd629fa2..0000000000 --- a/parser/testdata/00712_prewhere_with_alias/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery prewhere_alias (children 1)" - }, - { - "explain": " Identifier prewhere_alias" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001540611, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00712_prewhere_with_alias_and_virtual_column/ast.json b/parser/testdata/00712_prewhere_with_alias_and_virtual_column/ast.json deleted file mode 100644 index 97c82ba78e..0000000000 --- a/parser/testdata/00712_prewhere_with_alias_and_virtual_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab_00712_1 (children 1)" - }, - { - "explain": " Identifier tab_00712_1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001084355, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00712_prewhere_with_alias_bug/ast.json b/parser/testdata/00712_prewhere_with_alias_bug/ast.json deleted file mode 100644 index f103834f7a..0000000000 --- a/parser/testdata/00712_prewhere_with_alias_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery prewhere_alias (children 1)" - }, - { - "explain": " Identifier prewhere_alias" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001392267, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00712_prewhere_with_alias_bug_2/ast.json b/parser/testdata/00712_prewhere_with_alias_bug_2/ast.json deleted file mode 100644 index 9ee921dae0..0000000000 --- a/parser/testdata/00712_prewhere_with_alias_bug_2/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table (children 1)" - }, - { - "explain": " Identifier table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001059862, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00712_prewhere_with_final/ast.json b/parser/testdata/00712_prewhere_with_final/ast.json deleted file mode 100644 index 94e2eae265..0000000000 --- a/parser/testdata/00712_prewhere_with_final/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery trepl (children 1)" - }, - { - "explain": " Identifier trepl" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001374667, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00712_prewhere_with_missing_columns/ast.json b/parser/testdata/00712_prewhere_with_missing_columns/ast.json deleted file mode 100644 index 09e0842bc9..0000000000 --- a/parser/testdata/00712_prewhere_with_missing_columns/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mergetree_00712 (children 1)" - }, - { - "explain": " Identifier mergetree_00712" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001040591, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/00712_prewhere_with_missing_columns_2/ast.json b/parser/testdata/00712_prewhere_with_missing_columns_2/ast.json deleted file mode 100644 index 02c4a008b8..0000000000 --- a/parser/testdata/00712_prewhere_with_missing_columns_2/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_00712_1 (children 1)" - }, - { - "explain": " Identifier t_00712_1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001132854, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00712_prewhere_with_sampling/ast.json b/parser/testdata/00712_prewhere_with_sampling/ast.json deleted file mode 100644 index fe0f96a2de..0000000000 --- a/parser/testdata/00712_prewhere_with_sampling/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab_00712_2 (children 1)" - }, - { - "explain": " Identifier tab_00712_2" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001086783, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00712_prewhere_with_sampling_and_alias/ast.json b/parser/testdata/00712_prewhere_with_sampling_and_alias/ast.json deleted file mode 100644 index 0e03095e01..0000000000 --- a/parser/testdata/00712_prewhere_with_sampling_and_alias/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_00712_2 (children 1)" - }, - { - "explain": " Identifier t_00712_2" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001140518, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00713_collapsing_merge_tree/ast.json b/parser/testdata/00713_collapsing_merge_tree/ast.json deleted file mode 100644 index 4380a2f780..0000000000 --- a/parser/testdata/00713_collapsing_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery collapsing (children 1)" - }, - { - "explain": " Identifier collapsing" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000990802, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00714_alter_uuid/ast.json b/parser/testdata/00714_alter_uuid/ast.json deleted file mode 100644 index d3f1ca369b..0000000000 --- a/parser/testdata/00714_alter_uuid/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '00000000-0000-01f8-9cb8-cb1b82fb3900' (alias str)" - }, - { - "explain": " Function toUUID (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier str" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001393259, - "rows_read": 8, - "bytes_read": 327 - } -} diff --git a/parser/testdata/00714_create_temporary_table_with_in_clause/ast.json b/parser/testdata/00714_create_temporary_table_with_in_clause/ast.json deleted file mode 100644 index 64c4e1725e..0000000000 --- a/parser/testdata/00714_create_temporary_table_with_in_clause/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery temporary_table (children 1)" - }, - { - "explain": " Identifier temporary_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001018152, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/00715_bounding_ratio/ast.json b/parser/testdata/00715_bounding_ratio/ast.json deleted file mode 100644 index 55802b3939..0000000000 --- a/parser/testdata/00715_bounding_ratio/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery rate_test (children 1)" - }, - { - "explain": " Identifier rate_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001124993, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00715_bounding_ratio_merge_empty/ast.json b/parser/testdata/00715_bounding_ratio_merge_empty/ast.json deleted file mode 100644 index bdaa89c5c5..0000000000 --- a/parser/testdata/00715_bounding_ratio_merge_empty/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery rate_test (children 1)" - }, - { - "explain": " Identifier rate_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001128656, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00716_allow_ddl/ast.json b/parser/testdata/00716_allow_ddl/ast.json deleted file mode 100644 index d143f642eb..0000000000 --- a/parser/testdata/00716_allow_ddl/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001015995, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00717_default_join_type/ast.json b/parser/testdata/00717_default_join_type/ast.json deleted file mode 100644 index 67ad0b02c8..0000000000 --- a/parser/testdata/00717_default_join_type/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery default_join1 (children 1)" - }, - { - "explain": " Identifier default_join1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001021703, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/00717_low_cardinaliry_distributed_group_by/ast.json b/parser/testdata/00717_low_cardinaliry_distributed_group_by/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00717_low_cardinaliry_distributed_group_by/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00717_low_cardinaliry_group_by/ast.json b/parser/testdata/00717_low_cardinaliry_group_by/ast.json deleted file mode 100644 index 869db9edc9..0000000000 --- a/parser/testdata/00717_low_cardinaliry_group_by/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab_00717 (children 1)" - }, - { - "explain": " Identifier tab_00717" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001180562, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00717_merge_and_distributed/ast.json b/parser/testdata/00717_merge_and_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00717_merge_and_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00718_format_datetime/ast.json b/parser/testdata/00718_format_datetime/ast.json deleted file mode 100644 index 1f1928db26..0000000000 --- a/parser/testdata/00718_format_datetime/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00129846, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00718_format_datetime_1/ast.json b/parser/testdata/00718_format_datetime_1/ast.json deleted file mode 100644 index dceddc99c3..0000000000 --- a/parser/testdata/00718_format_datetime_1/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function formatDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDateTime64 (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal '1900-01-01 00:00:00.000'" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal 'UTC'" - }, - { - "explain": " Literal '%F %T.%f'" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001273472, - "rows_read": 12, - "bytes_read": 469 - } -} diff --git a/parser/testdata/00718_low_cardinaliry_alter/ast.json b/parser/testdata/00718_low_cardinaliry_alter/ast.json deleted file mode 100644 index 4695842e29..0000000000 --- a/parser/testdata/00718_low_cardinaliry_alter/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001406185, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00719_format_datetime_f_varsize_bug/ast.json b/parser/testdata/00719_format_datetime_f_varsize_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00719_format_datetime_f_varsize_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00719_format_datetime_rand/ast.json b/parser/testdata/00719_format_datetime_rand/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00719_format_datetime_rand/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00720_combinations_of_aggregate_combinators/ast.json b/parser/testdata/00720_combinations_of_aggregate_combinators/ast.json deleted file mode 100644 index f6785c331f..0000000000 --- a/parser/testdata/00720_combinations_of_aggregate_combinators/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumForEachArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[UInt64_1], Array_[UInt64_2]]" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001087791, - "rows_read": 7, - "bytes_read": 302 - } -} diff --git a/parser/testdata/00720_with_cube/ast.json b/parser/testdata/00720_with_cube/ast.json deleted file mode 100644 index 094dc418c4..0000000000 --- a/parser/testdata/00720_with_cube/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery cube (children 1)" - }, - { - "explain": " Identifier cube" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001008939, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00721_force_by_identical_result_after_merge_zookeeper_long/ast.json b/parser/testdata/00721_force_by_identical_result_after_merge_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00721_force_by_identical_result_after_merge_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00722_inner_join/ast.json b/parser/testdata/00722_inner_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00722_inner_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00723_remerge_sort/ast.json b/parser/testdata/00723_remerge_sort/ast.json deleted file mode 100644 index df43b278dc..0000000000 --- a/parser/testdata/00723_remerge_sort/ast.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_2000000" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_10000" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 35, - - "statistics": - { - "elapsed": 0.001392392, - "rows_read": 35, - "bytes_read": 1586 - } -} diff --git a/parser/testdata/00724_insert_values_datetime_conversion/ast.json b/parser/testdata/00724_insert_values_datetime_conversion/ast.json deleted file mode 100644 index 861543708e..0000000000 --- a/parser/testdata/00724_insert_values_datetime_conversion/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00724 (children 1)" - }, - { - "explain": " Identifier test_00724" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000985371, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00725_comment_columns_long/ast.json b/parser/testdata/00725_comment_columns_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00725_comment_columns_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00725_ipv4_ipv6_domains/ast.json b/parser/testdata/00725_ipv4_ipv6_domains/ast.json deleted file mode 100644 index 0d66d19f4c..0000000000 --- a/parser/testdata/00725_ipv4_ipv6_domains/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ipv4_test (children 1)" - }, - { - "explain": " Identifier ipv4_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001130826, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00725_join_on_bug_1/ast.json b/parser/testdata/00725_join_on_bug_1/ast.json deleted file mode 100644 index 3db474b60d..0000000000 --- a/parser/testdata/00725_join_on_bug_1/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery a1 (children 1)" - }, - { - "explain": " Identifier a1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00094043, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00725_join_on_bug_2/ast.json b/parser/testdata/00725_join_on_bug_2/ast.json deleted file mode 100644 index 3d91b1c5d0..0000000000 --- a/parser/testdata/00725_join_on_bug_2/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001017732, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00725_join_on_bug_3/ast.json b/parser/testdata/00725_join_on_bug_3/ast.json deleted file mode 100644 index 29220fbeca..0000000000 --- a/parser/testdata/00725_join_on_bug_3/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_00725_3 (children 1)" - }, - { - "explain": " Identifier t_00725_3" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00098925, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00725_join_on_bug_4/ast.json b/parser/testdata/00725_join_on_bug_4/ast.json deleted file mode 100644 index b6d367c2e5..0000000000 --- a/parser/testdata/00725_join_on_bug_4/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_00725_4 (children 1)" - }, - { - "explain": " Identifier t_00725_4" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001018788, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00725_memory_tracking/ast.json b/parser/testdata/00725_memory_tracking/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00725_memory_tracking/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00725_quantiles_shard/ast.json b/parser/testdata/00725_quantiles_shard/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00725_quantiles_shard/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00726_length_aliases/ast.json b/parser/testdata/00726_length_aliases/ast.json deleted file mode 100644 index 63810ecec2..0000000000 --- a/parser/testdata/00726_length_aliases/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function LENGTH (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'корова'" - }, - { - "explain": " Function CHAR_LENGTH (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'ворона'" - }, - { - "explain": " Function CHARACTER_LENGTH (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'фейхоа'" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001183514, - "rows_read": 13, - "bytes_read": 512 - } -} diff --git a/parser/testdata/00726_materialized_view_concurrent/ast.json b/parser/testdata/00726_materialized_view_concurrent/ast.json deleted file mode 100644 index 32467830e9..0000000000 --- a/parser/testdata/00726_materialized_view_concurrent/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery src_00726 (children 1)" - }, - { - "explain": " Identifier src_00726" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001136545, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00726_modulo_for_date/ast.json b/parser/testdata/00726_modulo_for_date/ast.json deleted file mode 100644 index dd9dde04db..0000000000 --- a/parser/testdata/00726_modulo_for_date/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2018-06-21'" - }, - { - "explain": " Literal UInt64_234" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toUInt16 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2018-06-21'" - }, - { - "explain": " Literal UInt64_234" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001018434, - "rows_read": 20, - "bytes_read": 813 - } -} diff --git a/parser/testdata/00727_concat/ast.json b/parser/testdata/00727_concat/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00727_concat/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00729_prewhere_array_join/ast.json b/parser/testdata/00729_prewhere_array_join/ast.json deleted file mode 100644 index ba70699155..0000000000 --- a/parser/testdata/00729_prewhere_array_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001478529, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00730_unicode_terminal_format/ast.json b/parser/testdata/00730_unicode_terminal_format/ast.json deleted file mode 100644 index 0034b6a975..0000000000 --- a/parser/testdata/00730_unicode_terminal_format/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001044457, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00732_base64_functions/ast.json b/parser/testdata/00732_base64_functions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00732_base64_functions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00732_decimal_summing_merge_tree/ast.json b/parser/testdata/00732_decimal_summing_merge_tree/ast.json deleted file mode 100644 index ab1827a9ac..0000000000 --- a/parser/testdata/00732_decimal_summing_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery decimal_sum (children 1)" - }, - { - "explain": " Identifier decimal_sum" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001148066, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00732_quorum_insert_have_data_before_quorum_zookeeper_long/ast.json b/parser/testdata/00732_quorum_insert_have_data_before_quorum_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00732_quorum_insert_have_data_before_quorum_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00732_quorum_insert_lost_part_and_alive_part_zookeeper_long/ast.json b/parser/testdata/00732_quorum_insert_lost_part_and_alive_part_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00732_quorum_insert_lost_part_and_alive_part_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00732_quorum_insert_lost_part_zookeeper_long/ast.json b/parser/testdata/00732_quorum_insert_lost_part_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00732_quorum_insert_lost_part_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00732_quorum_insert_select_with_old_data_and_without_quorum_zookeeper_long/ast.json b/parser/testdata/00732_quorum_insert_select_with_old_data_and_without_quorum_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00732_quorum_insert_select_with_old_data_and_without_quorum_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00732_quorum_insert_simple_test_1_parts_zookeeper_long/ast.json b/parser/testdata/00732_quorum_insert_simple_test_1_parts_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00732_quorum_insert_simple_test_1_parts_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00732_quorum_insert_simple_test_2_parts_zookeeper_long/ast.json b/parser/testdata/00732_quorum_insert_simple_test_2_parts_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00732_quorum_insert_simple_test_2_parts_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00733_if_datetime/ast.json b/parser/testdata/00733_if_datetime/ast.json deleted file mode 100644 index 3664bb5c6f..0000000000 --- a/parser/testdata/00733_if_datetime/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2000-01-01 00:00:00'" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2001-02-03 04:05:06'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001109087, - "rows_read": 22, - "bytes_read": 892 - } -} diff --git a/parser/testdata/00734_timeslot/ast.json b/parser/testdata/00734_timeslot/ast.json deleted file mode 100644 index 7ff5f9bf91..0000000000 --- a/parser/testdata/00734_timeslot/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function timeSlot (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '2000-01-02 03:04:05'" - }, - { - "explain": " Literal 'UTC'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001282468, - "rows_read": 10, - "bytes_read": 393 - } -} diff --git a/parser/testdata/00735_long_conditional/ast.json b/parser/testdata/00735_long_conditional/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00735_long_conditional/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00735_or_expr_optimize_bug/ast.json b/parser/testdata/00735_or_expr_optimize_bug/ast.json deleted file mode 100644 index bfb1f878fb..0000000000 --- a/parser/testdata/00735_or_expr_optimize_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery or_expr_bug (children 1)" - }, - { - "explain": " Identifier or_expr_bug" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001288478, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00736_disjunction_optimisation/ast.json b/parser/testdata/00736_disjunction_optimisation/ast.json deleted file mode 100644 index 2c06213bda..0000000000 --- a/parser/testdata/00736_disjunction_optimisation/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery bug (children 1)" - }, - { - "explain": " Identifier bug" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001352923, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00737_decimal_group_by/ast.json b/parser/testdata/00737_decimal_group_by/ast.json deleted file mode 100644 index 29b8163778..0000000000 --- a/parser/testdata/00737_decimal_group_by/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal32 (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_1.1" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.00136027, - "rows_read": 10, - "bytes_read": 369 - } -} diff --git a/parser/testdata/00738_nested_merge_multidimensional_array/ast.json b/parser/testdata/00738_nested_merge_multidimensional_array/ast.json deleted file mode 100644 index 7d5ddc8a5a..0000000000 --- a/parser/testdata/00738_nested_merge_multidimensional_array/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery sites (children 1)" - }, - { - "explain": " Identifier sites" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001220615, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00739_array_element_nullable_string_mattrobenolt/ast.json b/parser/testdata/00739_array_element_nullable_string_mattrobenolt/ast.json deleted file mode 100644 index 5e487473fe..0000000000 --- a/parser/testdata/00739_array_element_nullable_string_mattrobenolt/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery wups (children 1)" - }, - { - "explain": " Identifier wups" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001293186, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00740_database_in_nested_view/ast.json b/parser/testdata/00740_database_in_nested_view/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00740_database_in_nested_view/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00740_optimize_predicate_expression/ast.json b/parser/testdata/00740_optimize_predicate_expression/ast.json deleted file mode 100644 index c234fa9f86..0000000000 --- a/parser/testdata/00740_optimize_predicate_expression/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery perf (children 1)" - }, - { - "explain": " Identifier perf" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001473344, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00741_client_comment_multiline/ast.json b/parser/testdata/00741_client_comment_multiline/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00741_client_comment_multiline/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00742_require_join_strictness/ast.json b/parser/testdata/00742_require_join_strictness/ast.json deleted file mode 100644 index ee79713594..0000000000 --- a/parser/testdata/00742_require_join_strictness/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001322616, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00743_limit_by_not_found_column/ast.json b/parser/testdata/00743_limit_by_not_found_column/ast.json deleted file mode 100644 index 36cbde26ae..0000000000 --- a/parser/testdata/00743_limit_by_not_found_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery installation_stats (children 1)" - }, - { - "explain": " Identifier installation_stats" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000962691, - "rows_read": 2, - "bytes_read": 88 - } -} diff --git a/parser/testdata/00744_join_not_found_column/ast.json b/parser/testdata/00744_join_not_found_column/ast.json deleted file mode 100644 index e995ca2823..0000000000 --- a/parser/testdata/00744_join_not_found_column/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001269005, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00745_compile_scalar_subquery/ast.json b/parser/testdata/00745_compile_scalar_subquery/ast.json deleted file mode 100644 index 26429ba182..0000000000 --- a/parser/testdata/00745_compile_scalar_subquery/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001526845, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00746_compile_non_deterministic_function/ast.json b/parser/testdata/00746_compile_non_deterministic_function/ast.json deleted file mode 100644 index dbd0902851..0000000000 --- a/parser/testdata/00746_compile_non_deterministic_function/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001111161, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00746_hashing_tuples/ast.json b/parser/testdata/00746_hashing_tuples/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00746_hashing_tuples/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00747_contributors/ast.json b/parser/testdata/00747_contributors/ast.json deleted file mode 100644 index 1afaaa0b24..0000000000 --- a/parser/testdata/00747_contributors/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.contributors" - }, - { - "explain": " Literal UInt64_200" - }, - { - "explain": " Literal 'ok'" - }, - { - "explain": " Literal 'fail'" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001337056, - "rows_read": 23, - "bytes_read": 968 - } -} diff --git a/parser/testdata/00748_insert_array_with_null/ast.json b/parser/testdata/00748_insert_array_with_null/ast.json deleted file mode 100644 index ff53118a66..0000000000 --- a/parser/testdata/00748_insert_array_with_null/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery arraytest (children 1)" - }, - { - "explain": " Identifier arraytest" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001284166, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00749_inner_join_of_unnamed_subqueries/ast.json b/parser/testdata/00749_inner_join_of_unnamed_subqueries/ast.json deleted file mode 100644 index 7dcd4e93b2..0000000000 --- a/parser/testdata/00749_inner_join_of_unnamed_subqueries/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001600091, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00750_merge_tree_merge_with_o_direct/ast.json b/parser/testdata/00750_merge_tree_merge_with_o_direct/ast.json deleted file mode 100644 index 017e69eda2..0000000000 --- a/parser/testdata/00750_merge_tree_merge_with_o_direct/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery sample_merge_tree (children 1)" - }, - { - "explain": " Identifier sample_merge_tree" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001278963, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00751_default_databasename_for_view/ast.json b/parser/testdata/00751_default_databasename_for_view/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00751_default_databasename_for_view/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00751_hashing_ints/ast.json b/parser/testdata/00751_hashing_ints/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00751_hashing_ints/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00751_low_cardinality_nullable_group_by/ast.json b/parser/testdata/00751_low_cardinality_nullable_group_by/ast.json deleted file mode 100644 index 44fb391677..0000000000 --- a/parser/testdata/00751_low_cardinality_nullable_group_by/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001493558, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00752_low_cardinality_array_result/ast.json b/parser/testdata/00752_low_cardinality_array_result/ast.json deleted file mode 100644 index f6e7715b10..0000000000 --- a/parser/testdata/00752_low_cardinality_array_result/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function splitByChar (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal ','" - }, - { - "explain": " Function toLowCardinality (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'a,b,c'" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001248582, - "rows_read": 12, - "bytes_read": 479 - } -} diff --git a/parser/testdata/00752_low_cardinality_lambda_argument/ast.json b/parser/testdata/00752_low_cardinality_lambda_argument/ast.json deleted file mode 100644 index ccacde20b0..0000000000 --- a/parser/testdata/00752_low_cardinality_lambda_argument/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001408733, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00752_low_cardinality_left_array_join/ast.json b/parser/testdata/00752_low_cardinality_left_array_join/ast.json deleted file mode 100644 index e52cfc03cb..0000000000 --- a/parser/testdata/00752_low_cardinality_left_array_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001071991, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00752_low_cardinality_mv_1/ast.json b/parser/testdata/00752_low_cardinality_mv_1/ast.json deleted file mode 100644 index 43c96fb908..0000000000 --- a/parser/testdata/00752_low_cardinality_mv_1/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery lc_00752 (children 1)" - }, - { - "explain": " Identifier lc_00752" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001089849, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00752_low_cardinality_mv_2/ast.json b/parser/testdata/00752_low_cardinality_mv_2/ast.json deleted file mode 100644 index 10664a73ed..0000000000 --- a/parser/testdata/00752_low_cardinality_mv_2/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery radacct (children 1)" - }, - { - "explain": " Identifier radacct" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001424077, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00752_low_cardinality_permute/ast.json b/parser/testdata/00752_low_cardinality_permute/ast.json deleted file mode 100644 index a87fc9ef1a..0000000000 --- a/parser/testdata/00752_low_cardinality_permute/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery lc_perm (children 1)" - }, - { - "explain": " Identifier lc_perm" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001113123, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00753_alter_attach/ast.json b/parser/testdata/00753_alter_attach/ast.json deleted file mode 100644 index 607ff285d2..0000000000 --- a/parser/testdata/00753_alter_attach/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery alter_attach (children 1)" - }, - { - "explain": " Identifier alter_attach" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001366057, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/00753_alter_destination_for_storage_buffer/ast.json b/parser/testdata/00753_alter_destination_for_storage_buffer/ast.json deleted file mode 100644 index 64c686999f..0000000000 --- a/parser/testdata/00753_alter_destination_for_storage_buffer/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery dst_00753 (children 1)" - }, - { - "explain": " Identifier dst_00753" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001336, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00753_comment_columns_zookeeper/ast.json b/parser/testdata/00753_comment_columns_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00753_comment_columns_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00753_distributed_system_columns_and_system_tables/ast.json b/parser/testdata/00753_distributed_system_columns_and_system_tables/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00753_distributed_system_columns_and_system_tables/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00753_quantile_format/ast.json b/parser/testdata/00753_quantile_format/ast.json deleted file mode 100644 index 9b1a61eec7..0000000000 --- a/parser/testdata/00753_quantile_format/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery datetime (children 1)" - }, - { - "explain": " Identifier datetime" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001053642, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00753_system_columns_and_system_tables_long/ast.json b/parser/testdata/00753_system_columns_and_system_tables_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00753_system_columns_and_system_tables_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00753_with_with_single_alias/ast.json b/parser/testdata/00753_with_with_single_alias/ast.json deleted file mode 100644 index 3007e7b725..0000000000 --- a/parser/testdata/00753_with_with_single_alias/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier dummy (alias myName)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier myName" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001089799, - "rows_read": 11, - "bytes_read": 434 - } -} diff --git a/parser/testdata/00754_alter_modify_column_partitions/ast.json b/parser/testdata/00754_alter_modify_column_partitions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00754_alter_modify_column_partitions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00754_alter_modify_order_by/ast.json b/parser/testdata/00754_alter_modify_order_by/ast.json deleted file mode 100644 index b6a26573ba..0000000000 --- a/parser/testdata/00754_alter_modify_order_by/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001290675, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00754_alter_modify_order_by_replicated_zookeeper_long/ast.json b/parser/testdata/00754_alter_modify_order_by_replicated_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00754_alter_modify_order_by_replicated_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00754_first_significant_subdomain_more/ast.json b/parser/testdata/00754_first_significant_subdomain_more/ast.json deleted file mode 100644 index dafa5edbb7..0000000000 --- a/parser/testdata/00754_first_significant_subdomain_more/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function firstSignificantSubdomain (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['http:\/\/usa.gov.com\/cgi-bin\/yabb.pl?password=qwerty', 'https:\/\/www2.pentagon.mil.net\/index.phtml', 'ftp:\/\/stanford.edu.org\/~ivanov\/phd-thesis.SHTM']" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001224939, - "rows_read": 9, - "bytes_read": 514 - } -} diff --git a/parser/testdata/00755_avg_value_size_hint_passing/ast.json b/parser/testdata/00755_avg_value_size_hint_passing/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00755_avg_value_size_hint_passing/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00756_power_alias/ast.json b/parser/testdata/00756_power_alias/ast.json deleted file mode 100644 index dd882d42d5..0000000000 --- a/parser/testdata/00756_power_alias/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function pow (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function POW (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function power (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function POWER (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001178041, - "rows_read": 20, - "bytes_read": 701 - } -} diff --git a/parser/testdata/00757_enum_defaults/ast.json b/parser/testdata/00757_enum_defaults/ast.json deleted file mode 100644 index d508141b54..0000000000 --- a/parser/testdata/00757_enum_defaults/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery auto_assign_enum (children 1)" - }, - { - "explain": " Identifier auto_assign_enum" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00155601, - "rows_read": 2, - "bytes_read": 84 - } -} diff --git a/parser/testdata/00757_enum_defaults_const/ast.json b/parser/testdata/00757_enum_defaults_const/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00757_enum_defaults_const/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00757_enum_defaults_const_analyzer/ast.json b/parser/testdata/00757_enum_defaults_const_analyzer/ast.json deleted file mode 100644 index 163da531bf..0000000000 --- a/parser/testdata/00757_enum_defaults_const_analyzer/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001302531, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00758_array_reverse/ast.json b/parser/testdata/00758_array_reverse/ast.json deleted file mode 100644 index 39056f5071..0000000000 --- a/parser/testdata/00758_array_reverse/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function reverse (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[NULL, '\\0']" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001382457, - "rows_read": 7, - "bytes_read": 270 - } -} diff --git a/parser/testdata/00759_kodieg/ast.json b/parser/testdata/00759_kodieg/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00759_kodieg/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00760_insert_json_with_defaults/ast.json b/parser/testdata/00760_insert_json_with_defaults/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00760_insert_json_with_defaults/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00760_url_functions_overflow/ast.json b/parser/testdata/00760_url_functions_overflow/ast.json deleted file mode 100644 index c9486cfa16..0000000000 --- a/parser/testdata/00760_url_functions_overflow/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function extractURLParameter (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '?_'" - }, - { - "explain": " Literal '\\0_________________________________'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.00145762, - "rows_read": 8, - "bytes_read": 327 - } -} diff --git a/parser/testdata/00761_lower_utf8_bug/ast.json b/parser/testdata/00761_lower_utf8_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00761_lower_utf8_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00762_date_comparsion/ast.json b/parser/testdata/00762_date_comparsion/ast.json deleted file mode 100644 index f84d83f094..0000000000 --- a/parser/testdata/00762_date_comparsion/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001451692, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00763_create_query_as_table_engine_bug/ast.json b/parser/testdata/00763_create_query_as_table_engine_bug/ast.json deleted file mode 100644 index dd9fa785d1..0000000000 --- a/parser/testdata/00763_create_query_as_table_engine_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001477189, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00765_locate/ast.json b/parser/testdata/00765_locate/ast.json deleted file mode 100644 index 4193829d2e..0000000000 --- a/parser/testdata/00765_locate/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001176219, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00765_sql_compatibility_aliases/ast.json b/parser/testdata/00765_sql_compatibility_aliases/ast.json deleted file mode 100644 index fdb5446e8f..0000000000 --- a/parser/testdata/00765_sql_compatibility_aliases/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001156181, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00779_all_right_join_max_block_size/ast.json b/parser/testdata/00779_all_right_join_max_block_size/ast.json deleted file mode 100644 index 74e61b1dd5..0000000000 --- a/parser/testdata/00779_all_right_join_max_block_size/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001480251, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00780_unaligned_array_join/ast.json b/parser/testdata/00780_unaligned_array_join/ast.json deleted file mode 100644 index 1d989cfd0a..0000000000 --- a/parser/testdata/00780_unaligned_array_join/ast.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier arr1" - }, - { - "explain": " Identifier arr2" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function range (alias arr1) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function range (alias arr2) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " ArrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier arr1 (alias x)" - }, - { - "explain": " Identifier arr2 (alias y)" - }, - { - "explain": " Set" - } - ], - - "rows": 41, - - "statistics": - { - "elapsed": 0.001397651, - "rows_read": 41, - "bytes_read": 1692 - } -} diff --git a/parser/testdata/00794_materialized_view_with_column_defaults/ast.json b/parser/testdata/00794_materialized_view_with_column_defaults/ast.json deleted file mode 100644 index 3af1c6361d..0000000000 --- a/parser/testdata/00794_materialized_view_with_column_defaults/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_view (children 1)" - }, - { - "explain": " Identifier table_view" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00197913, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00799_function_dry_run/ast.json b/parser/testdata/00799_function_dry_run/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00799_function_dry_run/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00800_function_java_hash/ast.json b/parser/testdata/00800_function_java_hash/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00800_function_java_hash/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00800_low_cardinality_array_group_by_arg/ast.json b/parser/testdata/00800_low_cardinality_array_group_by_arg/ast.json deleted file mode 100644 index 4d1d3b1b94..0000000000 --- a/parser/testdata/00800_low_cardinality_array_group_by_arg/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table1 (children 1)" - }, - { - "explain": " Identifier table1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001219751, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00800_low_cardinality_distinct_numeric/ast.json b/parser/testdata/00800_low_cardinality_distinct_numeric/ast.json deleted file mode 100644 index fa6a48253d..0000000000 --- a/parser/testdata/00800_low_cardinality_distinct_numeric/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001430763, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00800_low_cardinality_distributed_insert/ast.json b/parser/testdata/00800_low_cardinality_distributed_insert/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00800_low_cardinality_distributed_insert/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00800_low_cardinality_empty_array/ast.json b/parser/testdata/00800_low_cardinality_empty_array/ast.json deleted file mode 100644 index 555d229d16..0000000000 --- a/parser/testdata/00800_low_cardinality_empty_array/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery lc_00800_1 (children 1)" - }, - { - "explain": " Identifier lc_00800_1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001353523, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00800_low_cardinality_join/ast.json b/parser/testdata/00800_low_cardinality_join/ast.json deleted file mode 100644 index 3ab23752a7..0000000000 --- a/parser/testdata/00800_low_cardinality_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001435779, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00800_versatile_storage_join/ast.json b/parser/testdata/00800_versatile_storage_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00800_versatile_storage_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00801_daylight_saving_time_hour_underflow/ast.json b/parser/testdata/00801_daylight_saving_time_hour_underflow/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00801_daylight_saving_time_hour_underflow/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00802_daylight_saving_time_shift_backwards_at_midnight/ast.json b/parser/testdata/00802_daylight_saving_time_shift_backwards_at_midnight/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00802_daylight_saving_time_shift_backwards_at_midnight/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00802_system_parts_with_datetime_partition/ast.json b/parser/testdata/00802_system_parts_with_datetime_partition/ast.json deleted file mode 100644 index 0568bb3ae9..0000000000 --- a/parser/testdata/00802_system_parts_with_datetime_partition/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery datetime_table (children 1)" - }, - { - "explain": " Identifier datetime_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001357384, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00803_odbc_driver_2_format/ast.json b/parser/testdata/00803_odbc_driver_2_format/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00803_odbc_driver_2_format/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00803_xxhash/ast.json b/parser/testdata/00803_xxhash/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00803_xxhash/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00804_rollup_with_having/ast.json b/parser/testdata/00804_rollup_with_having/ast.json deleted file mode 100644 index 5362e71e97..0000000000 --- a/parser/testdata/00804_rollup_with_having/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery rollup_having (children 1)" - }, - { - "explain": " Identifier rollup_having" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001595913, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/00804_test_alter_compression_codecs/ast.json b/parser/testdata/00804_test_alter_compression_codecs/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00804_test_alter_compression_codecs/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00804_test_custom_compression_codecs/ast.json b/parser/testdata/00804_test_custom_compression_codecs/ast.json deleted file mode 100644 index 67933b02b3..0000000000 --- a/parser/testdata/00804_test_custom_compression_codecs/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001393953, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00804_test_custom_compression_codes_log_storages/ast.json b/parser/testdata/00804_test_custom_compression_codes_log_storages/ast.json deleted file mode 100644 index 3c9fc4eec0..0000000000 --- a/parser/testdata/00804_test_custom_compression_codes_log_storages/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001359793, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00804_test_deflate_qpl_codec_compression/ast.json b/parser/testdata/00804_test_deflate_qpl_codec_compression/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00804_test_deflate_qpl_codec_compression/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00804_test_delta_codec_compression/ast.json b/parser/testdata/00804_test_delta_codec_compression/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00804_test_delta_codec_compression/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00804_test_delta_codec_no_type_alter/ast.json b/parser/testdata/00804_test_delta_codec_no_type_alter/ast.json deleted file mode 100644 index 5335bbd467..0000000000 --- a/parser/testdata/00804_test_delta_codec_no_type_alter/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001753029, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00804_test_zstd_qat_codec_compression/ast.json b/parser/testdata/00804_test_zstd_qat_codec_compression/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00804_test_zstd_qat_codec_compression/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00805_round_down/ast.json b/parser/testdata/00805_round_down/ast.json deleted file mode 100644 index 1e9deecf6c..0000000000 --- a/parser/testdata/00805_round_down/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number (alias x)" - }, - { - "explain": " Function roundDown (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal Array_[UInt64_0, UInt64_1, UInt64_2, UInt64_3, UInt64_4, UInt64_5]" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001586231, - "rows_read": 14, - "bytes_read": 592 - } -} diff --git a/parser/testdata/00806_alter_update/ast.json b/parser/testdata/00806_alter_update/ast.json deleted file mode 100644 index 5612249672..0000000000 --- a/parser/testdata/00806_alter_update/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery alter_update_00806 (children 1)" - }, - { - "explain": " Identifier alter_update_00806" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001231919, - "rows_read": 2, - "bytes_read": 88 - } -} diff --git a/parser/testdata/00807_regexp_quote_meta/ast.json b/parser/testdata/00807_regexp_quote_meta/ast.json deleted file mode 100644 index 99581bab2f..0000000000 --- a/parser/testdata/00807_regexp_quote_meta/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function regexpQuoteMeta (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'hello'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001829427, - "rows_read": 7, - "bytes_read": 267 - } -} diff --git a/parser/testdata/00808_array_enumerate_segfault/ast.json b/parser/testdata/00808_array_enumerate_segfault/ast.json deleted file mode 100644 index d7baa4d784..0000000000 --- a/parser/testdata/00808_array_enumerate_segfault/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001160254, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00808_not_optimize_predicate/ast.json b/parser/testdata/00808_not_optimize_predicate/ast.json deleted file mode 100644 index 1b9d7d5610..0000000000 --- a/parser/testdata/00808_not_optimize_predicate/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001265607, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00809_add_days_segfault/ast.json b/parser/testdata/00809_add_days_segfault/ast.json deleted file mode 100644 index b54eb97ab7..0000000000 --- a/parser/testdata/00809_add_days_segfault/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function ignore (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function addDays (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Int64_-1" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001741598, - "rows_read": 12, - "bytes_read": 472 - } -} diff --git a/parser/testdata/00810_in_operators_segfault/ast.json b/parser/testdata/00810_in_operators_segfault/ast.json deleted file mode 100644 index 90acc1a27c..0000000000 --- a/parser/testdata/00810_in_operators_segfault/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001678384, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00811_garbage/ast.json b/parser/testdata/00811_garbage/ast.json deleted file mode 100644 index 2664cdeaf9..0000000000 --- a/parser/testdata/00811_garbage/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00227159, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00812_prewhere_alias_array/ast.json b/parser/testdata/00812_prewhere_alias_array/ast.json deleted file mode 100644 index 8d43682f18..0000000000 --- a/parser/testdata/00812_prewhere_alias_array/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery prewhere (children 1)" - }, - { - "explain": " Identifier prewhere" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001488, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00813_parse_date_time_best_effort_more/ast.json b/parser/testdata/00813_parse_date_time_best_effort_more/ast.json deleted file mode 100644 index 1200e4f3ac..0000000000 --- a/parser/testdata/00813_parse_date_time_best_effort_more/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001413947, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00814_parsing_ub/ast.json b/parser/testdata/00814_parsing_ub/ast.json deleted file mode 100644 index a1308cb7c0..0000000000 --- a/parser/testdata/00814_parsing_ub/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '-128'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.0011827, - "rows_read": 7, - "bytes_read": 257 - } -} diff --git a/parser/testdata/00815_left_join_on_stepanel/ast.json b/parser/testdata/00815_left_join_on_stepanel/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00815_left_join_on_stepanel/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00816_join_column_names_sarg/ast.json b/parser/testdata/00816_join_column_names_sarg/ast.json deleted file mode 100644 index efdc176726..0000000000 --- a/parser/testdata/00816_join_column_names_sarg/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1_00816 (children 1)" - }, - { - "explain": " Identifier t1_00816" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00116398, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00817_with_simple/ast.json b/parser/testdata/00817_with_simple/ast.json deleted file mode 100644 index 04770a2993..0000000000 --- a/parser/testdata/00817_with_simple/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number (alias k)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.00166686, - "rows_read": 12, - "bytes_read": 457 - } -} diff --git a/parser/testdata/00818_alias_bug_4110/ast.json b/parser/testdata/00818_alias_bug_4110/ast.json deleted file mode 100644 index 9ac85e2b35..0000000000 --- a/parser/testdata/00818_alias_bug_4110/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001281393, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00818_inner_join_bug_3567/ast.json b/parser/testdata/00818_inner_join_bug_3567/ast.json deleted file mode 100644 index 90b8e8063d..0000000000 --- a/parser/testdata/00818_inner_join_bug_3567/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001183373, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00818_join_bug_4271/ast.json b/parser/testdata/00818_join_bug_4271/ast.json deleted file mode 100644 index 61985c556c..0000000000 --- a/parser/testdata/00818_join_bug_4271/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_00818 (children 1)" - }, - { - "explain": " Identifier t_00818" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001444315, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00819_ast_refactoring_bugs/ast.json b/parser/testdata/00819_ast_refactoring_bugs/ast.json deleted file mode 100644 index 8b068f4b3b..0000000000 --- a/parser/testdata/00819_ast_refactoring_bugs/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery visits1 (children 1)" - }, - { - "explain": " Identifier visits1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001346539, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00819_full_join_wrong_columns_in_block/ast.json b/parser/testdata/00819_full_join_wrong_columns_in_block/ast.json deleted file mode 100644 index 86fbdf795c..0000000000 --- a/parser/testdata/00819_full_join_wrong_columns_in_block/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001182406, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00820_multiple_joins/ast.json b/parser/testdata/00820_multiple_joins/ast.json deleted file mode 100644 index c55e076051..0000000000 --- a/parser/testdata/00820_multiple_joins/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001163864, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00820_multiple_joins_subquery_requires_alias/ast.json b/parser/testdata/00820_multiple_joins_subquery_requires_alias/ast.json deleted file mode 100644 index ec2bad7007..0000000000 --- a/parser/testdata/00820_multiple_joins_subquery_requires_alias/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001430002, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00821_distributed_storage_with_join_on/ast.json b/parser/testdata/00821_distributed_storage_with_join_on/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00821_distributed_storage_with_join_on/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00822_array_insert_default/ast.json b/parser/testdata/00822_array_insert_default/ast.json deleted file mode 100644 index b8dd8cb062..0000000000 --- a/parser/testdata/00822_array_insert_default/ast.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function ignore (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayFirst (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function empty (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10000000" - } - ], - - "rows": 38, - - "statistics": - { - "elapsed": 0.001615115, - "rows_read": 38, - "bytes_read": 1694 - } -} diff --git a/parser/testdata/00823_sequence_match_dfa/ast.json b/parser/testdata/00823_sequence_match_dfa/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00823_sequence_match_dfa/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00824_filesystem/ast.json b/parser/testdata/00824_filesystem/ast.json deleted file mode 100644 index 480d190ccf..0000000000 --- a/parser/testdata/00824_filesystem/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function and (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function greaterOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function filesystemCapacity (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function filesystemAvailable (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function greaterOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function filesystemAvailable (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function greaterOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function filesystemUnreserved (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001592709, - "rows_read": 22, - "bytes_read": 921 - } -} diff --git a/parser/testdata/00826_cross_to_inner_join/ast.json b/parser/testdata/00826_cross_to_inner_join/ast.json deleted file mode 100644 index 03ef32f376..0000000000 --- a/parser/testdata/00826_cross_to_inner_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001441651, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00829_bitmap64_function/ast.json b/parser/testdata/00829_bitmap64_function/ast.json deleted file mode 100644 index 967ebb6c63..0000000000 --- a/parser/testdata/00829_bitmap64_function/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery bitmap_test (children 1)" - }, - { - "explain": " Identifier bitmap_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001264702, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00829_bitmap_function/ast.json b/parser/testdata/00829_bitmap_function/ast.json deleted file mode 100644 index 49d3c8aaa7..0000000000 --- a/parser/testdata/00829_bitmap_function/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bitmapToArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bitmapBuild (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3, UInt64_4, UInt64_5]" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001162562, - "rows_read": 9, - "bytes_read": 405 - } -} diff --git a/parser/testdata/00830_join_overwrite/ast.json b/parser/testdata/00830_join_overwrite/ast.json deleted file mode 100644 index d081f6f652..0000000000 --- a/parser/testdata/00830_join_overwrite/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery kv (children 1)" - }, - { - "explain": " Identifier kv" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001494259, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00831_quantile_weighted_parameter_check/ast.json b/parser/testdata/00831_quantile_weighted_parameter_check/ast.json deleted file mode 100644 index bbf721dab8..0000000000 --- a/parser/testdata/00831_quantile_weighted_parameter_check/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantileExactWeighted (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier number" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_0.5" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001107757, - "rows_read": 16, - "bytes_read": 632 - } -} diff --git a/parser/testdata/00832_storage_file_lock/ast.json b/parser/testdata/00832_storage_file_lock/ast.json deleted file mode 100644 index 45489e7fd1..0000000000 --- a/parser/testdata/00832_storage_file_lock/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery file (children 1)" - }, - { - "explain": " Identifier file" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001186875, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00833_sleep_overflow/ast.json b/parser/testdata/00833_sleep_overflow/ast.json deleted file mode 100644 index 6bd2cc7ad5..0000000000 --- a/parser/testdata/00833_sleep_overflow/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sleep (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_4295.967296" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001134043, - "rows_read": 7, - "bytes_read": 269 - } -} diff --git a/parser/testdata/00834_date_datetime_cmp/ast.json b/parser/testdata/00834_date_datetime_cmp/ast.json deleted file mode 100644 index 4be3c7da28..0000000000 --- a/parser/testdata/00834_date_datetime_cmp/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2017-06-28 12:01:01'" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2017-07-01'" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001369085, - "rows_read": 12, - "bytes_read": 480 - } -} diff --git a/parser/testdata/00834_limit_with_constant_expressions/ast.json b/parser/testdata/00834_limit_with_constant_expressions/ast.json deleted file mode 100644 index 80e16982d8..0000000000 --- a/parser/testdata/00834_limit_with_constant_expressions/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001009176, - "rows_read": 15, - "bytes_read": 565 - } -} diff --git a/parser/testdata/00834_not_between/ast.json b/parser/testdata/00834_not_between/ast.json deleted file mode 100644 index 3ea68b26ac..0000000000 --- a/parser/testdata/00834_not_between/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function or (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function minus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001257893, - "rows_read": 20, - "bytes_read": 765 - } -} diff --git a/parser/testdata/00835_if_generic_case/ast.json b/parser/testdata/00835_if_generic_case/ast.json deleted file mode 100644 index bba06cacc9..0000000000 --- a/parser/testdata/00835_if_generic_case/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001369162, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00836_indices_alter/ast.json b/parser/testdata/00836_indices_alter/ast.json deleted file mode 100644 index 36df91f549..0000000000 --- a/parser/testdata/00836_indices_alter/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery minmax_idx (children 1)" - }, - { - "explain": " Identifier minmax_idx" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001015581, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00836_indices_alter_replicated_zookeeper_long/ast.json b/parser/testdata/00836_indices_alter_replicated_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00836_indices_alter_replicated_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00836_numbers_table_function_zero/ast.json b/parser/testdata/00836_numbers_table_function_zero/ast.json deleted file mode 100644 index dc98ce1d51..0000000000 --- a/parser/testdata/00836_numbers_table_function_zero/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001264635, - "rows_read": 12, - "bytes_read": 467 - } -} diff --git a/parser/testdata/00837_insert_select_and_read_prefix/ast.json b/parser/testdata/00837_insert_select_and_read_prefix/ast.json deleted file mode 100644 index 0fb385be4c..0000000000 --- a/parser/testdata/00837_insert_select_and_read_prefix/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery file (children 1)" - }, - { - "explain": " Identifier file" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001361939, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00837_minmax_index_replicated_zookeeper_long/ast.json b/parser/testdata/00837_minmax_index_replicated_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00837_minmax_index_replicated_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00839_bitmask_negative/ast.json b/parser/testdata/00839_bitmask_negative/ast.json deleted file mode 100644 index 7494c720aa..0000000000 --- a/parser/testdata/00839_bitmask_negative/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bitmaskToList (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001115139, - "rows_read": 7, - "bytes_read": 266 - } -} diff --git a/parser/testdata/00840_top_k_weighted/ast.json b/parser/testdata/00840_top_k_weighted/ast.json deleted file mode 100644 index e8ebdd4887..0000000000 --- a/parser/testdata/00840_top_k_weighted/ast.json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function topKWeighted (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier weight" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tupleElement (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function tupleElement (alias weight) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias t) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal Tuple_('hello', UInt64_1)" - }, - { - "explain": " Literal Tuple_('world', UInt64_2)" - }, - { - "explain": " Literal Tuple_('goodbye', UInt64_3)" - }, - { - "explain": " Literal Tuple_('abc', UInt64_1)" - } - ], - - "rows": 42, - - "statistics": - { - "elapsed": 0.001596902, - "rows_read": 42, - "bytes_read": 1961 - } -} diff --git a/parser/testdata/00841_temporary_table_database/ast.json b/parser/testdata/00841_temporary_table_database/ast.json deleted file mode 100644 index 63e2421aa6..0000000000 --- a/parser/testdata/00841_temporary_table_database/ast.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery t1_00841 (children 2)" - }, - { - "explain": " Identifier t1_00841" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration x (children 1)" - }, - { - "explain": " DataType UInt8" - } - ], - - "rows": 6, - - "statistics": - { - "elapsed": 0.001543336, - "rows_read": 6, - "bytes_read": 215 - } -} diff --git a/parser/testdata/00842_array_with_constant_overflow/ast.json b/parser/testdata/00842_array_with_constant_overflow/ast.json deleted file mode 100644 index 7bbdff9164..0000000000 --- a/parser/testdata/00842_array_with_constant_overflow/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayWithConstant (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_-231.37104" - }, - { - "explain": " Literal Int64_-138" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001146614, - "rows_read": 8, - "bytes_read": 312 - } -} diff --git a/parser/testdata/00843_optimize_predicate_and_rename_table/ast.json b/parser/testdata/00843_optimize_predicate_and_rename_table/ast.json deleted file mode 100644 index 40fb519b7b..0000000000 --- a/parser/testdata/00843_optimize_predicate_and_rename_table/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001354085, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00844_join_lightee2/ast.json b/parser/testdata/00844_join_lightee2/ast.json deleted file mode 100644 index 92437d2577..0000000000 --- a/parser/testdata/00844_join_lightee2/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1_00844 (children 1)" - }, - { - "explain": " Identifier t1_00844" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001447436, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00845_join_on_aliases/ast.json b/parser/testdata/00845_join_on_aliases/ast.json deleted file mode 100644 index e8ffc92ed6..0000000000 --- a/parser/testdata/00845_join_on_aliases/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table1 (children 1)" - }, - { - "explain": " Identifier table1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001365687, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00846_join_using_tuple_crash/ast.json b/parser/testdata/00846_join_using_tuple_crash/ast.json deleted file mode 100644 index 698641032b..0000000000 --- a/parser/testdata/00846_join_using_tuple_crash/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001820977, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00847_multiple_join_same_column/ast.json b/parser/testdata/00847_multiple_join_same_column/ast.json deleted file mode 100644 index 4ebd783d0e..0000000000 --- a/parser/testdata/00847_multiple_join_same_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001225142, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00848_join_use_nulls_segfault/ast.json b/parser/testdata/00848_join_use_nulls_segfault/ast.json deleted file mode 100644 index c89aba4989..0000000000 --- a/parser/testdata/00848_join_use_nulls_segfault/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001357237, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00849_multiple_comma_join_2/ast.json b/parser/testdata/00849_multiple_comma_join_2/ast.json deleted file mode 100644 index 3488a7726a..0000000000 --- a/parser/testdata/00849_multiple_comma_join_2/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001199943, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00850_global_join_dups/ast.json b/parser/testdata/00850_global_join_dups/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00850_global_join_dups/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00852_any_join_nulls/ast.json b/parser/testdata/00852_any_join_nulls/ast.json deleted file mode 100644 index fed94eee79..0000000000 --- a/parser/testdata/00852_any_join_nulls/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table1 (children 1)" - }, - { - "explain": " Identifier table1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00137349, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00853_join_with_nulls_crash/ast.json b/parser/testdata/00853_join_with_nulls_crash/ast.json deleted file mode 100644 index 91195eb6eb..0000000000 --- a/parser/testdata/00853_join_with_nulls_crash/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_a (children 1)" - }, - { - "explain": " Identifier table_a" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001090699, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00854_multiple_join_asterisks/ast.json b/parser/testdata/00854_multiple_join_asterisks/ast.json deleted file mode 100644 index 766506c6a9..0000000000 --- a/parser/testdata/00854_multiple_join_asterisks/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier t1.dummy" - }, - { - "explain": " Identifier t2.dummy" - }, - { - "explain": " Identifier t3.dummy" - }, - { - "explain": " TablesInSelectQuery (children 3)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one (alias t1)" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one (alias t2)" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t1.dummy" - }, - { - "explain": " Identifier t2.dummy" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one (alias t3)" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t1.dummy" - }, - { - "explain": " Identifier t3.dummy" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001088407, - "rows_read": 27, - "bytes_read": 1092 - } -} diff --git a/parser/testdata/00855_join_with_array_join/ast.json b/parser/testdata/00855_join_with_array_join/ast.json deleted file mode 100644 index 4841965afb..0000000000 --- a/parser/testdata/00855_join_with_array_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001061232, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00856_no_column_issue_4242/ast.json b/parser/testdata/00856_no_column_issue_4242/ast.json deleted file mode 100644 index d2963afb55..0000000000 --- a/parser/testdata/00856_no_column_issue_4242/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1_00856 (children 1)" - }, - { - "explain": " Identifier t1_00856" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000963391, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00857_global_joinsavel_table_alias/ast.json b/parser/testdata/00857_global_joinsavel_table_alias/ast.json deleted file mode 100644 index 88e7fd5401..0000000000 --- a/parser/testdata/00857_global_joinsavel_table_alias/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery local_table (children 1)" - }, - { - "explain": " Identifier local_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001061547, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00858_issue_4756/ast.json b/parser/testdata/00858_issue_4756/ast.json deleted file mode 100644 index 75c9cbe4f2..0000000000 --- a/parser/testdata/00858_issue_4756/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001407137, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00859_distinct_with_join/ast.json b/parser/testdata/00859_distinct_with_join/ast.json deleted file mode 100644 index 804348ddd3..0000000000 --- a/parser/testdata/00859_distinct_with_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery fooL (children 1)" - }, - { - "explain": " Identifier fooL" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00113707, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00860_unknown_identifier_bug/ast.json b/parser/testdata/00860_unknown_identifier_bug/ast.json deleted file mode 100644 index 3d31289869..0000000000 --- a/parser/testdata/00860_unknown_identifier_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery appointment_events (children 1)" - }, - { - "explain": " Identifier appointment_events" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001240836, - "rows_read": 2, - "bytes_read": 88 - } -} diff --git a/parser/testdata/00861_decimal_quoted_csv/ast.json b/parser/testdata/00861_decimal_quoted_csv/ast.json deleted file mode 100644 index 089ef0fdea..0000000000 --- a/parser/testdata/00861_decimal_quoted_csv/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00861 (children 1)" - }, - { - "explain": " Identifier test_00861" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001207856, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00862_decimal_in/ast.json b/parser/testdata/00862_decimal_in/ast.json deleted file mode 100644 index 5020d5ec8f..0000000000 --- a/parser/testdata/00862_decimal_in/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery temp (children 1)" - }, - { - "explain": " Identifier temp" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00106926, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00863_comma_join_in/ast.json b/parser/testdata/00863_comma_join_in/ast.json deleted file mode 100644 index ff1bbbe93e..0000000000 --- a/parser/testdata/00863_comma_join_in/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test1_00863 (children 1)" - }, - { - "explain": " Identifier test1_00863" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001097952, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00864_union_all_supertype/ast.json b/parser/testdata/00864_union_all_supertype/ast.json deleted file mode 100644 index c267d01a21..0000000000 --- a/parser/testdata/00864_union_all_supertype/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.000925325, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00870_t64_codec/ast.json b/parser/testdata/00870_t64_codec/ast.json deleted file mode 100644 index bb0f4f7274..0000000000 --- a/parser/testdata/00870_t64_codec/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t64 (children 1)" - }, - { - "explain": " Identifier t64" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001322454, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00871_t64_codec_signed/ast.json b/parser/testdata/00871_t64_codec_signed/ast.json deleted file mode 100644 index 7aabcb8d69..0000000000 --- a/parser/testdata/00871_t64_codec_signed/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t64 (children 1)" - }, - { - "explain": " Identifier t64" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001015083, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00872_t64_bit_codec/ast.json b/parser/testdata/00872_t64_bit_codec/ast.json deleted file mode 100644 index acd2a95f10..0000000000 --- a/parser/testdata/00872_t64_bit_codec/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t64 (children 1)" - }, - { - "explain": " Identifier t64" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001343863, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00873_t64_codec_date/ast.json b/parser/testdata/00873_t64_codec_date/ast.json deleted file mode 100644 index b03f84fde7..0000000000 --- a/parser/testdata/00873_t64_codec_date/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t64 (children 1)" - }, - { - "explain": " Identifier t64" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001188643, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00874_issue_3495/ast.json b/parser/testdata/00874_issue_3495/ast.json deleted file mode 100644 index 4679c011fa..0000000000 --- a/parser/testdata/00874_issue_3495/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00102652, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00875_join_right_nulls/ast.json b/parser/testdata/00875_join_right_nulls/ast.json deleted file mode 100644 index 6c72fa84de..0000000000 --- a/parser/testdata/00875_join_right_nulls/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001339422, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00875_join_right_nulls_ors/ast.json b/parser/testdata/00875_join_right_nulls_ors/ast.json deleted file mode 100644 index 237cdf2c21..0000000000 --- a/parser/testdata/00875_join_right_nulls_ors/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000939031, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00876_wrong_arraj_join_column/ast.json b/parser/testdata/00876_wrong_arraj_join_column/ast.json deleted file mode 100644 index b6a734bd8c..0000000000 --- a/parser/testdata/00876_wrong_arraj_join_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery visits (children 1)" - }, - { - "explain": " Identifier visits" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001177041, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00877_memory_limit_for_new_delete/ast.json b/parser/testdata/00877_memory_limit_for_new_delete/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00877_memory_limit_for_new_delete/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00878_join_unexpected_results/ast.json b/parser/testdata/00878_join_unexpected_results/ast.json deleted file mode 100644 index 54a00b76fa..0000000000 --- a/parser/testdata/00878_join_unexpected_results/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001126559, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00879_cast_to_decimal_crash/ast.json b/parser/testdata/00879_cast_to_decimal_crash/ast.json deleted file mode 100644 index f8feb0786d..0000000000 --- a/parser/testdata/00879_cast_to_decimal_crash/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toIntervalDay (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'Nullable(Decimal(10, 10))'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001135672, - "rows_read": 10, - "bytes_read": 399 - } -} diff --git a/parser/testdata/00880_decimal_in_key/ast.json b/parser/testdata/00880_decimal_in_key/ast.json deleted file mode 100644 index fa3640d30d..0000000000 --- a/parser/testdata/00880_decimal_in_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001240897, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00881_unknown_identifier_in_in/ast.json b/parser/testdata/00881_unknown_identifier_in_in/ast.json deleted file mode 100644 index c1be10833e..0000000000 --- a/parser/testdata/00881_unknown_identifier_in_in/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUInt64 (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001368095, - "rows_read": 16, - "bytes_read": 653 - } -} diff --git a/parser/testdata/00882_multiple_join_no_alias/ast.json b/parser/testdata/00882_multiple_join_no_alias/ast.json deleted file mode 100644 index e0188e7ea7..0000000000 --- a/parser/testdata/00882_multiple_join_no_alias/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00126944, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00897_flatten/ast.json b/parser/testdata/00897_flatten/ast.json deleted file mode 100644 index 5d32ed991e..0000000000 --- a/parser/testdata/00897_flatten/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function flatten (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Array_[Array_[UInt64_1, UInt64_2, UInt64_3], Array_[UInt64_4, UInt64_5]], Array_[Array_[UInt64_6], Array_[UInt64_7, UInt64_8]]]" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001353328, - "rows_read": 9, - "bytes_read": 475 - } -} diff --git a/parser/testdata/00898_quantile_timing_parameter_check/ast.json b/parser/testdata/00898_quantile_timing_parameter_check/ast.json deleted file mode 100644 index 1b7b3b4087..0000000000 --- a/parser/testdata/00898_quantile_timing_parameter_check/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantileTiming (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_0.5" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001194993, - "rows_read": 15, - "bytes_read": 594 - } -} diff --git a/parser/testdata/00899_long_attach_memory_limit/ast.json b/parser/testdata/00899_long_attach_memory_limit/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00899_long_attach_memory_limit/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00900_entropy_shard/ast.json b/parser/testdata/00900_entropy_shard/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00900_entropy_shard/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00901_joint_entropy/ast.json b/parser/testdata/00901_joint_entropy/ast.json deleted file mode 100644 index aa22c76a7b..0000000000 --- a/parser/testdata/00901_joint_entropy/ast.json +++ /dev/null @@ -1,388 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function minus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function max (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function min (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal Float64_0.000001" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Function entropy (alias e1) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Function log2 (alias e2) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function log2 (alias e3) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniq (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Function entropy (alias e4) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function entropy (alias e5) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function entropy (alias e6) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " Literal 'world'" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Function entropy (alias e7) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function minus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function entropy (alias e8) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Identifier e1" - }, - { - "explain": " Identifier e2" - }, - { - "explain": " Identifier e3" - }, - { - "explain": " Identifier e4" - }, - { - "explain": " Identifier e5" - }, - { - "explain": " Identifier e6" - }, - { - "explain": " Identifier e7" - }, - { - "explain": " Identifier e8" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 122, - - "statistics": - { - "elapsed": 0.001678139, - "rows_read": 122, - "bytes_read": 5543 - } -} diff --git a/parser/testdata/00902_entropy/ast.json b/parser/testdata/00902_entropy/ast.json deleted file mode 100644 index 3028249c0a..0000000000 --- a/parser/testdata/00902_entropy/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults (children 1)" - }, - { - "explain": " Identifier defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001024726, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00903_array_with_constant_function/ast.json b/parser/testdata/00903_array_with_constant_function/ast.json deleted file mode 100644 index 6a50f7111e..0000000000 --- a/parser/testdata/00903_array_with_constant_function/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function arrayWithConstant (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal 'qwerty'" - }, - { - "explain": " Function arrayWithConstant (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Function arrayWithConstant (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001176951, - "rows_read": 16, - "bytes_read": 602 - } -} diff --git a/parser/testdata/00904_array_with_constant_2/ast.json b/parser/testdata/00904_array_with_constant_2/ast.json deleted file mode 100644 index 486e9b6a55..0000000000 --- a/parser/testdata/00904_array_with_constant_2/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayWithConstant (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001282493, - "rows_read": 14, - "bytes_read": 554 - } -} diff --git a/parser/testdata/00905_compile_expressions_compare_big_dates/ast.json b/parser/testdata/00905_compile_expressions_compare_big_dates/ast.json deleted file mode 100644 index a9616e8361..0000000000 --- a/parser/testdata/00905_compile_expressions_compare_big_dates/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001315155, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00905_field_with_aggregate_function_state/ast.json b/parser/testdata/00905_field_with_aggregate_function_state/ast.json deleted file mode 100644 index 8b1ffafd0b..0000000000 --- a/parser/testdata/00905_field_with_aggregate_function_state/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Subquery (alias s) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumState (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumMerge (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier s" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001191696, - "rows_read": 16, - "bytes_read": 634 - } -} diff --git a/parser/testdata/00906_low_cardinality_cache/ast.json b/parser/testdata/00906_low_cardinality_cache/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00906_low_cardinality_cache/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00906_low_cardinality_const_argument/ast.json b/parser/testdata/00906_low_cardinality_const_argument/ast.json deleted file mode 100644 index b736d856ac..0000000000 --- a/parser/testdata/00906_low_cardinality_const_argument/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toLowCardinality (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'a'" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001107768, - "rows_read": 9, - "bytes_read": 355 - } -} diff --git a/parser/testdata/00906_low_cardinality_rollup/ast.json b/parser/testdata/00906_low_cardinality_rollup/ast.json deleted file mode 100644 index 7c98c67948..0000000000 --- a/parser/testdata/00906_low_cardinality_rollup/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery lc (children 1)" - }, - { - "explain": " Identifier lc" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00129689, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00907_set_index_with_nullable_and_low_cardinality/ast.json b/parser/testdata/00907_set_index_with_nullable_and_low_cardinality/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00907_set_index_with_nullable_and_low_cardinality/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00907_set_index_with_nullable_and_low_cardinality_bug/ast.json b/parser/testdata/00907_set_index_with_nullable_and_low_cardinality_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00907_set_index_with_nullable_and_low_cardinality_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00908_analyze_query/ast.json b/parser/testdata/00908_analyze_query/ast.json deleted file mode 100644 index 8d7a55500a..0000000000 --- a/parser/testdata/00908_analyze_query/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery a (children 1)" - }, - { - "explain": " Identifier a" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001034147, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00909_arrayEnumerateUniq/ast.json b/parser/testdata/00909_arrayEnumerateUniq/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00909_arrayEnumerateUniq/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00909_ngram_distance/ast.json b/parser/testdata/00909_ngram_distance/ast.json deleted file mode 100644 index dfb9794ac7..0000000000 --- a/parser/testdata/00909_ngram_distance/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1000" - }, - { - "explain": " Function ngramDistanceUTF8 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal ''" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_5" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001300923, - "rows_read": 20, - "bytes_read": 809 - } -} diff --git a/parser/testdata/00910_buffer_prewhere/ast.json b/parser/testdata/00910_buffer_prewhere/ast.json deleted file mode 100644 index 9ce482db7d..0000000000 --- a/parser/testdata/00910_buffer_prewhere/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery mt (children 3)" - }, - { - "explain": " Identifier mt" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " ColumnDeclaration uid (children 1)" - }, - { - "explain": " DataType UInt64" - }, - { - "explain": " ColumnDeclaration ts (children 1)" - }, - { - "explain": " DataType DateTime" - }, - { - "explain": " ColumnDeclaration val (children 1)" - }, - { - "explain": " DataType Float64" - }, - { - "explain": " Storage definition (children 3)" - }, - { - "explain": " Function MergeTree" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier ts" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier uid" - }, - { - "explain": " Identifier ts" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001461231, - "rows_read": 19, - "bytes_read": 647 - } -} diff --git a/parser/testdata/00910_buffer_prewhere_different_types/ast.json b/parser/testdata/00910_buffer_prewhere_different_types/ast.json deleted file mode 100644 index 536a25a258..0000000000 --- a/parser/testdata/00910_buffer_prewhere_different_types/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery buffer_table1__fuzz_28 (children 1)" - }, - { - "explain": " Identifier buffer_table1__fuzz_28" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000970567, - "rows_read": 2, - "bytes_read": 96 - } -} diff --git a/parser/testdata/00910_crash_when_distributed_modify_order_by/ast.json b/parser/testdata/00910_crash_when_distributed_modify_order_by/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00910_crash_when_distributed_modify_order_by/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00910_decimal_group_array_crash_3783/ast.json b/parser/testdata/00910_decimal_group_array_crash_3783/ast.json deleted file mode 100644 index 61d4777615..0000000000 --- a/parser/testdata/00910_decimal_group_array_crash_3783/ast.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sum (alias s) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier n" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal32 (alias n) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 30, - - "statistics": - { - "elapsed": 0.001538419, - "rows_read": 30, - "bytes_read": 1354 - } -} diff --git a/parser/testdata/00910_zookeeper_custom_compression_codecs_replicated_long/ast.json b/parser/testdata/00910_zookeeper_custom_compression_codecs_replicated_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00910_zookeeper_custom_compression_codecs_replicated_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00910_zookeeper_test_alter_compression_codecs_long/ast.json b/parser/testdata/00910_zookeeper_test_alter_compression_codecs_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00910_zookeeper_test_alter_compression_codecs_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00911_tautological_compare/ast.json b/parser/testdata/00911_tautological_compare/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00911_tautological_compare/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00912_string_comparison/ast.json b/parser/testdata/00912_string_comparison/ast.json deleted file mode 100644 index 7c3f7bf8d9..0000000000 --- a/parser/testdata/00912_string_comparison/ast.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function substring (alias prefix) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function concat (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier prefix" - }, - { - "explain": " Literal 'x'" - }, - { - "explain": " Function concat (alias b) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier prefix" - }, - { - "explain": " Literal 'y'" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " Function lessOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " Function greaterOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_40" - } - ], - - "rows": 44, - - "statistics": - { - "elapsed": 0.001927177, - "rows_read": 44, - "bytes_read": 1630 - } -} diff --git a/parser/testdata/00913_many_threads/ast.json b/parser/testdata/00913_many_threads/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00913_many_threads/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00914_join_bgranvea/ast.json b/parser/testdata/00914_join_bgranvea/ast.json deleted file mode 100644 index dbae659416..0000000000 --- a/parser/testdata/00914_join_bgranvea/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table1 (children 1)" - }, - { - "explain": " Identifier table1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001395627, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00914_replicate/ast.json b/parser/testdata/00914_replicate/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00914_replicate/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00915_simple_aggregate_function/ast.json b/parser/testdata/00915_simple_aggregate_function/ast.json deleted file mode 100644 index 809558bb9f..0000000000 --- a/parser/testdata/00915_simple_aggregate_function/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.000971321, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00915_simple_aggregate_function_summing_merge_tree/ast.json b/parser/testdata/00915_simple_aggregate_function_summing_merge_tree/ast.json deleted file mode 100644 index 92e69b6140..0000000000 --- a/parser/testdata/00915_simple_aggregate_function_summing_merge_tree/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001293726, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00915_tuple_orantius/ast.json b/parser/testdata/00915_tuple_orantius/ast.json deleted file mode 100644 index e7539b78a3..0000000000 --- a/parser/testdata/00915_tuple_orantius/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_2, UInt64_3) (alias y)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001388997, - "rows_read": 10, - "bytes_read": 381 - } -} diff --git a/parser/testdata/00916_add_materialized_column_after/ast.json b/parser/testdata/00916_add_materialized_column_after/ast.json deleted file mode 100644 index f9b95014f3..0000000000 --- a/parser/testdata/00916_add_materialized_column_after/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery add_materialized_column_after (children 1)" - }, - { - "explain": " Identifier add_materialized_column_after" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001071529, - "rows_read": 2, - "bytes_read": 110 - } -} diff --git a/parser/testdata/00916_create_or_replace_view/ast.json b/parser/testdata/00916_create_or_replace_view/ast.json deleted file mode 100644 index c96f75fdc1..0000000000 --- a/parser/testdata/00916_create_or_replace_view/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001225972, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00916_join_using_duplicate_columns/ast.json b/parser/testdata/00916_join_using_duplicate_columns/ast.json deleted file mode 100644 index dc9387fb18..0000000000 --- a/parser/testdata/00916_join_using_duplicate_columns/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00121557, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00917_least_sqr/ast.json b/parser/testdata/00917_least_sqr/ast.json deleted file mode 100644 index bed5117da3..0000000000 --- a/parser/testdata/00917_least_sqr/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayReduce (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'simpleLinearRegression'" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3, UInt64_4]" - }, - { - "explain": " Literal Array_[UInt64_100, UInt64_110, UInt64_120, UInt64_130]" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.00126065, - "rows_read": 9, - "bytes_read": 424 - } -} diff --git a/parser/testdata/00917_multiple_joins_denny_crane/ast.json b/parser/testdata/00917_multiple_joins_denny_crane/ast.json deleted file mode 100644 index ef507b08ee..0000000000 --- a/parser/testdata/00917_multiple_joins_denny_crane/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001226094, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00918_has_unsufficient_type_check/ast.json b/parser/testdata/00918_has_unsufficient_type_check/ast.json deleted file mode 100644 index 238c1ed53c..0000000000 --- a/parser/testdata/00918_has_unsufficient_type_check/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function hasAny (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[Array_['Hello, world']]" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.000965785, - "rows_read": 13, - "bytes_read": 529 - } -} diff --git a/parser/testdata/00918_json_functions/ast.json b/parser/testdata/00918_json_functions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00918_json_functions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00919_histogram_merge/ast.json b/parser/testdata/00919_histogram_merge/ast.json deleted file mode 100644 index d3be91a98f..0000000000 --- a/parser/testdata/00919_histogram_merge/ast.json +++ /dev/null @@ -1,211 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (alias hist) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function finalizeAggregation (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function histogramState (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Literal UInt64_190" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function histogramState (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function round (alias l) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier hist" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function round (alias r) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier hist" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function round (alias cnt) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier hist" - }, - { - "explain": " Literal UInt64_3" - } - ], - - "rows": 63, - - "statistics": - { - "elapsed": 0.001349774, - "rows_read": 63, - "bytes_read": 2873 - } -} diff --git a/parser/testdata/00919_sum_aggregate_states_constants/ast.json b/parser/testdata/00919_sum_aggregate_states_constants/ast.json deleted file mode 100644 index dc3cf2c10e..0000000000 --- a/parser/testdata/00919_sum_aggregate_states_constants/ast.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function finalizeAggregation (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumState (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumState (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 36, - - "statistics": - { - "elapsed": 0.001752637, - "rows_read": 36, - "bytes_read": 1662 - } -} diff --git a/parser/testdata/00920_multiply_aggregate_states_constants/ast.json b/parser/testdata/00920_multiply_aggregate_states_constants/ast.json deleted file mode 100644 index 566b7bd403..0000000000 --- a/parser/testdata/00920_multiply_aggregate_states_constants/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function finalizeAggregation (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumState (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001328661, - "rows_read": 23, - "bytes_read": 1030 - } -} diff --git a/parser/testdata/00921_datetime64_basic/ast.json b/parser/testdata/00921_datetime64_basic/ast.json deleted file mode 100644 index bea1adbb1c..0000000000 --- a/parser/testdata/00921_datetime64_basic/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery A (children 1)" - }, - { - "explain": " Identifier A" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001383662, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00926_adaptive_index_granularity_collapsing_merge_tree/ast.json b/parser/testdata/00926_adaptive_index_granularity_collapsing_merge_tree/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00926_adaptive_index_granularity_collapsing_merge_tree/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00926_adaptive_index_granularity_merge_tree/ast.json b/parser/testdata/00926_adaptive_index_granularity_merge_tree/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00926_adaptive_index_granularity_merge_tree/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00926_adaptive_index_granularity_pk/ast.json b/parser/testdata/00926_adaptive_index_granularity_pk/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00926_adaptive_index_granularity_pk/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00926_adaptive_index_granularity_replacing_merge_tree/ast.json b/parser/testdata/00926_adaptive_index_granularity_replacing_merge_tree/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00926_adaptive_index_granularity_replacing_merge_tree/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00926_adaptive_index_granularity_versioned_collapsing_merge_tree/ast.json b/parser/testdata/00926_adaptive_index_granularity_versioned_collapsing_merge_tree/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00926_adaptive_index_granularity_versioned_collapsing_merge_tree/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00926_geo_to_h3/ast.json b/parser/testdata/00926_geo_to_h3/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00926_geo_to_h3/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00926_multimatch/ast.json b/parser/testdata/00926_multimatch/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00926_multimatch/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00926_zookeeper_adaptive_index_granularity_replicated_merge_tree_long/ast.json b/parser/testdata/00926_zookeeper_adaptive_index_granularity_replicated_merge_tree_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00926_zookeeper_adaptive_index_granularity_replicated_merge_tree_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00927_asof_join_correct_bt/ast.json b/parser/testdata/00927_asof_join_correct_bt/ast.json deleted file mode 100644 index 1436750f6b..0000000000 --- a/parser/testdata/00927_asof_join_correct_bt/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery A (children 1)" - }, - { - "explain": " Identifier A" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001322189, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00927_asof_join_long/ast.json b/parser/testdata/00927_asof_join_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00927_asof_join_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00927_asof_join_noninclusive/ast.json b/parser/testdata/00927_asof_join_noninclusive/ast.json deleted file mode 100644 index fbf9ffac67..0000000000 --- a/parser/testdata/00927_asof_join_noninclusive/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery A (children 1)" - }, - { - "explain": " Identifier A" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001468212, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00927_asof_joins/ast.json b/parser/testdata/00927_asof_joins/ast.json deleted file mode 100644 index c150cd242d..0000000000 --- a/parser/testdata/00927_asof_joins/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery md (children 1)" - }, - { - "explain": " Identifier md" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001391423, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00927_disable_hyperscan/ast.json b/parser/testdata/00927_disable_hyperscan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00927_disable_hyperscan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00928_multi_match_constant_constant/ast.json b/parser/testdata/00928_multi_match_constant_constant/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00928_multi_match_constant_constant/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00929_multi_match_edit_distance/ast.json b/parser/testdata/00929_multi_match_edit_distance/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00929_multi_match_edit_distance/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00930_arrayIntersect/ast.json b/parser/testdata/00930_arrayIntersect/ast.json deleted file mode 100644 index 75fe136f85..0000000000 --- a/parser/testdata/00930_arrayIntersect/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery array_intersect (children 1)" - }, - { - "explain": " Identifier array_intersect" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001030341, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/00930_max_partitions_per_insert_block/ast.json b/parser/testdata/00930_max_partitions_per_insert_block/ast.json deleted file mode 100644 index a8aa40b561..0000000000 --- a/parser/testdata/00930_max_partitions_per_insert_block/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery partitions (children 1)" - }, - { - "explain": " Identifier partitions" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001083644, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00931_low_cardinality_nullable_aggregate_function_type/ast.json b/parser/testdata/00931_low_cardinality_nullable_aggregate_function_type/ast.json deleted file mode 100644 index 74f7f26b13..0000000000 --- a/parser/testdata/00931_low_cardinality_nullable_aggregate_function_type/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery lc (children 1)" - }, - { - "explain": " Identifier lc" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001249718, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00931_low_cardinality_read_with_empty_array/ast.json b/parser/testdata/00931_low_cardinality_read_with_empty_array/ast.json deleted file mode 100644 index 64aebcf442..0000000000 --- a/parser/testdata/00931_low_cardinality_read_with_empty_array/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery lc_00931 (children 1)" - }, - { - "explain": " Identifier lc_00931" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001022496, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00931_low_cardinality_set_index_in_key_condition/ast.json b/parser/testdata/00931_low_cardinality_set_index_in_key_condition/ast.json deleted file mode 100644 index 8ea39c1532..0000000000 --- a/parser/testdata/00931_low_cardinality_set_index_in_key_condition/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_in (children 1)" - }, - { - "explain": " Identifier test_in" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001029122, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00932_array_intersect_bug/ast.json b/parser/testdata/00932_array_intersect_bug/ast.json deleted file mode 100644 index ad5f68693e..0000000000 --- a/parser/testdata/00932_array_intersect_bug/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arraySort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayIntersect (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_['a', 'b', 'c']" - }, - { - "explain": " Literal Array_['a', 'a']" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001068454, - "rows_read": 10, - "bytes_read": 409 - } -} diff --git a/parser/testdata/00932_geohash_support/ast.json b/parser/testdata/00932_geohash_support/ast.json deleted file mode 100644 index 9bc7343c53..0000000000 --- a/parser/testdata/00932_geohash_support/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery geohash_test_data (children 1)" - }, - { - "explain": " Identifier geohash_test_data" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00124198, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00933_alter_ttl/ast.json b/parser/testdata/00933_alter_ttl/ast.json deleted file mode 100644 index d855dc94bb..0000000000 --- a/parser/testdata/00933_alter_ttl/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00118671, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00933_reserved_word/ast.json b/parser/testdata/00933_reserved_word/ast.json deleted file mode 100644 index 8b4ef23d76..0000000000 --- a/parser/testdata/00933_reserved_word/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery reserved_word_table (children 1)" - }, - { - "explain": " Identifier reserved_word_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001078836, - "rows_read": 2, - "bytes_read": 90 - } -} diff --git a/parser/testdata/00933_ttl_formatting/ast.json b/parser/testdata/00933_ttl_formatting/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00933_ttl_formatting/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00933_ttl_simple/ast.json b/parser/testdata/00933_ttl_simple/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00933_ttl_simple/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00933_ttl_with_default/ast.json b/parser/testdata/00933_ttl_with_default/ast.json deleted file mode 100644 index 060af8e174..0000000000 --- a/parser/testdata/00933_ttl_with_default/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ttl_00933_2 (children 1)" - }, - { - "explain": " Identifier ttl_00933_2" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00104667, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00934_is_valid_utf8/ast.json b/parser/testdata/00934_is_valid_utf8/ast.json deleted file mode 100644 index 3aeddc309a..0000000000 --- a/parser/testdata/00934_is_valid_utf8/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function isValidUTF8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001009949, - "rows_read": 15, - "bytes_read": 581 - } -} diff --git a/parser/testdata/00935_to_iso_week_first_year/ast.json b/parser/testdata/00935_to_iso_week_first_year/ast.json deleted file mode 100644 index bf18cc272a..0000000000 --- a/parser/testdata/00935_to_iso_week_first_year/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function plus (alias d) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '1970-01-01'" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toISOWeek (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier d" - }, - { - "explain": " Function toISOYear (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier d" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_15" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001070195, - "rows_read": 22, - "bytes_read": 859 - } -} diff --git a/parser/testdata/00936_crc_functions/ast.json b/parser/testdata/00936_crc_functions/ast.json deleted file mode 100644 index 2def2fda75..0000000000 --- a/parser/testdata/00936_crc_functions/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table1 (children 1)" - }, - { - "explain": " Identifier table1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001139815, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/00936_function_result_with_operator_in/ast.json b/parser/testdata/00936_function_result_with_operator_in/ast.json deleted file mode 100644 index 6ca225bbd6..0000000000 --- a/parser/testdata/00936_function_result_with_operator_in/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001438444, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00936_substring_utf8_non_const/ast.json b/parser/testdata/00936_substring_utf8_non_const/ast.json deleted file mode 100644 index cbbfb7523a..0000000000 --- a/parser/testdata/00936_substring_utf8_non_const/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function substringUTF8 (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'hello, привет'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_16" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001385257, - "rows_read": 15, - "bytes_read": 593 - } -} diff --git a/parser/testdata/00937_ipv4_cidr_range/ast.json b/parser/testdata/00937_ipv4_cidr_range/ast.json deleted file mode 100644 index 2424db5c4c..0000000000 --- a/parser/testdata/00937_ipv4_cidr_range/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'tests'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001518412, - "rows_read": 5, - "bytes_read": 176 - } -} diff --git a/parser/testdata/00938_basename/ast.json b/parser/testdata/00938_basename/ast.json deleted file mode 100644 index 363b3705de..0000000000 --- a/parser/testdata/00938_basename/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function basename (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '\/usr\/bin\/bash'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001175897, - "rows_read": 7, - "bytes_read": 268 - } -} diff --git a/parser/testdata/00938_dataset_test/ast.json b/parser/testdata/00938_dataset_test/ast.json deleted file mode 100644 index e727ab7e17..0000000000 --- a/parser/testdata/00938_dataset_test/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults (children 1)" - }, - { - "explain": " Identifier defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001568839, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00938_ipv6_cidr_range/ast.json b/parser/testdata/00938_ipv6_cidr_range/ast.json deleted file mode 100644 index 4eb8ad1538..0000000000 --- a/parser/testdata/00938_ipv6_cidr_range/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'check invalid params'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001091834, - "rows_read": 5, - "bytes_read": 191 - } -} diff --git a/parser/testdata/00938_test_retention_function/ast.json b/parser/testdata/00938_test_retention_function/ast.json deleted file mode 100644 index 1ab00afa9e..0000000000 --- a/parser/testdata/00938_test_retention_function/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery retention_test (children 1)" - }, - { - "explain": " Identifier retention_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001135065, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00939_limit_by_offset/ast.json b/parser/testdata/00939_limit_by_offset/ast.json deleted file mode 100644 index 068eec55eb..0000000000 --- a/parser/testdata/00939_limit_by_offset/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery limit_by (children 1)" - }, - { - "explain": " Identifier limit_by" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001106542, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00939_test_null_in/ast.json b/parser/testdata/00939_test_null_in/ast.json deleted file mode 100644 index 6c7b59b5d8..0000000000 --- a/parser/testdata/00939_test_null_in/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nullt (children 1)" - }, - { - "explain": " Identifier nullt" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001119702, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00940_max_parts_in_total/ast.json b/parser/testdata/00940_max_parts_in_total/ast.json deleted file mode 100644 index 92d1f3029c..0000000000 --- a/parser/testdata/00940_max_parts_in_total/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery max_parts_in_total (children 1)" - }, - { - "explain": " Identifier max_parts_in_total" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001174174, - "rows_read": 2, - "bytes_read": 88 - } -} diff --git a/parser/testdata/00940_order_by_read_in_order/ast.json b/parser/testdata/00940_order_by_read_in_order/ast.json deleted file mode 100644 index fab15fb03d..0000000000 --- a/parser/testdata/00940_order_by_read_in_order/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery pk_order (children 1)" - }, - { - "explain": " Identifier pk_order" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001392495, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00940_order_by_read_in_order_query_plan/ast.json b/parser/testdata/00940_order_by_read_in_order_query_plan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00940_order_by_read_in_order_query_plan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00941_to_custom_week/ast.json b/parser/testdata/00941_to_custom_week/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00941_to_custom_week/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00942_mv_rename_table/ast.json b/parser/testdata/00942_mv_rename_table/ast.json deleted file mode 100644 index 887ffab55b..0000000000 --- a/parser/testdata/00942_mv_rename_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery src_00942 (children 1)" - }, - { - "explain": " Identifier src_00942" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001348007, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00943_mv_rename_without_inner_table/ast.json b/parser/testdata/00943_mv_rename_without_inner_table/ast.json deleted file mode 100644 index 9ac1f93163..0000000000 --- a/parser/testdata/00943_mv_rename_without_inner_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery src (children 1)" - }, - { - "explain": " Identifier src" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001431417, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00944_minmax_nan/ast.json b/parser/testdata/00944_minmax_nan/ast.json deleted file mode 100644 index 3851ebaff6..0000000000 --- a/parser/testdata/00944_minmax_nan/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001829823, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00944_minmax_null/ast.json b/parser/testdata/00944_minmax_null/ast.json deleted file mode 100644 index 6e9e6fc7e5..0000000000 --- a/parser/testdata/00944_minmax_null/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery min_max_with_nullable_string (children 1)" - }, - { - "explain": " Identifier min_max_with_nullable_string" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001673662, - "rows_read": 2, - "bytes_read": 108 - } -} diff --git a/parser/testdata/00944_ml_test/ast.json b/parser/testdata/00944_ml_test/ast.json deleted file mode 100644 index 0e28441dd7..0000000000 --- a/parser/testdata/00944_ml_test/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults (children 1)" - }, - { - "explain": " Identifier defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001674774, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00945_bloom_filter_index/ast.json b/parser/testdata/00945_bloom_filter_index/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00945_bloom_filter_index/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00945_ml_test/ast.json b/parser/testdata/00945_ml_test/ast.json deleted file mode 100644 index 7e8ef7fd61..0000000000 --- a/parser/testdata/00945_ml_test/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults (children 1)" - }, - { - "explain": " Identifier defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001226265, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00946_ml_test/ast.json b/parser/testdata/00946_ml_test/ast.json deleted file mode 100644 index 859f4b7820..0000000000 --- a/parser/testdata/00946_ml_test/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults (children 1)" - }, - { - "explain": " Identifier defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001431434, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00947_ml_test/ast.json b/parser/testdata/00947_ml_test/ast.json deleted file mode 100644 index 0ae4c9ddc3..0000000000 --- a/parser/testdata/00947_ml_test/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults (children 1)" - }, - { - "explain": " Identifier defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001121271, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/00948_to_valid_utf8/ast.json b/parser/testdata/00948_to_valid_utf8/ast.json deleted file mode 100644 index c4cf6f9490..0000000000 --- a/parser/testdata/00948_to_valid_utf8/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toValidUTF8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001317588, - "rows_read": 12, - "bytes_read": 465 - } -} diff --git a/parser/testdata/00948_values_interpreter_template/ast.json b/parser/testdata/00948_values_interpreter_template/ast.json deleted file mode 100644 index 4a61e369ec..0000000000 --- a/parser/testdata/00948_values_interpreter_template/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery type_names (children 1)" - }, - { - "explain": " Identifier type_names" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001278502, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00949_format/ast.json b/parser/testdata/00949_format/ast.json deleted file mode 100644 index ee7eae3520..0000000000 --- a/parser/testdata/00949_format/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00128735, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00950_bad_alloc_when_truncate_join_storage/ast.json b/parser/testdata/00950_bad_alloc_when_truncate_join_storage/ast.json deleted file mode 100644 index b854fecaa5..0000000000 --- a/parser/testdata/00950_bad_alloc_when_truncate_join_storage/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery join_test (children 1)" - }, - { - "explain": " Identifier join_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00166642, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00950_default_prewhere/ast.json b/parser/testdata/00950_default_prewhere/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00950_default_prewhere/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00950_dict_get/ast.json b/parser/testdata/00950_dict_get/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00950_dict_get/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00950_test_double_delta_codec/ast.json b/parser/testdata/00950_test_double_delta_codec/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00950_test_double_delta_codec/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00950_test_double_delta_codec_types/ast.json b/parser/testdata/00950_test_double_delta_codec_types/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00950_test_double_delta_codec_types/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00950_test_gorilla_codec/ast.json b/parser/testdata/00950_test_gorilla_codec/ast.json deleted file mode 100644 index 793c031084..0000000000 --- a/parser/testdata/00950_test_gorilla_codec/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery codecTest (children 1)" - }, - { - "explain": " Identifier codecTest" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00173849, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00951_ngram_search/ast.json b/parser/testdata/00951_ngram_search/ast.json deleted file mode 100644 index 391a6c6a8f..0000000000 --- a/parser/testdata/00951_ngram_search/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1000" - }, - { - "explain": " Function ngramSearchUTF8 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal ''" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_5" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.002204031, - "rows_read": 20, - "bytes_read": 807 - } -} diff --git a/parser/testdata/00952_insert_into_distributed_with_materialized_column/ast.json b/parser/testdata/00952_insert_into_distributed_with_materialized_column/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00952_insert_into_distributed_with_materialized_column/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00952_part_frozen_info/ast.json b/parser/testdata/00952_part_frozen_info/ast.json deleted file mode 100644 index 3d7b5bf8a7..0000000000 --- a/parser/testdata/00952_part_frozen_info/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery part_info (children 1)" - }, - { - "explain": " Identifier part_info" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001413268, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00953_moving_functions/ast.json b/parser/testdata/00953_moving_functions/ast.json deleted file mode 100644 index f0ef334995..0000000000 --- a/parser/testdata/00953_moving_functions/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery moving_sum_num (children 1)" - }, - { - "explain": " Identifier moving_sum_num" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001865886, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/00954_resample_combinator/ast.json b/parser/testdata/00954_resample_combinator/ast.json deleted file mode 100644 index 49e3ace1c1..0000000000 --- a/parser/testdata/00954_resample_combinator/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayReduce (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'sumResample(1, 7, 1)'" - }, - { - "explain": " Literal Array_[UInt64_10, UInt64_11, UInt64_12, UInt64_13, UInt64_14, UInt64_15, UInt64_16, UInt64_17, UInt64_18, UInt64_19]" - }, - { - "explain": " Literal Array_[UInt64_0, UInt64_1, UInt64_2, UInt64_3, UInt64_4, UInt64_5, UInt64_6, UInt64_7, UInt64_8, UInt64_9]" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001578338, - "rows_read": 9, - "bytes_read": 544 - } -} diff --git a/parser/testdata/00955_test_final_mark/ast.json b/parser/testdata/00955_test_final_mark/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00955_test_final_mark/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00956_join_use_nulls_with_array_column/ast.json b/parser/testdata/00956_join_use_nulls_with_array_column/ast.json deleted file mode 100644 index c782a28e87..0000000000 --- a/parser/testdata/00956_join_use_nulls_with_array_column/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00130326, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00957_coalesce_const_nullable_crash/ast.json b/parser/testdata/00957_coalesce_const_nullable_crash/ast.json deleted file mode 100644 index 1adbd161a7..0000000000 --- a/parser/testdata/00957_coalesce_const_nullable_crash/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function coalesce (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001549765, - "rows_read": 15, - "bytes_read": 591 - } -} diff --git a/parser/testdata/00957_delta_diff_bug/ast.json b/parser/testdata/00957_delta_diff_bug/ast.json deleted file mode 100644 index f0aba1890c..0000000000 --- a/parser/testdata/00957_delta_diff_bug/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001463056, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00957_neighbor/ast.json b/parser/testdata/00957_neighbor/ast.json deleted file mode 100644 index 2e93b5fe27..0000000000 --- a/parser/testdata/00957_neighbor/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001352728, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00960_eval_ml_method_const/ast.json b/parser/testdata/00960_eval_ml_method_const/ast.json deleted file mode 100644 index d94ab251dc..0000000000 --- a/parser/testdata/00960_eval_ml_method_const/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Subquery (alias model) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function stochasticLinearRegressionState (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function evalMLMethod (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier model" - }, - { - "explain": " Function toFloat64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toFloat64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001439231, - "rows_read": 24, - "bytes_read": 977 - } -} diff --git a/parser/testdata/00961_check_table/ast.json b/parser/testdata/00961_check_table/ast.json deleted file mode 100644 index 94b1e5e437..0000000000 --- a/parser/testdata/00961_check_table/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001453106, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00961_checksums_in_system_parts_columns_table/ast.json b/parser/testdata/00961_checksums_in_system_parts_columns_table/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00961_checksums_in_system_parts_columns_table/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00961_visit_param_buffer_underflow/ast.json b/parser/testdata/00961_visit_param_buffer_underflow/ast.json deleted file mode 100644 index eeb73c9c4f..0000000000 --- a/parser/testdata/00961_visit_param_buffer_underflow/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function visitParamExtractRaw (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '\"a\":'" - }, - { - "explain": " Literal 'a'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001290653, - "rows_read": 8, - "bytes_read": 296 - } -} diff --git a/parser/testdata/00962_enumNotExect/ast.json b/parser/testdata/00962_enumNotExect/ast.json deleted file mode 100644 index 4f267e0016..0000000000 --- a/parser/testdata/00962_enumNotExect/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_enum8 (children 1)" - }, - { - "explain": " Identifier t_enum8" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001371926, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00962_visit_param_various/ast.json b/parser/testdata/00962_visit_param_various/ast.json deleted file mode 100644 index 37136384ea..0000000000 --- a/parser/testdata/00962_visit_param_various/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function visitParamExtractUInt (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '\"a\":123'" - }, - { - "explain": " Literal 'a'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001544707, - "rows_read": 8, - "bytes_read": 300 - } -} diff --git a/parser/testdata/00963_achimbab/ast.json b/parser/testdata/00963_achimbab/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00963_achimbab/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00963_startsWith_force_primary_key/ast.json b/parser/testdata/00963_startsWith_force_primary_key/ast.json deleted file mode 100644 index 94339ac4de..0000000000 --- a/parser/testdata/00963_startsWith_force_primary_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_startsWith (children 1)" - }, - { - "explain": " Identifier test_startsWith" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001263212, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/00964_os_thread_priority/ast.json b/parser/testdata/00964_os_thread_priority/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00964_os_thread_priority/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00965_shard_unresolvable_addresses/ast.json b/parser/testdata/00965_shard_unresolvable_addresses/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00965_shard_unresolvable_addresses/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00966_invalid_json_must_not_parse/ast.json b/parser/testdata/00966_invalid_json_must_not_parse/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00966_invalid_json_must_not_parse/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00967_insert_into_distributed_different_types/ast.json b/parser/testdata/00967_insert_into_distributed_different_types/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00967_insert_into_distributed_different_types/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00968_file_engine_in_subquery/ast.json b/parser/testdata/00968_file_engine_in_subquery/ast.json deleted file mode 100644 index 4265a76df3..0000000000 --- a/parser/testdata/00968_file_engine_in_subquery/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tableFile_00968 (children 1)" - }, - { - "explain": " Identifier tableFile_00968" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001267468, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/00968_roundAge/ast.json b/parser/testdata/00968_roundAge/ast.json deleted file mode 100644 index aa25a06623..0000000000 --- a/parser/testdata/00968_roundAge/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function roundAge (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001424376, - "rows_read": 7, - "bytes_read": 261 - } -} diff --git a/parser/testdata/00969_columns_clause/ast.json b/parser/testdata/00969_columns_clause/ast.json deleted file mode 100644 index d823689388..0000000000 --- a/parser/testdata/00969_columns_clause/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ColumnsClauseTest (children 1)" - }, - { - "explain": " Identifier ColumnsClauseTest" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001473366, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/00969_roundDuration/ast.json b/parser/testdata/00969_roundDuration/ast.json deleted file mode 100644 index 53c465b891..0000000000 --- a/parser/testdata/00969_roundDuration/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function roundDuration (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001078251, - "rows_read": 7, - "bytes_read": 266 - } -} diff --git a/parser/testdata/00971_merge_tree_uniform_read_distribution_and_max_rows_to_read/ast.json b/parser/testdata/00971_merge_tree_uniform_read_distribution_and_max_rows_to_read/ast.json deleted file mode 100644 index 6d12edae43..0000000000 --- a/parser/testdata/00971_merge_tree_uniform_read_distribution_and_max_rows_to_read/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery merge_tree (children 1)" - }, - { - "explain": " Identifier merge_tree" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001173544, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00972_desc_table_virtual_columns/ast.json b/parser/testdata/00972_desc_table_virtual_columns/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00972_desc_table_virtual_columns/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00972_geohashesInBox/ast.json b/parser/testdata/00972_geohashesInBox/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00972_geohashesInBox/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00973_create_table_as_table_function/ast.json b/parser/testdata/00973_create_table_as_table_function/ast.json deleted file mode 100644 index f6de2aa2cd..0000000000 --- a/parser/testdata/00973_create_table_as_table_function/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001283414, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00973_uniq_non_associativity/ast.json b/parser/testdata/00973_uniq_non_associativity/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00973_uniq_non_associativity/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00974_adaptive_granularity_secondary_index/ast.json b/parser/testdata/00974_adaptive_granularity_secondary_index/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00974_adaptive_granularity_secondary_index/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00974_bitmapContains_with_primary_key/ast.json b/parser/testdata/00974_bitmapContains_with_primary_key/ast.json deleted file mode 100644 index 0878116375..0000000000 --- a/parser/testdata/00974_bitmapContains_with_primary_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001154634, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00974_distributed_join_on/ast.json b/parser/testdata/00974_distributed_join_on/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00974_distributed_join_on/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00974_final_predicate_push_down/ast.json b/parser/testdata/00974_final_predicate_push_down/ast.json deleted file mode 100644 index 3654882854..0000000000 --- a/parser/testdata/00974_final_predicate_push_down/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_00974 (children 1)" - }, - { - "explain": " Identifier test_00974" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001064839, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/00974_fix_join_on/ast.json b/parser/testdata/00974_fix_join_on/ast.json deleted file mode 100644 index 9e7a99182e..0000000000 --- a/parser/testdata/00974_fix_join_on/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00157429, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/00974_full_outer_join/ast.json b/parser/testdata/00974_full_outer_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00974_full_outer_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00974_low_cardinality_cast/ast.json b/parser/testdata/00974_low_cardinality_cast/ast.json deleted file mode 100644 index c171cf26c2..0000000000 --- a/parser/testdata/00974_low_cardinality_cast/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001198986, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00974_query_profiler/ast.json b/parser/testdata/00974_query_profiler/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00974_query_profiler/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00975_json_hang/ast.json b/parser/testdata/00975_json_hang/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00975_json_hang/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00975_move_partition_merge_tree/ast.json b/parser/testdata/00975_move_partition_merge_tree/ast.json deleted file mode 100644 index 84d101da67..0000000000 --- a/parser/testdata/00975_move_partition_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_move_partition_src (children 1)" - }, - { - "explain": " Identifier test_move_partition_src" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001370317, - "rows_read": 2, - "bytes_read": 98 - } -} diff --git a/parser/testdata/00975_recursive_materialized_view/ast.json b/parser/testdata/00975_recursive_materialized_view/ast.json deleted file mode 100644 index eca9f2d29e..0000000000 --- a/parser/testdata/00975_recursive_materialized_view/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery src (children 1)" - }, - { - "explain": " Identifier src" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001375898, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00975_sample_prewhere_distributed/ast.json b/parser/testdata/00975_sample_prewhere_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00975_sample_prewhere_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00975_values_list/ast.json b/parser/testdata/00975_values_list/ast.json deleted file mode 100644 index fecb76a930..0000000000 --- a/parser/testdata/00975_values_list/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery values_list (children 1)" - }, - { - "explain": " Identifier values_list" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001706747, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00976_max_execution_speed/ast.json b/parser/testdata/00976_max_execution_speed/ast.json deleted file mode 100644 index 4aa00214a4..0000000000 --- a/parser/testdata/00976_max_execution_speed/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001134665, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00976_shard_low_cardinality_achimbab/ast.json b/parser/testdata/00976_shard_low_cardinality_achimbab/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00976_shard_low_cardinality_achimbab/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00976_system_stop_ttl_merges/ast.json b/parser/testdata/00976_system_stop_ttl_merges/ast.json deleted file mode 100644 index 54678810bf..0000000000 --- a/parser/testdata/00976_system_stop_ttl_merges/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ttl (children 1)" - }, - { - "explain": " Identifier ttl" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001154295, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00976_ttl_with_old_parts/ast.json b/parser/testdata/00976_ttl_with_old_parts/ast.json deleted file mode 100644 index d8de1d187b..0000000000 --- a/parser/testdata/00976_ttl_with_old_parts/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ttl (children 1)" - }, - { - "explain": " Identifier ttl" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001146388, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00977_int_div/ast.json b/parser/testdata/00977_int_div/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00977_int_div/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00977_join_use_nulls_denny_crane/ast.json b/parser/testdata/00977_join_use_nulls_denny_crane/ast.json deleted file mode 100644 index c994186ee2..0000000000 --- a/parser/testdata/00977_join_use_nulls_denny_crane/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001436362, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00978_ml_math/ast.json b/parser/testdata/00978_ml_math/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00978_ml_math/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00978_sum_map_bugfix/ast.json b/parser/testdata/00978_sum_map_bugfix/ast.json deleted file mode 100644 index c38853f37c..0000000000 --- a/parser/testdata/00978_sum_map_bugfix/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function arrayReduce (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'sumMap'" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier b" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal Array_[UInt64_100, UInt64_100, UInt64_200] (alias a)" - }, - { - "explain": " Literal Array_[UInt64_10, UInt64_20, UInt64_30] (alias b)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001787539, - "rows_read": 31, - "bytes_read": 1347 - } -} diff --git a/parser/testdata/00978_table_function_values_alias/ast.json b/parser/testdata/00978_table_function_values_alias/ast.json deleted file mode 100644 index c382196ddb..0000000000 --- a/parser/testdata/00978_table_function_values_alias/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier s" - }, - { - "explain": " Identifier z" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function VALUES (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'x UInt64, s String, z ALIAS concat(toString(x), \\': \\', s)'" - }, - { - "explain": " Literal Tuple_(UInt64_1, 'hello')" - }, - { - "explain": " Literal Tuple_(UInt64_2, 'world')" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001281842, - "rows_read": 15, - "bytes_read": 622 - } -} diff --git a/parser/testdata/00979_quantileExcatExclusive_and_Inclusive/ast.json b/parser/testdata/00979_quantileExcatExclusive_and_Inclusive/ast.json deleted file mode 100644 index f91532d58c..0000000000 --- a/parser/testdata/00979_quantileExcatExclusive_and_Inclusive/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery num (children 1)" - }, - { - "explain": " Identifier num" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001574046, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/00979_set_index_not/ast.json b/parser/testdata/00979_set_index_not/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00979_set_index_not/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00979_toFloat_monotonicity/ast.json b/parser/testdata/00979_toFloat_monotonicity/ast.json deleted file mode 100644 index 79504af665..0000000000 --- a/parser/testdata/00979_toFloat_monotonicity/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001251737, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00979_yandex_consistent_hash_fpe/ast.json b/parser/testdata/00979_yandex_consistent_hash_fpe/ast.json deleted file mode 100644 index 0997446629..0000000000 --- a/parser/testdata/00979_yandex_consistent_hash_fpe/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function kostikConsistentHash (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Literal UInt64_40000" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001406129, - "rows_read": 8, - "bytes_read": 307 - } -} diff --git a/parser/testdata/00980_crash_nullable_decimal/ast.json b/parser/testdata/00980_crash_nullable_decimal/ast.json deleted file mode 100644 index ec5ef64de1..0000000000 --- a/parser/testdata/00980_crash_nullable_decimal/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayReduce (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'median'" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal32OrNull (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1'" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001682907, - "rows_read": 13, - "bytes_read": 509 - } -} diff --git a/parser/testdata/00980_full_join_crash_fancyqlx/ast.json b/parser/testdata/00980_full_join_crash_fancyqlx/ast.json deleted file mode 100644 index 53b6847f6b..0000000000 --- a/parser/testdata/00980_full_join_crash_fancyqlx/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_join (children 1)" - }, - { - "explain": " Identifier test_join" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001240839, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/00980_merge_alter_settings/ast.json b/parser/testdata/00980_merge_alter_settings/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00980_merge_alter_settings/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00980_shard_aggregation_state_deserialization/ast.json b/parser/testdata/00980_shard_aggregation_state_deserialization/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00980_shard_aggregation_state_deserialization/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00980_skip_unused_shards_without_sharding_key/ast.json b/parser/testdata/00980_skip_unused_shards_without_sharding_key/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00980_skip_unused_shards_without_sharding_key/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00980_zookeeper_merge_tree_alter_settings/ast.json b/parser/testdata/00980_zookeeper_merge_tree_alter_settings/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00980_zookeeper_merge_tree_alter_settings/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00981_no_virtual_columns/ast.json b/parser/testdata/00981_no_virtual_columns/ast.json deleted file mode 100644 index 3b67065f32..0000000000 --- a/parser/testdata/00981_no_virtual_columns/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery merge_a (children 1)" - }, - { - "explain": " Identifier merge_a" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001077256, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/00981_topK_topKWeighted_long/ast.json b/parser/testdata/00981_topK_topKWeighted_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00981_topK_topKWeighted_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00982_array_enumerate_uniq_ranked/ast.json b/parser/testdata/00982_array_enumerate_uniq_ranked/ast.json deleted file mode 100644 index ed4e05bb14..0000000000 --- a/parser/testdata/00982_array_enumerate_uniq_ranked/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayEnumerateUniqRanked (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function VALUES (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal 'x Array(Array(String))'" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal Array_[Array_['a'], Array_['a'], Array_['b']]" - }, - { - "explain": " Literal Array_[Array_['a'], Array_['a'], Array_['b']]" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001355791, - "rows_read": 20, - "bytes_read": 873 - } -} diff --git a/parser/testdata/00982_low_cardinality_setting_in_mv/ast.json b/parser/testdata/00982_low_cardinality_setting_in_mv/ast.json deleted file mode 100644 index 0312255bdc..0000000000 --- a/parser/testdata/00982_low_cardinality_setting_in_mv/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test1 (children 1)" - }, - { - "explain": " Identifier test1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001391469, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00983_summing_merge_tree_not_an_identifier/ast.json b/parser/testdata/00983_summing_merge_tree_not_an_identifier/ast.json deleted file mode 100644 index 83b90ee0b5..0000000000 --- a/parser/testdata/00983_summing_merge_tree_not_an_identifier/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery xx (children 1)" - }, - { - "explain": " Identifier xx" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000984961, - "rows_read": 2, - "bytes_read": 57 - } -} diff --git a/parser/testdata/00984_materialized_view_to_columns/ast.json b/parser/testdata/00984_materialized_view_to_columns/ast.json deleted file mode 100644 index a7e00e1ac9..0000000000 --- a/parser/testdata/00984_materialized_view_to_columns/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test1 (children 1)" - }, - { - "explain": " Identifier test1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001369257, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00985_merge_stack_overflow/ast.json b/parser/testdata/00985_merge_stack_overflow/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00985_merge_stack_overflow/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00986_materialized_view_stack_overflow/ast.json b/parser/testdata/00986_materialized_view_stack_overflow/ast.json deleted file mode 100644 index d5135ebc84..0000000000 --- a/parser/testdata/00986_materialized_view_stack_overflow/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test1 (children 1)" - }, - { - "explain": " Identifier test1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001288888, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/00987_distributed_stack_overflow/ast.json b/parser/testdata/00987_distributed_stack_overflow/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00987_distributed_stack_overflow/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00988_constraints_replication_zookeeper_long/ast.json b/parser/testdata/00988_constraints_replication_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00988_constraints_replication_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00988_expansion_aliases_limit/ast.json b/parser/testdata/00988_expansion_aliases_limit/ast.json deleted file mode 100644 index 1a32f1a116..0000000000 --- a/parser/testdata/00988_expansion_aliases_limit/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001369603, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00988_parallel_parts_removal/ast.json b/parser/testdata/00988_parallel_parts_removal/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00988_parallel_parts_removal/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00989_parallel_parts_loading/ast.json b/parser/testdata/00989_parallel_parts_loading/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00989_parallel_parts_loading/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00990_function_current_user/ast.json b/parser/testdata/00990_function_current_user/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00990_function_current_user/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00990_hasToken_and_tokenbf/ast.json b/parser/testdata/00990_hasToken_and_tokenbf/ast.json deleted file mode 100644 index fe294734f7..0000000000 --- a/parser/testdata/00990_hasToken_and_tokenbf/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery bloom_filter (children 1)" - }, - { - "explain": " Identifier bloom_filter" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001284224, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/00990_metric_log_table_not_empty/ast.json b/parser/testdata/00990_metric_log_table_not_empty/ast.json deleted file mode 100644 index 3b2f1f6e95..0000000000 --- a/parser/testdata/00990_metric_log_table_not_empty/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sleep (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001023362, - "rows_read": 8, - "bytes_read": 282 - } -} diff --git a/parser/testdata/00990_request_splitting/ast.json b/parser/testdata/00990_request_splitting/ast.json deleted file mode 100644 index 36b278fee6..0000000000 --- a/parser/testdata/00990_request_splitting/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function url (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'http:\/\/127.0.0.1:1337\/? HTTP\/1.1\\r\\nTest: test'" - }, - { - "explain": " Identifier CSV" - }, - { - "explain": " Literal 'column1 String'" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001285023, - "rows_read": 13, - "bytes_read": 527 - } -} diff --git a/parser/testdata/00994_table_function_numbers_mt/ast.json b/parser/testdata/00994_table_function_numbers_mt/ast.json deleted file mode 100644 index 875230069b..0000000000 --- a/parser/testdata/00994_table_function_numbers_mt/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function min (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function max (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers_mt (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10000000" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001188996, - "rows_read": 19, - "bytes_read": 735 - } -} diff --git a/parser/testdata/00995_optimize_read_in_order_with_aggregation/ast.json b/parser/testdata/00995_optimize_read_in_order_with_aggregation/ast.json deleted file mode 100644 index c8bc8aeffc..0000000000 --- a/parser/testdata/00995_optimize_read_in_order_with_aggregation/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001221973, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00995_order_by_with_fill/ast.json b/parser/testdata/00995_order_by_with_fill/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00995_order_by_with_fill/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00996_limit_with_ties/ast.json b/parser/testdata/00996_limit_with_ties/ast.json deleted file mode 100644 index cca59a83e5..0000000000 --- a/parser/testdata/00996_limit_with_ties/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ties (children 1)" - }, - { - "explain": " Identifier ties" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001348825, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/00996_neighbor/ast.json b/parser/testdata/00996_neighbor/ast.json deleted file mode 100644 index b5e2c63eea..0000000000 --- a/parser/testdata/00996_neighbor/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001287693, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00997_extract_all_crash_6627/ast.json b/parser/testdata/00997_extract_all_crash_6627/ast.json deleted file mode 100644 index 914e3aea1f..0000000000 --- a/parser/testdata/00997_extract_all_crash_6627/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function extractAll (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'Mozilla\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/75.0.3770.143 YaBrowser\/19.7.2.455 Yowser\/2.5 Safari\/537.36'" - }, - { - "explain": " Literal '[Y][a-zA-Z]{8}\/[1-9]([1-9]+)?(((.?)([0-9]+)?){0,4})?'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001443644, - "rows_read": 8, - "bytes_read": 475 - } -} diff --git a/parser/testdata/00997_set_index_array/ast.json b/parser/testdata/00997_set_index_array/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00997_set_index_array/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00997_trim/ast.json b/parser/testdata/00997_trim/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/00997_trim/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/00998_constraints_all_tables/ast.json b/parser/testdata/00998_constraints_all_tables/ast.json deleted file mode 100644 index 4100186931..0000000000 --- a/parser/testdata/00998_constraints_all_tables/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery constrained (children 1)" - }, - { - "explain": " Identifier constrained" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001352695, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/00999_full_join_dup_keys_crash/ast.json b/parser/testdata/00999_full_join_dup_keys_crash/ast.json deleted file mode 100644 index cbaa314486..0000000000 --- a/parser/testdata/00999_full_join_dup_keys_crash/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001220261, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00999_join_not_nullable_types/ast.json b/parser/testdata/00999_join_not_nullable_types/ast.json deleted file mode 100644 index a13df4ecb7..0000000000 --- a/parser/testdata/00999_join_not_nullable_types/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001200111, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/00999_join_on_expression/ast.json b/parser/testdata/00999_join_on_expression/ast.json deleted file mode 100644 index e94bad06dc..0000000000 --- a/parser/testdata/00999_join_on_expression/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery X (children 1)" - }, - { - "explain": " Identifier X" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001144492, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00999_nullable_nested_types_4877/ast.json b/parser/testdata/00999_nullable_nested_types_4877/ast.json deleted file mode 100644 index ac3888c283..0000000000 --- a/parser/testdata/00999_nullable_nested_types_4877/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery l (children 1)" - }, - { - "explain": " Identifier l" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001210449, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/00999_settings_no_extra_quotes/ast.json b/parser/testdata/00999_settings_no_extra_quotes/ast.json deleted file mode 100644 index a9a8929238..0000000000 --- a/parser/testdata/00999_settings_no_extra_quotes/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function like (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier description" - }, - { - "explain": " Literal '\"%\"'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.settings" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001238797, - "rows_read": 12, - "bytes_read": 470 - } -} diff --git a/parser/testdata/00999_test_skip_indices_with_alter_and_merge/ast.json b/parser/testdata/00999_test_skip_indices_with_alter_and_merge/ast.json deleted file mode 100644 index 032cb0f093..0000000000 --- a/parser/testdata/00999_test_skip_indices_with_alter_and_merge/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_vertical_merge (children 1)" - }, - { - "explain": " Identifier test_vertical_merge" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001619283, - "rows_read": 2, - "bytes_read": 90 - } -} diff --git a/parser/testdata/01000_bad_size_of_marks_skip_idx/ast.json b/parser/testdata/01000_bad_size_of_marks_skip_idx/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01000_bad_size_of_marks_skip_idx/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01000_subquery_requires_alias/ast.json b/parser/testdata/01000_subquery_requires_alias/ast.json deleted file mode 100644 index 04ddf9b768..0000000000 --- a/parser/testdata/01000_subquery_requires_alias/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001351679, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01001_enums_in_in_section/ast.json b/parser/testdata/01001_enums_in_in_section/ast.json deleted file mode 100644 index 6c90c2ddd3..0000000000 --- a/parser/testdata/01001_enums_in_in_section/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery enums (children 1)" - }, - { - "explain": " Identifier enums" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001674102, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01006_ttl_with_default_2/ast.json b/parser/testdata/01006_ttl_with_default_2/ast.json deleted file mode 100644 index 673df1019b..0000000000 --- a/parser/testdata/01006_ttl_with_default_2/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ttl_with_default (children 1)" - }, - { - "explain": " Identifier ttl_with_default" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001244135, - "rows_read": 2, - "bytes_read": 84 - } -} diff --git a/parser/testdata/01008_materialized_view_henyihanwobushi/ast.json b/parser/testdata/01008_materialized_view_henyihanwobushi/ast.json deleted file mode 100644 index 70f9b28df5..0000000000 --- a/parser/testdata/01008_materialized_view_henyihanwobushi/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery foo (children 1)" - }, - { - "explain": " Identifier foo" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.0014109, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01009_global_array_join_names/ast.json b/parser/testdata/01009_global_array_join_names/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01009_global_array_join_names/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01009_insert_select_data_loss/ast.json b/parser/testdata/01009_insert_select_data_loss/ast.json deleted file mode 100644 index beb1eafff6..0000000000 --- a/parser/testdata/01009_insert_select_data_loss/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab (children 1)" - }, - { - "explain": " Identifier tab" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001002066, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01009_insert_select_nicelulu/ast.json b/parser/testdata/01009_insert_select_nicelulu/ast.json deleted file mode 100644 index c636680069..0000000000 --- a/parser/testdata/01009_insert_select_nicelulu/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_insert_t1 (children 1)" - }, - { - "explain": " Identifier test_insert_t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001343014, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01010_partial_merge_join/ast.json b/parser/testdata/01010_partial_merge_join/ast.json deleted file mode 100644 index 67b57af0d1..0000000000 --- a/parser/testdata/01010_partial_merge_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t0 (children 1)" - }, - { - "explain": " Identifier t0" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001311402, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01010_partial_merge_join_const_and_lc/ast.json b/parser/testdata/01010_partial_merge_join_const_and_lc/ast.json deleted file mode 100644 index 77b85e35ec..0000000000 --- a/parser/testdata/01010_partial_merge_join_const_and_lc/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001530699, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01010_partial_merge_join_negative/ast.json b/parser/testdata/01010_partial_merge_join_negative/ast.json deleted file mode 100644 index f35dfd698f..0000000000 --- a/parser/testdata/01010_partial_merge_join_negative/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t0 (children 1)" - }, - { - "explain": " Identifier t0" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000951379, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01010_pm_join_all_join_bug/ast.json b/parser/testdata/01010_pm_join_all_join_bug/ast.json deleted file mode 100644 index 0ce62e5bc1..0000000000 --- a/parser/testdata/01010_pm_join_all_join_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ints (children 1)" - }, - { - "explain": " Identifier ints" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001341239, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01010_pmj_on_disk/ast.json b/parser/testdata/01010_pmj_on_disk/ast.json deleted file mode 100644 index ec5b6ff694..0000000000 --- a/parser/testdata/01010_pmj_on_disk/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001533257, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01010_pmj_one_row_blocks/ast.json b/parser/testdata/01010_pmj_one_row_blocks/ast.json deleted file mode 100644 index c33cbf7c33..0000000000 --- a/parser/testdata/01010_pmj_one_row_blocks/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t0 (children 1)" - }, - { - "explain": " Identifier t0" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001214267, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01010_pmj_right_table_memory_limits/ast.json b/parser/testdata/01010_pmj_right_table_memory_limits/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01010_pmj_right_table_memory_limits/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01010_pmj_skip_blocks/ast.json b/parser/testdata/01010_pmj_skip_blocks/ast.json deleted file mode 100644 index 8ea35fa87d..0000000000 --- a/parser/testdata/01010_pmj_skip_blocks/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t0 (children 1)" - }, - { - "explain": " Identifier t0" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001181707, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01011_group_uniq_array_memsan/ast.json b/parser/testdata/01011_group_uniq_array_memsan/ast.json deleted file mode 100644 index 1e9a1967e3..0000000000 --- a/parser/testdata/01011_group_uniq_array_memsan/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupUniqArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier v" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function values (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'id int, v Array(int)'" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Array_[UInt64_2]" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier id" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001360763, - "rows_read": 24, - "bytes_read": 953 - } -} diff --git a/parser/testdata/01011_test_create_as_skip_indices/ast.json b/parser/testdata/01011_test_create_as_skip_indices/ast.json deleted file mode 100644 index b930667ec9..0000000000 --- a/parser/testdata/01011_test_create_as_skip_indices/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery foo (children 3)" - }, - { - "explain": " Identifier foo" - }, - { - "explain": " Columns definition (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration key (children 1)" - }, - { - "explain": " DataType int" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Index (children 2)" - }, - { - "explain": " Identifier key" - }, - { - "explain": " Function minmax (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Storage definition (children 2)" - }, - { - "explain": " Function MergeTree (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Identifier key" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001444356, - "rows_read": 15, - "bytes_read": 494 - } -} diff --git a/parser/testdata/01012_reset_running_accumulate/ast.json b/parser/testdata/01012_reset_running_accumulate/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01012_reset_running_accumulate/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01012_select_limit_x_0/ast.json b/parser/testdata/01012_select_limit_x_0/ast.json deleted file mode 100644 index bc29def836..0000000000 --- a/parser/testdata/01012_select_limit_x_0/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001283773, - "rows_read": 12, - "bytes_read": 448 - } -} diff --git a/parser/testdata/01012_serialize_array_memory_usage/ast.json b/parser/testdata/01012_serialize_array_memory_usage/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01012_serialize_array_memory_usage/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01012_show_tables_limit/ast.json b/parser/testdata/01012_show_tables_limit/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01012_show_tables_limit/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01013_hex_decimal/ast.json b/parser/testdata/01013_hex_decimal/ast.json deleted file mode 100644 index c22067062b..0000000000 --- a/parser/testdata/01013_hex_decimal/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function hex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_1" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.0014093, - "rows_read": 10, - "bytes_read": 380 - } -} diff --git a/parser/testdata/01013_hex_float/ast.json b/parser/testdata/01013_hex_float/ast.json deleted file mode 100644 index ce432675a2..0000000000 --- a/parser/testdata/01013_hex_float/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function hex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_1" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001317225, - "rows_read": 7, - "bytes_read": 257 - } -} diff --git a/parser/testdata/01013_repeat_function/ast.json b/parser/testdata/01013_repeat_function/ast.json deleted file mode 100644 index 01b074c9bf..0000000000 --- a/parser/testdata/01013_repeat_function/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function repeat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'abc'" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001227627, - "rows_read": 8, - "bytes_read": 287 - } -} diff --git a/parser/testdata/01013_totals_without_aggregation/ast.json b/parser/testdata/01013_totals_without_aggregation/ast.json deleted file mode 100644 index 9fcea61bbd..0000000000 --- a/parser/testdata/01013_totals_without_aggregation/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001263355, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01014_count_of_merges_metrics/ast.json b/parser/testdata/01014_count_of_merges_metrics/ast.json deleted file mode 100644 index 6163da2530..0000000000 --- a/parser/testdata/01014_count_of_merges_metrics/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery new_table_test (children 1)" - }, - { - "explain": " Identifier new_table_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001403574, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01014_function_repeat_corner_cases/ast.json b/parser/testdata/01014_function_repeat_corner_cases/ast.json deleted file mode 100644 index d6bb46969c..0000000000 --- a/parser/testdata/01014_function_repeat_corner_cases/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function length (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function repeat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'x'" - }, - { - "explain": " Literal UInt64_1000000" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001200025, - "rows_read": 10, - "bytes_read": 378 - } -} diff --git a/parser/testdata/01015_array_split/ast.json b/parser/testdata/01015_array_split/ast.json deleted file mode 100644 index 550a13142f..0000000000 --- a/parser/testdata/01015_array_split/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arraySplit (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3, UInt64_4, UInt64_5]" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_0, UInt64_0, UInt64_1, UInt64_0]" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001640658, - "rows_read": 15, - "bytes_read": 648 - } -} diff --git a/parser/testdata/01015_attach_part/ast.json b/parser/testdata/01015_attach_part/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01015_attach_part/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01015_random_constant/ast.json b/parser/testdata/01015_random_constant/ast.json deleted file mode 100644 index dada07caea..0000000000 --- a/parser/testdata/01015_random_constant/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greaterOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function randConstant (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001027564, - "rows_read": 9, - "bytes_read": 345 - } -} diff --git a/parser/testdata/01016_index_tuple_field_type/ast.json b/parser/testdata/01016_index_tuple_field_type/ast.json deleted file mode 100644 index 3493dcdd8b..0000000000 --- a/parser/testdata/01016_index_tuple_field_type/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tuple_01016 (children 1)" - }, - { - "explain": " Identifier tuple_01016" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001129149, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01016_macros/ast.json b/parser/testdata/01016_macros/ast.json deleted file mode 100644 index 9f6a5d2888..0000000000 --- a/parser/testdata/01016_macros/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.macros" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier macro" - }, - { - "explain": " Literal 'test'" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001331825, - "rows_read": 13, - "bytes_read": 481 - } -} diff --git a/parser/testdata/01016_null_part_minmax/ast.json b/parser/testdata/01016_null_part_minmax/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01016_null_part_minmax/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01016_simhash_minhash/ast.json b/parser/testdata/01016_simhash_minhash/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01016_simhash_minhash/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01016_simhash_minhash_ppc/ast.json b/parser/testdata/01016_simhash_minhash_ppc/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01016_simhash_minhash_ppc/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01016_uniqCombined64/ast.json b/parser/testdata/01016_uniqCombined64/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01016_uniqCombined64/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01017_bithamming_distance/ast.json b/parser/testdata/01017_bithamming_distance/ast.json deleted file mode 100644 index e8506b8447..0000000000 --- a/parser/testdata/01017_bithamming_distance/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bitHammingDistance (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_5" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001397929, - "rows_read": 8, - "bytes_read": 301 - } -} diff --git a/parser/testdata/01017_in_unconvertible_complex_type/ast.json b/parser/testdata/01017_in_unconvertible_complex_type/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01017_in_unconvertible_complex_type/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01017_tuplehamming_distance/ast.json b/parser/testdata/01017_tuplehamming_distance/ast.json deleted file mode 100644 index 4bdfcf58c7..0000000000 --- a/parser/testdata/01017_tuplehamming_distance/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tupleHammingDistance (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_2)" - }, - { - "explain": " Literal Tuple_(UInt64_3, UInt64_4)" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001222795, - "rows_read": 8, - "bytes_read": 339 - } -} diff --git a/parser/testdata/01017_uniqCombined_memory_usage/ast.json b/parser/testdata/01017_uniqCombined_memory_usage/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01017_uniqCombined_memory_usage/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01018_Distributed__shard_num/ast.json b/parser/testdata/01018_Distributed__shard_num/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01018_Distributed__shard_num/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01018_ambiguous_column/ast.json b/parser/testdata/01018_ambiguous_column/ast.json deleted file mode 100644 index b6400f1203..0000000000 --- a/parser/testdata/01018_ambiguous_column/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001235141, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01018_ddl_dictionaries_create/ast.json b/parser/testdata/01018_ddl_dictionaries_create/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01018_ddl_dictionaries_create/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01018_ddl_dictionaries_select/ast.json b/parser/testdata/01018_ddl_dictionaries_select/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01018_ddl_dictionaries_select/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01018_ddl_dictionaries_special/ast.json b/parser/testdata/01018_ddl_dictionaries_special/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01018_ddl_dictionaries_special/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01018_dictionaries_from_dictionaries/ast.json b/parser/testdata/01018_dictionaries_from_dictionaries/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01018_dictionaries_from_dictionaries/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01018_empty_aggregation_filling/ast.json b/parser/testdata/01018_empty_aggregation_filling/ast.json deleted file mode 100644 index a33842bc16..0000000000 --- a/parser/testdata/01018_empty_aggregation_filling/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '--- Int Empty ---'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.000984544, - "rows_read": 5, - "bytes_read": 188 - } -} diff --git a/parser/testdata/01018_ip_dictionary_long/ast.json b/parser/testdata/01018_ip_dictionary_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01018_ip_dictionary_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01018_optimize_read_in_order_with_in_subquery/ast.json b/parser/testdata/01018_optimize_read_in_order_with_in_subquery/ast.json deleted file mode 100644 index bac7db7f05..0000000000 --- a/parser/testdata/01018_optimize_read_in_order_with_in_subquery/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001192185, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01019_Buffer_and_max_memory_usage/ast.json b/parser/testdata/01019_Buffer_and_max_memory_usage/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01019_Buffer_and_max_memory_usage/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01019_alter_materialized_view_query/ast.json b/parser/testdata/01019_alter_materialized_view_query/ast.json deleted file mode 100644 index c948e4deed..0000000000 --- a/parser/testdata/01019_alter_materialized_view_query/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery src_01019 (children 1)" - }, - { - "explain": " Identifier src_01019" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001274352, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01019_array_fill/ast.json b/parser/testdata/01019_array_fill/ast.json deleted file mode 100644 index 4b9b8736ff..0000000000 --- a/parser/testdata/01019_array_fill/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayFill (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3, UInt64_11, UInt64_12, UInt64_13, UInt64_4, UInt64_5, UInt64_6, UInt64_14, UInt64_15, UInt64_16]" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001294748, - "rows_read": 13, - "bytes_read": 619 - } -} diff --git a/parser/testdata/01019_materialized_view_select_extra_columns/ast.json b/parser/testdata/01019_materialized_view_select_extra_columns/ast.json deleted file mode 100644 index a12b1c9081..0000000000 --- a/parser/testdata/01019_materialized_view_select_extra_columns/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00120106, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01020_function_array_compact/ast.json b/parser/testdata/01020_function_array_compact/ast.json deleted file mode 100644 index 82eca00d36..0000000000 --- a/parser/testdata/01020_function_array_compact/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayCompact (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_0]" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001242579, - "rows_read": 7, - "bytes_read": 273 - } -} diff --git a/parser/testdata/01020_function_char/ast.json b/parser/testdata/01020_function_char/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01020_function_char/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01020_having_without_group_by/ast.json b/parser/testdata/01020_having_without_group_by/ast.json deleted file mode 100644 index b11ad05350..0000000000 --- a/parser/testdata/01020_having_without_group_by/ast.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 6, - - "statistics": - { - "elapsed": 0.001123234, - "rows_read": 6, - "bytes_read": 204 - } -} diff --git a/parser/testdata/01021_create_as_select/ast.json b/parser/testdata/01021_create_as_select/ast.json deleted file mode 100644 index 1de79fdfe8..0000000000 --- a/parser/testdata/01021_create_as_select/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery create_as_select_01021 (children 1)" - }, - { - "explain": " Identifier create_as_select_01021" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00111532, - "rows_read": 2, - "bytes_read": 96 - } -} diff --git a/parser/testdata/01021_only_tuple_columns/ast.json b/parser/testdata/01021_only_tuple_columns/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01021_only_tuple_columns/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01021_tuple_parser/ast.json b/parser/testdata/01021_tuple_parser/ast.json deleted file mode 100644 index 7eb134ec34..0000000000 --- a/parser/testdata/01021_tuple_parser/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001352784, - "rows_read": 12, - "bytes_read": 457 - } -} diff --git a/parser/testdata/01023_materialized_view_query_context/ast.json b/parser/testdata/01023_materialized_view_query_context/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01023_materialized_view_query_context/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01024__getScalar/ast.json b/parser/testdata/01024__getScalar/ast.json deleted file mode 100644 index 27bf308f94..0000000000 --- a/parser/testdata/01024__getScalar/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery foo (children 3)" - }, - { - "explain": " Identifier foo" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " ColumnDeclaration key (children 1)" - }, - { - "explain": " DataType String" - }, - { - "explain": " ColumnDeclaration macro (children 2)" - }, - { - "explain": " DataType String" - }, - { - "explain": " Function __getScalar (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier key" - }, - { - "explain": " Storage definition (children 1)" - }, - { - "explain": " Function Null (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001371443, - "rows_read": 14, - "bytes_read": 496 - } -} diff --git a/parser/testdata/01025_array_compact_generic/ast.json b/parser/testdata/01025_array_compact_generic/ast.json deleted file mode 100644 index 653f24dd91..0000000000 --- a/parser/testdata/01025_array_compact_generic/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayCompact (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001136261, - "rows_read": 8, - "bytes_read": 305 - } -} diff --git a/parser/testdata/01026_char_utf8/ast.json b/parser/testdata/01026_char_utf8/ast.json deleted file mode 100644 index 162dc2d8c8..0000000000 --- a/parser/testdata/01026_char_utf8/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function char (alias hello) (children 1)" - }, - { - "explain": " ExpressionList (children 12)" - }, - { - "explain": " Literal UInt64_208" - }, - { - "explain": " Literal UInt64_191" - }, - { - "explain": " Literal UInt64_209" - }, - { - "explain": " Literal UInt64_128" - }, - { - "explain": " Literal UInt64_208" - }, - { - "explain": " Literal UInt64_184" - }, - { - "explain": " Literal UInt64_208" - }, - { - "explain": " Literal UInt64_178" - }, - { - "explain": " Literal UInt64_208" - }, - { - "explain": " Literal UInt64_181" - }, - { - "explain": " Literal UInt64_209" - }, - { - "explain": " Literal UInt64_130" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.00132463, - "rows_read": 18, - "bytes_read": 626 - } -} diff --git a/parser/testdata/01029_early_constant_folding/ast.json b/parser/testdata/01029_early_constant_folding/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01029_early_constant_folding/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01030_concatenate_equal_fixed_strings/ast.json b/parser/testdata/01030_concatenate_equal_fixed_strings/ast.json deleted file mode 100644 index e9a9ffbf80..0000000000 --- a/parser/testdata/01030_concatenate_equal_fixed_strings/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toFixedString (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'aa'" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier a" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001298273, - "rows_read": 12, - "bytes_read": 434 - } -} diff --git a/parser/testdata/01030_final_mark_empty_primary_key/ast.json b/parser/testdata/01030_final_mark_empty_primary_key/ast.json deleted file mode 100644 index 90511b665a..0000000000 --- a/parser/testdata/01030_final_mark_empty_primary_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery empty_pk (children 1)" - }, - { - "explain": " Identifier empty_pk" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001294183, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01030_incorrect_count_summing_merge_tree/ast.json b/parser/testdata/01030_incorrect_count_summing_merge_tree/ast.json deleted file mode 100644 index c13434e30a..0000000000 --- a/parser/testdata/01030_incorrect_count_summing_merge_tree/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001154377, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01030_storage_set_supports_read/ast.json b/parser/testdata/01030_storage_set_supports_read/ast.json deleted file mode 100644 index dbe3a54026..0000000000 --- a/parser/testdata/01030_storage_set_supports_read/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery userid_test (children 1)" - }, - { - "explain": " Identifier userid_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001131213, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01030_storage_url_syntax/ast.json b/parser/testdata/01030_storage_url_syntax/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01030_storage_url_syntax/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01031_pmj_new_any_semi_join/ast.json b/parser/testdata/01031_pmj_new_any_semi_join/ast.json deleted file mode 100644 index 9ac998b63c..0000000000 --- a/parser/testdata/01031_pmj_new_any_semi_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001071447, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01031_semi_anti_join/ast.json b/parser/testdata/01031_semi_anti_join/ast.json deleted file mode 100644 index f32a09962a..0000000000 --- a/parser/testdata/01031_semi_anti_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001150861, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01032_cityHash64_for_UUID/ast.json b/parser/testdata/01032_cityHash64_for_UUID/ast.json deleted file mode 100644 index f400bf41cd..0000000000 --- a/parser/testdata/01032_cityHash64_for_UUID/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function cityHash64 (alias uuid) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUUID (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '61f0c404-5cb3-11e7-907b-a6006ad3dba0'" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001286582, - "rows_read": 9, - "bytes_read": 392 - } -} diff --git a/parser/testdata/01032_cityHash64_for_decimal/ast.json b/parser/testdata/01032_cityHash64_for_decimal/ast.json deleted file mode 100644 index b55ddd3cab..0000000000 --- a/parser/testdata/01032_cityHash64_for_decimal/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function cityHash64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_32" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001320439, - "rows_read": 10, - "bytes_read": 387 - } -} diff --git a/parser/testdata/01032_duplicate_column_insert_query/ast.json b/parser/testdata/01032_duplicate_column_insert_query/ast.json deleted file mode 100644 index a74bce8d92..0000000000 --- a/parser/testdata/01032_duplicate_column_insert_query/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery sometable (children 1)" - }, - { - "explain": " Identifier sometable" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001442756, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01033_dictionaries_lifetime/ast.json b/parser/testdata/01033_dictionaries_lifetime/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01033_dictionaries_lifetime/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01033_function_substring/ast.json b/parser/testdata/01033_function_substring/ast.json deleted file mode 100644 index 207280fdf2..0000000000 --- a/parser/testdata/01033_function_substring/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '-- argument validation'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001049255, - "rows_read": 5, - "bytes_read": 193 - } -} diff --git a/parser/testdata/01033_quota_dcl/ast.json b/parser/testdata/01033_quota_dcl/ast.json deleted file mode 100644 index a96b4280cc..0000000000 --- a/parser/testdata/01033_quota_dcl/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SHOW CREATE QUOTA query" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001195458, - "rows_read": 1, - "bytes_read": 31 - } -} diff --git a/parser/testdata/01033_storage_odbc_parsing_exception_check/ast.json b/parser/testdata/01033_storage_odbc_parsing_exception_check/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01033_storage_odbc_parsing_exception_check/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01034_JSONCompactEachRow/ast.json b/parser/testdata/01034_JSONCompactEachRow/ast.json deleted file mode 100644 index 886ff51615..0000000000 --- a/parser/testdata/01034_JSONCompactEachRow/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_table (children 1)" - }, - { - "explain": " Identifier test_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001373616, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01034_order_by_pk_prefix/ast.json b/parser/testdata/01034_order_by_pk_prefix/ast.json deleted file mode 100644 index 1d07d8f020..0000000000 --- a/parser/testdata/01034_order_by_pk_prefix/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_table (children 1)" - }, - { - "explain": " Identifier test_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001590569, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01034_prewhere_max_parallel_replicas_distributed/ast.json b/parser/testdata/01034_prewhere_max_parallel_replicas_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01034_prewhere_max_parallel_replicas_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01034_sample_final_distributed/ast.json b/parser/testdata/01034_sample_final_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01034_sample_final_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01034_unknown_qualified_column_in_join/ast.json b/parser/testdata/01034_unknown_qualified_column_in_join/ast.json deleted file mode 100644 index 39fddd1696..0000000000 --- a/parser/testdata/01034_unknown_qualified_column_in_join/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier l.c" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias l) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias a)" - }, - { - "explain": " Literal UInt64_2 (alias b)" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias r) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2 (alias b)" - }, - { - "explain": " Literal UInt64_3 (alias c)" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier b" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.00127979, - "rows_read": 27, - "bytes_read": 1129 - } -} diff --git a/parser/testdata/01034_with_fill_and_push_down_predicate/ast.json b/parser/testdata/01034_with_fill_and_push_down_predicate/ast.json deleted file mode 100644 index 81626284fe..0000000000 --- a/parser/testdata/01034_with_fill_and_push_down_predicate/ast.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier date_time" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDateTime (alias date_time) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2019-11-14 22:15:00'" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDateTime (alias date_time) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2019-11-15 01:15:00'" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 2)" - }, - { - "explain": " Identifier date_time" - }, - { - "explain": " Literal UInt64_900" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier date_time" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2019-11-15 00:15:00'" - } - ], - - "rows": 40, - - "statistics": - { - "elapsed": 0.00193061, - "rows_read": 40, - "bytes_read": 1840 - } -} diff --git a/parser/testdata/01035_avg/ast.json b/parser/testdata/01035_avg/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01035_avg/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01035_prewhere_with_alias/ast.json b/parser/testdata/01035_prewhere_with_alias/ast.json deleted file mode 100644 index 5326ff0625..0000000000 --- a/parser/testdata/01035_prewhere_with_alias/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001164721, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01036_no_superfluous_dict_reload_on_create_database/ast.json b/parser/testdata/01036_no_superfluous_dict_reload_on_create_database/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01036_no_superfluous_dict_reload_on_create_database/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01036_no_superfluous_dict_reload_on_create_database_2/ast.json b/parser/testdata/01036_no_superfluous_dict_reload_on_create_database_2/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01036_no_superfluous_dict_reload_on_create_database_2/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01036_union_different_columns/ast.json b/parser/testdata/01036_union_different_columns/ast.json deleted file mode 100644 index ab27b5cad8..0000000000 --- a/parser/testdata/01036_union_different_columns/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_1 (alias c1)" - }, - { - "explain": " Literal UInt64_2 (alias c2)" - }, - { - "explain": " Literal UInt64_3 (alias c3)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_1 (alias c1)" - }, - { - "explain": " Literal UInt64_2 (alias c2)" - }, - { - "explain": " Literal UInt64_3 (alias c3)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias c1)" - }, - { - "explain": " Literal UInt64_2 (alias c2)" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001415647, - "rows_read": 16, - "bytes_read": 605 - } -} diff --git a/parser/testdata/01037_zookeeper_check_table_empty_pk/ast.json b/parser/testdata/01037_zookeeper_check_table_empty_pk/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01037_zookeeper_check_table_empty_pk/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01038_array_of_unnamed_tuples/ast.json b/parser/testdata/01038_array_of_unnamed_tuples/ast.json deleted file mode 100644 index 806ef0e4cc..0000000000 --- a/parser/testdata/01038_array_of_unnamed_tuples/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001243254, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01039_mergetree_exec_time/ast.json b/parser/testdata/01039_mergetree_exec_time/ast.json deleted file mode 100644 index 049f85f89a..0000000000 --- a/parser/testdata/01039_mergetree_exec_time/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab (children 1)" - }, - { - "explain": " Identifier tab" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001063114, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01039_test_setting_parse/ast.json b/parser/testdata/01039_test_setting_parse/ast.json deleted file mode 100644 index 38133a5696..0000000000 --- a/parser/testdata/01039_test_setting_parse/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001232389, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01040_distributed_background_insert_batch_inserts/ast.json b/parser/testdata/01040_distributed_background_insert_batch_inserts/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01040_distributed_background_insert_batch_inserts/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01040_h3_get_resolution/ast.json b/parser/testdata/01040_h3_get_resolution/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01040_h3_get_resolution/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01041_create_dictionary_if_not_exists/ast.json b/parser/testdata/01041_create_dictionary_if_not_exists/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01041_create_dictionary_if_not_exists/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01041_h3_is_valid/ast.json b/parser/testdata/01041_h3_is_valid/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01041_h3_is_valid/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01042_check_query_and_last_granule_size/ast.json b/parser/testdata/01042_check_query_and_last_granule_size/ast.json deleted file mode 100644 index 1b197f55be..0000000000 --- a/parser/testdata/01042_check_query_and_last_granule_size/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001366818, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01042_h3_k_ring/ast.json b/parser/testdata/01042_h3_k_ring/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01042_h3_k_ring/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01043_categorical_iv/ast.json b/parser/testdata/01043_categorical_iv/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01043_categorical_iv/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01043_dictionary_attribute_properties_values/ast.json b/parser/testdata/01043_dictionary_attribute_properties_values/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01043_dictionary_attribute_properties_values/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01043_geo_distance/ast.json b/parser/testdata/01043_geo_distance/ast.json deleted file mode 100644 index 5e0ee268a4..0000000000 --- a/parser/testdata/01043_geo_distance/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.000877728, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01043_h3_edge_length_m/ast.json b/parser/testdata/01043_h3_edge_length_m/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01043_h3_edge_length_m/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01044_great_circle_angle/ast.json b/parser/testdata/01044_great_circle_angle/ast.json deleted file mode 100644 index 796091dea2..0000000000 --- a/parser/testdata/01044_great_circle_angle/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function minus (alias lat) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_90" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function greatCircleAngle (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Identifier lat" - }, - { - "explain": " Function abs (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier lat" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_180" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.001104242, - "rows_read": 26, - "bytes_read": 1005 - } -} diff --git a/parser/testdata/01044_h3_edge_angle/ast.json b/parser/testdata/01044_h3_edge_angle/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01044_h3_edge_angle/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01045_array_zip/ast.json b/parser/testdata/01045_array_zip/ast.json deleted file mode 100644 index d3eb266c82..0000000000 --- a/parser/testdata/01045_array_zip/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayZip (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_['a', 'b', 'c']" - }, - { - "explain": " Literal Array_['d', 'e', 'f']" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001118462, - "rows_read": 8, - "bytes_read": 317 - } -} diff --git a/parser/testdata/01045_bloom_filter_null_array/ast.json b/parser/testdata/01045_bloom_filter_null_array/ast.json deleted file mode 100644 index 8071c5e36c..0000000000 --- a/parser/testdata/01045_bloom_filter_null_array/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery bloom_filter_null_array (children 1)" - }, - { - "explain": " Identifier bloom_filter_null_array" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001310062, - "rows_read": 2, - "bytes_read": 98 - } -} diff --git a/parser/testdata/01045_dictionaries_restrictions/ast.json b/parser/testdata/01045_dictionaries_restrictions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01045_dictionaries_restrictions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01046_materialized_view_with_join_over_distributed/ast.json b/parser/testdata/01046_materialized_view_with_join_over_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01046_materialized_view_with_join_over_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01046_trivial_count_query_distributed/ast.json b/parser/testdata/01046_trivial_count_query_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01046_trivial_count_query_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01047_no_alias_columns_with_table_aliases/ast.json b/parser/testdata/01047_no_alias_columns_with_table_aliases/ast.json deleted file mode 100644 index 32afb70253..0000000000 --- a/parser/testdata/01047_no_alias_columns_with_table_aliases/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery requests (children 1)" - }, - { - "explain": " Identifier requests" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001040094, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01047_nullable_rand/ast.json b/parser/testdata/01047_nullable_rand/ast.json deleted file mode 100644 index 21b072c5e5..0000000000 --- a/parser/testdata/01047_nullable_rand/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function rand (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Literal 'Nullable(UInt8)'" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001103867, - "rows_read": 12, - "bytes_read": 478 - } -} diff --git a/parser/testdata/01047_simple_aggregate_sizes_of_columns_bug/ast.json b/parser/testdata/01047_simple_aggregate_sizes_of_columns_bug/ast.json deleted file mode 100644 index 9ac95ef168..0000000000 --- a/parser/testdata/01047_simple_aggregate_sizes_of_columns_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery column_size_bug (children 1)" - }, - { - "explain": " Identifier column_size_bug" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00112351, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/01048_exists_query/ast.json b/parser/testdata/01048_exists_query/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01048_exists_query/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01049_join_low_card_crash/ast.json b/parser/testdata/01049_join_low_card_crash/ast.json deleted file mode 100644 index 1e34ab6beb..0000000000 --- a/parser/testdata/01049_join_low_card_crash/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery Alpha (children 1)" - }, - { - "explain": " Identifier Alpha" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001230767, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01049_window_view_window_functions/ast.json b/parser/testdata/01049_window_view_window_functions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01049_window_view_window_functions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01049_zookeeper_synchronous_mutations_long/ast.json b/parser/testdata/01049_zookeeper_synchronous_mutations_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01049_zookeeper_synchronous_mutations_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01050_clickhouse_dict_source_with_subquery/ast.json b/parser/testdata/01050_clickhouse_dict_source_with_subquery/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01050_clickhouse_dict_source_with_subquery/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01050_engine_join_crash/ast.json b/parser/testdata/01050_engine_join_crash/ast.json deleted file mode 100644 index ae3bda2de9..0000000000 --- a/parser/testdata/01050_engine_join_crash/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery testJoinTable (children 1)" - }, - { - "explain": " Identifier testJoinTable" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001084096, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01050_engine_join_view_crash/ast.json b/parser/testdata/01050_engine_join_view_crash/ast.json deleted file mode 100644 index 591bd84eee..0000000000 --- a/parser/testdata/01050_engine_join_view_crash/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery a (children 1)" - }, - { - "explain": " Identifier a" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001083945, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01050_group_array_sample/ast.json b/parser/testdata/01050_group_array_sample/ast.json deleted file mode 100644 index b2f1415cd2..0000000000 --- a/parser/testdata/01050_group_array_sample/ast.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Function groupArraySample (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier v" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Literal UInt64_123456" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (alias k) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Identifier number (alias v)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1024" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - } - ], - - "rows": 35, - - "statistics": - { - "elapsed": 0.001173794, - "rows_read": 35, - "bytes_read": 1428 - } -} diff --git a/parser/testdata/01051_aggregate_function_crash/ast.json b/parser/testdata/01051_aggregate_function_crash/ast.json deleted file mode 100644 index abfa47de00..0000000000 --- a/parser/testdata/01051_aggregate_function_crash/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.000951119, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01051_all_join_engine/ast.json b/parser/testdata/01051_all_join_engine/ast.json deleted file mode 100644 index 73eab34e36..0000000000 --- a/parser/testdata/01051_all_join_engine/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000936644, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01051_new_any_join_engine/ast.json b/parser/testdata/01051_new_any_join_engine/ast.json deleted file mode 100644 index d563ad7624..0000000000 --- a/parser/testdata/01051_new_any_join_engine/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001054874, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01051_random_printable_ascii/ast.json b/parser/testdata/01051_random_printable_ascii/ast.json deleted file mode 100644 index ae183a4e8d..0000000000 --- a/parser/testdata/01051_random_printable_ascii/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function randomPrintableASCII (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1000" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.000962277, - "rows_read": 9, - "bytes_read": 366 - } -} diff --git a/parser/testdata/01051_same_name_alias_with_joins/ast.json b/parser/testdata/01051_same_name_alias_with_joins/ast.json deleted file mode 100644 index 893346fcab..0000000000 --- a/parser/testdata/01051_same_name_alias_with_joins/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery a (children 1)" - }, - { - "explain": " Identifier a" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001037978, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01051_scalar_optimization/ast.json b/parser/testdata/01051_scalar_optimization/ast.json deleted file mode 100644 index e7c883c054..0000000000 --- a/parser/testdata/01051_scalar_optimization/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.00127747, - "rows_read": 20, - "bytes_read": 823 - } -} diff --git a/parser/testdata/01052_array_reduce_exception/ast.json b/parser/testdata/01052_array_reduce_exception/ast.json deleted file mode 100644 index 1743308d26..0000000000 --- a/parser/testdata/01052_array_reduce_exception/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayReduce (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'aggThrow(0.0001)'" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001177616, - "rows_read": 18, - "bytes_read": 718 - } -} diff --git a/parser/testdata/01053_drop_database_mat_view/ast.json b/parser/testdata/01053_drop_database_mat_view/ast.json deleted file mode 100644 index 44af576b17..0000000000 --- a/parser/testdata/01053_drop_database_mat_view/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001171057, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01053_if_chain_check/ast.json b/parser/testdata/01053_if_chain_check/ast.json deleted file mode 100644 index 4aea12a0a3..0000000000 --- a/parser/testdata/01053_if_chain_check/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001167079, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01054_cache_dictionary_overflow_cell/ast.json b/parser/testdata/01054_cache_dictionary_overflow_cell/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01054_cache_dictionary_overflow_cell/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01055_compact_parts/ast.json b/parser/testdata/01055_compact_parts/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01055_compact_parts/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01055_compact_parts_1/ast.json b/parser/testdata/01055_compact_parts_1/ast.json deleted file mode 100644 index 5ee8ab9bf8..0000000000 --- a/parser/testdata/01055_compact_parts_1/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery mt_compact (children 3)" - }, - { - "explain": " Identifier mt_compact" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " ColumnDeclaration a (children 1)" - }, - { - "explain": " DataType Int" - }, - { - "explain": " ColumnDeclaration s (children 1)" - }, - { - "explain": " DataType String" - }, - { - "explain": " Storage definition (children 3)" - }, - { - "explain": " Function MergeTree" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier a" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001062659, - "rows_read": 12, - "bytes_read": 399 - } -} diff --git a/parser/testdata/01055_prewhere_bugs/ast.json b/parser/testdata/01055_prewhere_bugs/ast.json deleted file mode 100644 index d0ffcdcca9..0000000000 --- a/parser/testdata/01055_prewhere_bugs/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_prewhere_default_column (children 1)" - }, - { - "explain": " Identifier test_prewhere_default_column" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001337136, - "rows_read": 2, - "bytes_read": 108 - } -} diff --git a/parser/testdata/01056_create_table_as/ast.json b/parser/testdata/01056_create_table_as/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01056_create_table_as/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01056_create_table_as_with_sorting_clauses/ast.json b/parser/testdata/01056_create_table_as_with_sorting_clauses/ast.json deleted file mode 100644 index 8353963934..0000000000 --- a/parser/testdata/01056_create_table_as_with_sorting_clauses/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery x (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001104735, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01056_negative_with_bloom_filter/ast.json b/parser/testdata/01056_negative_with_bloom_filter/ast.json deleted file mode 100644 index cfbf20b3fc..0000000000 --- a/parser/testdata/01056_negative_with_bloom_filter/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001205337, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01056_predicate_optimizer_bugs/ast.json b/parser/testdata/01056_predicate_optimizer_bugs/ast.json deleted file mode 100644 index a0c1a88c6d..0000000000 --- a/parser/testdata/01056_predicate_optimizer_bugs/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001155915, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01060_defaults_all_columns/ast.json b/parser/testdata/01060_defaults_all_columns/ast.json deleted file mode 100644 index 4069749de0..0000000000 --- a/parser/testdata/01060_defaults_all_columns/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults_all_columns (children 1)" - }, - { - "explain": " Identifier defaults_all_columns" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001230696, - "rows_read": 2, - "bytes_read": 92 - } -} diff --git a/parser/testdata/01060_shutdown_table_after_detach/ast.json b/parser/testdata/01060_shutdown_table_after_detach/ast.json deleted file mode 100644 index c8fc105afe..0000000000 --- a/parser/testdata/01060_shutdown_table_after_detach/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001392019, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01061_alter_codec_with_type/ast.json b/parser/testdata/01061_alter_codec_with_type/ast.json deleted file mode 100644 index d0f4da8ee9..0000000000 --- a/parser/testdata/01061_alter_codec_with_type/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery alter_bug (children 1)" - }, - { - "explain": " Identifier alter_bug" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00128822, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01062_alter_on_mutataion_zookeeper_long/ast.json b/parser/testdata/01062_alter_on_mutataion_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01062_alter_on_mutataion_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01062_pm_all_join_with_block_continuation/ast.json b/parser/testdata/01062_pm_all_join_with_block_continuation/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01062_pm_all_join_with_block_continuation/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01062_pm_multiple_all_join_same_value/ast.json b/parser/testdata/01062_pm_multiple_all_join_same_value/ast.json deleted file mode 100644 index dc8565e873..0000000000 --- a/parser/testdata/01062_pm_multiple_all_join_same_value/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001699966, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01063_create_column_set/ast.json b/parser/testdata/01063_create_column_set/ast.json deleted file mode 100644 index 35f3c72385..0000000000 --- a/parser/testdata/01063_create_column_set/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mt (children 1)" - }, - { - "explain": " Identifier mt" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001239046, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01064_arrayROCAUC/ast.json b/parser/testdata/01064_arrayROCAUC/ast.json deleted file mode 100644 index 5a0f956545..0000000000 --- a/parser/testdata/01064_arrayROCAUC/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayROCAUC (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[Float64_0.1, Float64_0.4, Float64_0.35, Float64_0.8]" - }, - { - "explain": " Literal Array_[UInt64_0, UInt64_0, UInt64_1, UInt64_1]" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001323021, - "rows_read": 8, - "bytes_read": 383 - } -} diff --git a/parser/testdata/01064_incremental_streaming_from_2_src_with_feedback/ast.json b/parser/testdata/01064_incremental_streaming_from_2_src_with_feedback/ast.json deleted file mode 100644 index f5f304b20b..0000000000 --- a/parser/testdata/01064_incremental_streaming_from_2_src_with_feedback/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001206104, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01064_pm_all_join_const_and_nullable/ast.json b/parser/testdata/01064_pm_all_join_const_and_nullable/ast.json deleted file mode 100644 index c8dcf3c6e3..0000000000 --- a/parser/testdata/01064_pm_all_join_const_and_nullable/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001162494, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01065_array_zip_mixed_const/ast.json b/parser/testdata/01065_array_zip_mixed_const/ast.json deleted file mode 100644 index 399effb64e..0000000000 --- a/parser/testdata/01065_array_zip_mixed_const/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayZip (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_0, UInt64_1]" - }, - { - "explain": " Literal Array_['hello', 'world']" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001358425, - "rows_read": 8, - "bytes_read": 325 - } -} diff --git a/parser/testdata/01065_if_not_finite/ast.json b/parser/testdata/01065_if_not_finite/ast.json deleted file mode 100644 index 3596fbd901..0000000000 --- a/parser/testdata/01065_if_not_finite/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function ifNotFinite (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function divide (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_111" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001301694, - "rows_read": 20, - "bytes_read": 791 - } -} diff --git a/parser/testdata/01066_bit_count/ast.json b/parser/testdata/01066_bit_count/ast.json deleted file mode 100644 index a850dea553..0000000000 --- a/parser/testdata/01066_bit_count/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bitCount (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001428517, - "rows_read": 13, - "bytes_read": 515 - } -} diff --git a/parser/testdata/01067_join_null/ast.json b/parser/testdata/01067_join_null/ast.json deleted file mode 100644 index 6db12d58e1..0000000000 --- a/parser/testdata/01067_join_null/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier id" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001370201, - "rows_read": 5, - "bytes_read": 174 - } -} diff --git a/parser/testdata/01068_parens/ast.json b/parser/testdata/01068_parens/ast.json deleted file mode 100644 index 1a5b833e50..0000000000 --- a/parser/testdata/01068_parens/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001049568, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01069_database_memory/ast.json b/parser/testdata/01069_database_memory/ast.json deleted file mode 100644 index 0ea348cd35..0000000000 --- a/parser/testdata/01069_database_memory/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery memory_01069 (children 1)" - }, - { - "explain": " Identifier memory_01069" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001513574, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01069_insert_float_as_nullable_unit8/ast.json b/parser/testdata/01069_insert_float_as_nullable_unit8/ast.json deleted file mode 100644 index accc5d18e3..0000000000 --- a/parser/testdata/01069_insert_float_as_nullable_unit8/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery t1 (children 2)" - }, - { - "explain": " Identifier t1" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration a (children 1)" - }, - { - "explain": " DataType Nullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " DataType UInt8" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001557449, - "rows_read": 8, - "bytes_read": 287 - } -} diff --git a/parser/testdata/01069_materialized_view_alter_target_table/ast.json b/parser/testdata/01069_materialized_view_alter_target_table/ast.json deleted file mode 100644 index 7677e9a57a..0000000000 --- a/parser/testdata/01069_materialized_view_alter_target_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mv (children 1)" - }, - { - "explain": " Identifier mv" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001501316, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01069_materialized_view_alter_target_table_with_default_expression/ast.json b/parser/testdata/01069_materialized_view_alter_target_table_with_default_expression/ast.json deleted file mode 100644 index 862bd077e1..0000000000 --- a/parser/testdata/01069_materialized_view_alter_target_table_with_default_expression/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mv (children 1)" - }, - { - "explain": " Identifier mv" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001364414, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01069_set_in_group_by/ast.json b/parser/testdata/01069_set_in_group_by/ast.json deleted file mode 100644 index abb76324e2..0000000000 --- a/parser/testdata/01069_set_in_group_by/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery testmt (children 1)" - }, - { - "explain": " Identifier testmt" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001149229, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/01070_alter_with_ttl/ast.json b/parser/testdata/01070_alter_with_ttl/ast.json deleted file mode 100644 index 36d0eb76ab..0000000000 --- a/parser/testdata/01070_alter_with_ttl/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery alter_ttl (children 1)" - }, - { - "explain": " Identifier alter_ttl" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001440556, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01070_exception_code_in_query_log_table/ast.json b/parser/testdata/01070_exception_code_in_query_log_table/ast.json deleted file mode 100644 index 165d27ad4a..0000000000 --- a/parser/testdata/01070_exception_code_in_query_log_table/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_table_for_01070_exception_code_in_query_log_table (children 1)" - }, - { - "explain": " Identifier test_table_for_01070_exception_code_in_query_log_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001345817, - "rows_read": 2, - "bytes_read": 160 - } -} diff --git a/parser/testdata/01070_h3_get_base_cell/ast.json b/parser/testdata/01070_h3_get_base_cell/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_h3_get_base_cell/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_h3_hex_area_m2/ast.json b/parser/testdata/01070_h3_hex_area_m2/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_h3_hex_area_m2/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_h3_indexes_are_neighbors/ast.json b/parser/testdata/01070_h3_indexes_are_neighbors/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_h3_indexes_are_neighbors/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_h3_to_children/ast.json b/parser/testdata/01070_h3_to_children/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_h3_to_children/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_h3_to_parent/ast.json b/parser/testdata/01070_h3_to_parent/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_h3_to_parent/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_h3_to_string/ast.json b/parser/testdata/01070_h3_to_string/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_h3_to_string/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_materialize_ttl/ast.json b/parser/testdata/01070_materialize_ttl/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_materialize_ttl/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_modify_ttl/ast.json b/parser/testdata/01070_modify_ttl/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_modify_ttl/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_modify_ttl_recalc_only/ast.json b/parser/testdata/01070_modify_ttl_recalc_only/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_modify_ttl_recalc_only/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_mutations_with_dependencies/ast.json b/parser/testdata/01070_mutations_with_dependencies/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_mutations_with_dependencies/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_string_to_h3/ast.json b/parser/testdata/01070_string_to_h3/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01070_string_to_h3/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01070_template_empty_file/ast.json b/parser/testdata/01070_template_empty_file/ast.json deleted file mode 100644 index 829fcc78b8..0000000000 --- a/parser/testdata/01070_template_empty_file/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Identifier Template" - }, - { - "explain": " Set" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001145141, - "rows_read": 7, - "bytes_read": 217 - } -} diff --git a/parser/testdata/01070_to_decimal_or_null_exception/ast.json b/parser/testdata/01070_to_decimal_or_null_exception/ast.json deleted file mode 100644 index 9cde90e76c..0000000000 --- a/parser/testdata/01070_to_decimal_or_null_exception/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'e'" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001494972, - "rows_read": 8, - "bytes_read": 289 - } -} diff --git a/parser/testdata/01071_force_optimize_skip_unused_shards/ast.json b/parser/testdata/01071_force_optimize_skip_unused_shards/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01071_force_optimize_skip_unused_shards/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01071_in_array/ast.json b/parser/testdata/01071_in_array/ast.json deleted file mode 100644 index 48ba30229c..0000000000 --- a/parser/testdata/01071_in_array/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001814348, - "rows_read": 8, - "bytes_read": 321 - } -} diff --git a/parser/testdata/01071_prohibition_secondary_index_with_old_format_merge_tree/ast.json b/parser/testdata/01071_prohibition_secondary_index_with_old_format_merge_tree/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01071_prohibition_secondary_index_with_old_format_merge_tree/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01072_drop_temporary_table_with_same_name/ast.json b/parser/testdata/01072_drop_temporary_table_with_same_name/ast.json deleted file mode 100644 index 9f34c8f8c4..0000000000 --- a/parser/testdata/01072_drop_temporary_table_with_same_name/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_to_drop (children 1)" - }, - { - "explain": " Identifier table_to_drop" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001294869, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01072_json_each_row_data_in_square_brackets/ast.json b/parser/testdata/01072_json_each_row_data_in_square_brackets/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01072_json_each_row_data_in_square_brackets/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01072_nullable_jit/ast.json b/parser/testdata/01072_nullable_jit/ast.json deleted file mode 100644 index cce4a55b96..0000000000 --- a/parser/testdata/01072_nullable_jit/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001029213, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01072_optimize_skip_unused_shards_const_expr_eval/ast.json b/parser/testdata/01072_optimize_skip_unused_shards_const_expr_eval/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01072_optimize_skip_unused_shards_const_expr_eval/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01072_select_constant_limit/ast.json b/parser/testdata/01072_select_constant_limit/ast.json deleted file mode 100644 index 35e160c6d9..0000000000 --- a/parser/testdata/01072_select_constant_limit/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_42 (alias foo)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier foo" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001045502, - "rows_read": 9, - "bytes_read": 321 - } -} diff --git a/parser/testdata/01073_attach_if_not_exists/ast.json b/parser/testdata/01073_attach_if_not_exists/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01073_attach_if_not_exists/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01073_bad_alter_partition/ast.json b/parser/testdata/01073_bad_alter_partition/ast.json deleted file mode 100644 index cc7963fb7d..0000000000 --- a/parser/testdata/01073_bad_alter_partition/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery merge_tree (children 1)" - }, - { - "explain": " Identifier merge_tree" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001100084, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01073_blockSerializedSize/ast.json b/parser/testdata/01073_blockSerializedSize/ast.json deleted file mode 100644 index fcee1aa02f..0000000000 --- a/parser/testdata/01073_blockSerializedSize/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'UInt8'" - }, - { - "explain": " Function blockSerializedSize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001375742, - "rows_read": 8, - "bytes_read": 299 - } -} diff --git a/parser/testdata/01073_crlf_end_of_line/ast.json b/parser/testdata/01073_crlf_end_of_line/ast.json deleted file mode 100644 index a2dba7aaff..0000000000 --- a/parser/testdata/01073_crlf_end_of_line/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_01073_crlf_end_of_line (children 1)" - }, - { - "explain": " Identifier test_01073_crlf_end_of_line" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001449773, - "rows_read": 2, - "bytes_read": 106 - } -} diff --git a/parser/testdata/01073_grant_and_revoke/ast.json b/parser/testdata/01073_grant_and_revoke/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01073_grant_and_revoke/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01073_show_tables_not_like/ast.json b/parser/testdata/01073_show_tables_not_like/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01073_show_tables_not_like/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01074_h3_range_check/ast.json b/parser/testdata/01074_h3_range_check/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01074_h3_range_check/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01074_partial_revokes/ast.json b/parser/testdata/01074_partial_revokes/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01074_partial_revokes/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01075_allowed_client_hosts/ast.json b/parser/testdata/01075_allowed_client_hosts/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01075_allowed_client_hosts/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01075_in_arrays_enmk/ast.json b/parser/testdata/01075_in_arrays_enmk/ast.json deleted file mode 100644 index d87155d813..0000000000 --- a/parser/testdata/01075_in_arrays_enmk/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001678151, - "rows_read": 8, - "bytes_read": 303 - } -} diff --git a/parser/testdata/01076_array_join_prewhere_const_folding/ast.json b/parser/testdata/01076_array_join_prewhere_const_folding/ast.json deleted file mode 100644 index dfb69b3a6c..0000000000 --- a/parser/testdata/01076_array_join_prewhere_const_folding/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00139283, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01076_predicate_optimizer_with_view/ast.json b/parser/testdata/01076_predicate_optimizer_with_view/ast.json deleted file mode 100644 index e4c3dabef7..0000000000 --- a/parser/testdata/01076_predicate_optimizer_with_view/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001240786, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01076_range_reader_segfault/ast.json b/parser/testdata/01076_range_reader_segfault/ast.json deleted file mode 100644 index a427140075..0000000000 --- a/parser/testdata/01076_range_reader_segfault/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001277585, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01077_yet_another_prewhere_test/ast.json b/parser/testdata/01077_yet_another_prewhere_test/ast.json deleted file mode 100644 index 5ace0e5f73..0000000000 --- a/parser/testdata/01077_yet_another_prewhere_test/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t50 (children 1)" - }, - { - "explain": " Identifier t50" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001419937, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01078_bloom_filter_operator_not_has/ast.json b/parser/testdata/01078_bloom_filter_operator_not_has/ast.json deleted file mode 100644 index 0fe407f422..0000000000 --- a/parser/testdata/01078_bloom_filter_operator_not_has/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery bloom_filter_not_has (children 1)" - }, - { - "explain": " Identifier bloom_filter_not_has" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001225349, - "rows_read": 2, - "bytes_read": 92 - } -} diff --git a/parser/testdata/01078_merge_tree_read_one_thread/ast.json b/parser/testdata/01078_merge_tree_read_one_thread/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01078_merge_tree_read_one_thread/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01079_alter_default_zookeeper_long/ast.json b/parser/testdata/01079_alter_default_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01079_alter_default_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01079_bit_operations_using_bitset/ast.json b/parser/testdata/01079_bit_operations_using_bitset/ast.json deleted file mode 100644 index cb656367c8..0000000000 --- a/parser/testdata/01079_bit_operations_using_bitset/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function IPv6NumToString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bitAnd (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function IPv6StringToNum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2001:0db8:85a3:8d3a:b2da:8a2e:0370:7334'" - }, - { - "explain": " Function IPv6StringToNum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'ffff:ffff:ffff:0000:0000:0000:0000:0000'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.00154548, - "rows_read": 19, - "bytes_read": 857 - } -} diff --git a/parser/testdata/01079_new_range_reader_segfault/ast.json b/parser/testdata/01079_new_range_reader_segfault/ast.json deleted file mode 100644 index fbfeb2eb66..0000000000 --- a/parser/testdata/01079_new_range_reader_segfault/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00118218, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01079_order_by_pk/ast.json b/parser/testdata/01079_order_by_pk/ast.json deleted file mode 100644 index 45e00bfdb5..0000000000 --- a/parser/testdata/01079_order_by_pk/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mt_pk (children 1)" - }, - { - "explain": " Identifier mt_pk" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001315492, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01079_reinterpret_as_fixed_string/ast.json b/parser/testdata/01079_reinterpret_as_fixed_string/ast.json deleted file mode 100644 index d255355410..0000000000 --- a/parser/testdata/01079_reinterpret_as_fixed_string/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function reinterpretAsFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3735928559" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001328636, - "rows_read": 9, - "bytes_read": 376 - } -} diff --git a/parser/testdata/01080_check_for_error_incorrect_size_of_nested_column/ast.json b/parser/testdata/01080_check_for_error_incorrect_size_of_nested_column/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01080_check_for_error_incorrect_size_of_nested_column/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01080_engine_merge_prewhere_tupleelement_error/ast.json b/parser/testdata/01080_engine_merge_prewhere_tupleelement_error/ast.json deleted file mode 100644 index 7ba105e99c..0000000000 --- a/parser/testdata/01080_engine_merge_prewhere_tupleelement_error/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery A1 (children 1)" - }, - { - "explain": " Identifier A1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001027207, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01080_join_get_null/ast.json b/parser/testdata/01080_join_get_null/ast.json deleted file mode 100644 index cfedc0ca0d..0000000000 --- a/parser/testdata/01080_join_get_null/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_joinGet (children 1)" - }, - { - "explain": " Identifier test_joinGet" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001495223, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01081_PartialSortingTransform_full_column/ast.json b/parser/testdata/01081_PartialSortingTransform_full_column/ast.json deleted file mode 100644 index d6f52d1963..0000000000 --- a/parser/testdata/01081_PartialSortingTransform_full_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_01081 (children 1)" - }, - { - "explain": " Identifier test_01081" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001080749, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01081_demangle/ast.json b/parser/testdata/01081_demangle/ast.json deleted file mode 100644 index 7df75baa00..0000000000 --- a/parser/testdata/01081_demangle/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001229136, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01081_keywords_formatting/ast.json b/parser/testdata/01081_keywords_formatting/ast.json deleted file mode 100644 index cc92d83be8..0000000000 --- a/parser/testdata/01081_keywords_formatting/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias interval)" - }, - { - "explain": " Identifier interval" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001311276, - "rows_read": 8, - "bytes_read": 307 - } -} diff --git a/parser/testdata/01082_bit_test_out_of_bound/ast.json b/parser/testdata/01082_bit_test_out_of_bound/ast.json deleted file mode 100644 index 67e028840e..0000000000 --- a/parser/testdata/01082_bit_test_out_of_bound/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '-- bitTestAny'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001172411, - "rows_read": 5, - "bytes_read": 184 - } -} diff --git a/parser/testdata/01083_aggregation_memory_efficient_bug/ast.json b/parser/testdata/01083_aggregation_memory_efficient_bug/ast.json deleted file mode 100644 index 65748e74ed..0000000000 --- a/parser/testdata/01083_aggregation_memory_efficient_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery da_memory_efficient_shard (children 1)" - }, - { - "explain": " Identifier da_memory_efficient_shard" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000992593, - "rows_read": 2, - "bytes_read": 102 - } -} diff --git a/parser/testdata/01083_cross_to_inner_with_in_bug/ast.json b/parser/testdata/01083_cross_to_inner_with_in_bug/ast.json deleted file mode 100644 index 5920bcfb73..0000000000 --- a/parser/testdata/01083_cross_to_inner_with_in_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ax (children 1)" - }, - { - "explain": " Identifier ax" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001103506, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01083_cross_to_inner_with_like/ast.json b/parser/testdata/01083_cross_to_inner_with_like/ast.json deleted file mode 100644 index 3dc7a73fe7..0000000000 --- a/parser/testdata/01083_cross_to_inner_with_like/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001205997, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01083_expressions_in_engine_arguments/ast.json b/parser/testdata/01083_expressions_in_engine_arguments/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01083_expressions_in_engine_arguments/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01083_functional_index_in_mergetree/ast.json b/parser/testdata/01083_functional_index_in_mergetree/ast.json deleted file mode 100644 index a4917ff910..0000000000 --- a/parser/testdata/01083_functional_index_in_mergetree/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001119647, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01083_log_first_column_alias/ast.json b/parser/testdata/01083_log_first_column_alias/ast.json deleted file mode 100644 index 89b9c03463..0000000000 --- a/parser/testdata/01083_log_first_column_alias/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_alias (children 1)" - }, - { - "explain": " Identifier test_alias" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001004612, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01083_match_zero_byte/ast.json b/parser/testdata/01083_match_zero_byte/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01083_match_zero_byte/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01084_defaults_on_aliases/ast.json b/parser/testdata/01084_defaults_on_aliases/ast.json deleted file mode 100644 index 67542b71cb..0000000000 --- a/parser/testdata/01084_defaults_on_aliases/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_with_defaults_on_aliases (children 1)" - }, - { - "explain": " Identifier table_with_defaults_on_aliases" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001128068, - "rows_read": 2, - "bytes_read": 112 - } -} diff --git a/parser/testdata/01084_regexp_empty/ast.json b/parser/testdata/01084_regexp_empty/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01084_regexp_empty/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01085_datetime_arithmetic_preserve_timezone/ast.json b/parser/testdata/01085_datetime_arithmetic_preserve_timezone/ast.json deleted file mode 100644 index a6876cd0be..0000000000 --- a/parser/testdata/01085_datetime_arithmetic_preserve_timezone/ast.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Function toDateTime (alias t) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '2020-01-01 00:00:00'" - }, - { - "explain": " Literal 'UTC'" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Function toIntervalSecond (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Function toIntervalDay (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function plus (alias dt64) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDateTime64 (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal 'UTC'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier dt64" - } - ], - - "rows": 47, - - "statistics": - { - "elapsed": 0.001308458, - "rows_read": 47, - "bytes_read": 1763 - } -} diff --git a/parser/testdata/01085_extract_all_empty/ast.json b/parser/testdata/01085_extract_all_empty/ast.json deleted file mode 100644 index fe0871f4b9..0000000000 --- a/parser/testdata/01085_extract_all_empty/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function extractAll (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '\\0'" - }, - { - "explain": " Literal ''" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001025591, - "rows_read": 8, - "bytes_read": 283 - } -} diff --git a/parser/testdata/01085_simdjson_uint64/ast.json b/parser/testdata/01085_simdjson_uint64/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01085_simdjson_uint64/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01086_modulo_or_zero/ast.json b/parser/testdata/01086_modulo_or_zero/ast.json deleted file mode 100644 index 4e69c48c20..0000000000 --- a/parser/testdata/01086_modulo_or_zero/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function moduloOrZero (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001028464, - "rows_read": 11, - "bytes_read": 413 - } -} diff --git a/parser/testdata/01087_index_set_ubsan/ast.json b/parser/testdata/01087_index_set_ubsan/ast.json deleted file mode 100644 index 5bb5afb1ff..0000000000 --- a/parser/testdata/01087_index_set_ubsan/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001428574, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01087_storage_generate/ast.json b/parser/testdata/01087_storage_generate/ast.json deleted file mode 100644 index 218dfcc2c8..0000000000 --- a/parser/testdata/01087_storage_generate/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_table (children 1)" - }, - { - "explain": " Identifier test_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001184913, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01087_table_function_generate/ast.json b/parser/testdata/01087_table_function_generate/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01087_table_function_generate/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01088_array_slice_of_aggregate_functions/ast.json b/parser/testdata/01088_array_slice_of_aggregate_functions/ast.json deleted file mode 100644 index a1cfd376be..0000000000 --- a/parser/testdata/01088_array_slice_of_aggregate_functions/ast.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arraySlice (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function groupArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniqState (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - } - ], - - "rows": 33, - - "statistics": - { - "elapsed": 0.001374214, - "rows_read": 33, - "bytes_read": 1415 - } -} diff --git a/parser/testdata/01089_alter_settings_old_format/ast.json b/parser/testdata/01089_alter_settings_old_format/ast.json deleted file mode 100644 index 3c1d71de30..0000000000 --- a/parser/testdata/01089_alter_settings_old_format/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery old_format_mt (children 1)" - }, - { - "explain": " Identifier old_format_mt" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001507742, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01090_fixed_string_bit_ops/ast.json b/parser/testdata/01090_fixed_string_bit_ops/ast.json deleted file mode 100644 index 8d7f0f9067..0000000000 --- a/parser/testdata/01090_fixed_string_bit_ops/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bitXor (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'abc'" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Function toFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '\\0\u0001\u0002'" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001480929, - "rows_read": 22, - "bytes_read": 884 - } -} diff --git a/parser/testdata/01090_zookeeper_mutations_and_insert_quorum_long/ast.json b/parser/testdata/01090_zookeeper_mutations_and_insert_quorum_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01090_zookeeper_mutations_and_insert_quorum_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01091_insert_with_default_json/ast.json b/parser/testdata/01091_insert_with_default_json/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01091_insert_with_default_json/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01091_num_threads/ast.json b/parser/testdata/01091_num_threads/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01091_num_threads/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01091_query_profiler_does_not_hang/ast.json b/parser/testdata/01091_query_profiler_does_not_hang/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01091_query_profiler_does_not_hang/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01092_memory_profiler/ast.json b/parser/testdata/01092_memory_profiler/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01092_memory_profiler/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01093_cyclic_defaults_filimonov/ast.json b/parser/testdata/01093_cyclic_defaults_filimonov/ast.json deleted file mode 100644 index bb16a7455a..0000000000 --- a/parser/testdata/01093_cyclic_defaults_filimonov/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.002023331, - "rows_read": 2, - "bytes_read": 61 - } -} diff --git a/parser/testdata/01095_tpch_like_smoke/ast.json b/parser/testdata/01095_tpch_like_smoke/ast.json deleted file mode 100644 index dc6e9adbdc..0000000000 --- a/parser/testdata/01095_tpch_like_smoke/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery part (children 1)" - }, - { - "explain": " Identifier part" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00183956, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01096_array_reduce_in_ranges/ast.json b/parser/testdata/01096_array_reduce_in_ranges/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01096_array_reduce_in_ranges/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01096_block_serialized_state/ast.json b/parser/testdata/01096_block_serialized_state/ast.json deleted file mode 100644 index c976ed12be..0000000000 --- a/parser/testdata/01096_block_serialized_state/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function ignore (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function blockSerializedSize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_1)" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001414243, - "rows_read": 9, - "bytes_read": 376 - } -} diff --git a/parser/testdata/01096_zeros/ast.json b/parser/testdata/01096_zeros/ast.json deleted file mode 100644 index 9c9b64eafa..0000000000 --- a/parser/testdata/01096_zeros/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier zero" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.zeros" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Set" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001346812, - "rows_read": 11, - "bytes_read": 395 - } -} diff --git a/parser/testdata/01097_cyclic_defaults/ast.json b/parser/testdata/01097_cyclic_defaults/ast.json deleted file mode 100644 index 70b05bc8aa..0000000000 --- a/parser/testdata/01097_cyclic_defaults/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_with_cyclic_defaults (children 1)" - }, - { - "explain": " Identifier table_with_cyclic_defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001453357, - "rows_read": 2, - "bytes_read": 104 - } -} diff --git a/parser/testdata/01097_one_more_range_reader_test/ast.json b/parser/testdata/01097_one_more_range_reader_test/ast.json deleted file mode 100644 index e93b309f8c..0000000000 --- a/parser/testdata/01097_one_more_range_reader_test/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001227425, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01097_one_more_range_reader_test_wide_part/ast.json b/parser/testdata/01097_one_more_range_reader_test_wide_part/ast.json deleted file mode 100644 index 50871d2354..0000000000 --- a/parser/testdata/01097_one_more_range_reader_test_wide_part/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001446343, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01097_pre_limit/ast.json b/parser/testdata/01097_pre_limit/ast.json deleted file mode 100644 index 19bac39fb3..0000000000 --- a/parser/testdata/01097_pre_limit/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers_mt" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1000000" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001497323, - "rows_read": 14, - "bytes_read": 521 - } -} diff --git a/parser/testdata/01098_sum/ast.json b/parser/testdata/01098_sum/ast.json deleted file mode 100644 index a46d60c9c9..0000000000 --- a/parser/testdata/01098_sum/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumKahan (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function remote (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '127.{2,3}'" - }, - { - "explain": " Identifier system.one" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.00124415, - "rows_read": 14, - "bytes_read": 552 - } -} diff --git a/parser/testdata/01099_operators_date_and_timestamp/ast.json b/parser/testdata/01099_operators_date_and_timestamp/ast.json deleted file mode 100644 index 6db461c409..0000000000 --- a/parser/testdata/01099_operators_date_and_timestamp/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function toIntervalSecond (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toIntervalMinute (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toIntervalHour (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001299059, - "rows_read": 13, - "bytes_read": 507 - } -} diff --git a/parser/testdata/01099_parallel_distributed_insert_select/ast.json b/parser/testdata/01099_parallel_distributed_insert_select/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01099_parallel_distributed_insert_select/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01100_split_by_string/ast.json b/parser/testdata/01100_split_by_string/ast.json deleted file mode 100644 index dc8ca5d583..0000000000 --- a/parser/testdata/01100_split_by_string/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function splitByString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'ab'" - }, - { - "explain": " Literal 'cdeabcde'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001473031, - "rows_read": 8, - "bytes_read": 294 - } -} diff --git a/parser/testdata/01101_literal_column_clash/ast.json b/parser/testdata/01101_literal_column_clash/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01101_literal_column_clash/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01101_prewhere_after_alter/ast.json b/parser/testdata/01101_prewhere_after_alter/ast.json deleted file mode 100644 index dd374c4ba0..0000000000 --- a/parser/testdata/01101_prewhere_after_alter/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_a (children 1)" - }, - { - "explain": " Identifier test_a" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001137141, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/01102_distributed_local_in_bug/ast.json b/parser/testdata/01102_distributed_local_in_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01102_distributed_local_in_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01103_distributed_product_mode_local_column_renames/ast.json b/parser/testdata/01103_distributed_product_mode_local_column_renames/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01103_distributed_product_mode_local_column_renames/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01104_distributed_numbers_test/ast.json b/parser/testdata/01104_distributed_numbers_test/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01104_distributed_numbers_test/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01104_distributed_one_test/ast.json b/parser/testdata/01104_distributed_one_test/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01104_distributed_one_test/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01104_fixed_string_like/ast.json b/parser/testdata/01104_fixed_string_like/ast.json deleted file mode 100644 index a297dde2a5..0000000000 --- a/parser/testdata/01104_fixed_string_like/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function like (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_['hello', 'world']" - }, - { - "explain": " Literal 'Array(FixedString(5))'" - }, - { - "explain": " Literal 'hello'" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.00147319, - "rows_read": 13, - "bytes_read": 528 - } -} diff --git a/parser/testdata/01105_string_like/ast.json b/parser/testdata/01105_string_like/ast.json deleted file mode 100644 index 8a44d18d59..0000000000 --- a/parser/testdata/01105_string_like/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function like (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['hello', 'world']" - }, - { - "explain": " Literal 'hello'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001243796, - "rows_read": 10, - "bytes_read": 391 - } -} diff --git a/parser/testdata/01106_const_fixed_string_like/ast.json b/parser/testdata/01106_const_fixed_string_like/ast.json deleted file mode 100644 index 30b4762518..0000000000 --- a/parser/testdata/01106_const_fixed_string_like/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function like (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " Literal 'FixedString(5)'" - }, - { - "explain": " Literal 'hello'" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.00141514, - "rows_read": 11, - "bytes_read": 409 - } -} diff --git a/parser/testdata/01107_join_right_table_totals/ast.json b/parser/testdata/01107_join_right_table_totals/ast.json deleted file mode 100644 index 2794455798..0000000000 --- a/parser/testdata/01107_join_right_table_totals/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001256729, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01109_exchange_tables/ast.json b/parser/testdata/01109_exchange_tables/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01109_exchange_tables/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01109_inflating_cross_join/ast.json b/parser/testdata/01109_inflating_cross_join/ast.json deleted file mode 100644 index 7296bac688..0000000000 --- a/parser/testdata/01109_inflating_cross_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001219202, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01109_sc0rp10_string_hash_map_zero_bytes/ast.json b/parser/testdata/01109_sc0rp10_string_hash_map_zero_bytes/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01109_sc0rp10_string_hash_map_zero_bytes/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01110_dictionary_layout_without_arguments/ast.json b/parser/testdata/01110_dictionary_layout_without_arguments/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01110_dictionary_layout_without_arguments/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01112_check_table_with_index/ast.json b/parser/testdata/01112_check_table_with_index/ast.json deleted file mode 100644 index 0c858482ce..0000000000 --- a/parser/testdata/01112_check_table_with_index/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001693676, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01113_local_dictionary_type_conversion/ast.json b/parser/testdata/01113_local_dictionary_type_conversion/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01113_local_dictionary_type_conversion/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01114_alter_modify_compact_parts/ast.json b/parser/testdata/01114_alter_modify_compact_parts/ast.json deleted file mode 100644 index 039cc8918a..0000000000 --- a/parser/testdata/01114_alter_modify_compact_parts/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mt_compact (children 1)" - }, - { - "explain": " Identifier mt_compact" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001728093, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01114_clear_column_compact_parts/ast.json b/parser/testdata/01114_clear_column_compact_parts/ast.json deleted file mode 100644 index 170d80902a..0000000000 --- a/parser/testdata/01114_clear_column_compact_parts/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery clear_column (children 1)" - }, - { - "explain": " Identifier clear_column" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00166968, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01114_materialize_clear_index_compact_parts/ast.json b/parser/testdata/01114_materialize_clear_index_compact_parts/ast.json deleted file mode 100644 index 901edbb2ec..0000000000 --- a/parser/testdata/01114_materialize_clear_index_compact_parts/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001948557, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01114_mysql_database_engine_segfault/ast.json b/parser/testdata/01114_mysql_database_engine_segfault/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01114_mysql_database_engine_segfault/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01115_join_with_dictionary/ast.json b/parser/testdata/01115_join_with_dictionary/ast.json deleted file mode 100644 index 6f12c1764b..0000000000 --- a/parser/testdata/01115_join_with_dictionary/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001329995, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01115_prewhere_array_join/ast.json b/parser/testdata/01115_prewhere_array_join/ast.json deleted file mode 100644 index 34d8aa8822..0000000000 --- a/parser/testdata/01115_prewhere_array_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery prewhere (children 1)" - }, - { - "explain": " Identifier prewhere" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001135546, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01116_asof_join_dolbyzerr/ast.json b/parser/testdata/01116_asof_join_dolbyzerr/ast.json deleted file mode 100644 index 70b417ad69..0000000000 --- a/parser/testdata/01116_asof_join_dolbyzerr/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery sessions (children 2)" - }, - { - "explain": " Identifier sessions" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " ColumnDeclaration date (children 1)" - }, - { - "explain": " DataType DateTime" - }, - { - "explain": " ColumnDeclaration visitorId (children 1)" - }, - { - "explain": " DataType String" - }, - { - "explain": " ColumnDeclaration sessionId (children 1)" - }, - { - "explain": " DataType String" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001323594, - "rows_read": 10, - "bytes_read": 377 - } -} diff --git a/parser/testdata/01116_cross_count_asterisks/ast.json b/parser/testdata/01116_cross_count_asterisks/ast.json deleted file mode 100644 index bde64ad5d2..0000000000 --- a/parser/testdata/01116_cross_count_asterisks/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001290632, - "rows_read": 7, - "bytes_read": 250 - } -} diff --git a/parser/testdata/01117_chain_finalize_bug/ast.json b/parser/testdata/01117_chain_finalize_bug/ast.json deleted file mode 100644 index 14559dd339..0000000000 --- a/parser/testdata/01117_chain_finalize_bug/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (alias index) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier i" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier i" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Identifier number" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.00152334, - "rows_read": 21, - "bytes_read": 851 - } -} diff --git a/parser/testdata/01117_comma_and_others_join_mix/ast.json b/parser/testdata/01117_comma_and_others_join_mix/ast.json deleted file mode 100644 index 0ecfe26664..0000000000 --- a/parser/testdata/01117_comma_and_others_join_mix/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001162842, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01117_greatest_least_case/ast.json b/parser/testdata/01117_greatest_least_case/ast.json deleted file mode 100644 index 61c70d0625..0000000000 --- a/parser/testdata/01117_greatest_least_case/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function GREATEST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001495211, - "rows_read": 8, - "bytes_read": 291 - } -} diff --git a/parser/testdata/01118_is_constant/ast.json b/parser/testdata/01118_is_constant/ast.json deleted file mode 100644 index 7131200ec4..0000000000 --- a/parser/testdata/01118_is_constant/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function isConstant (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001283559, - "rows_read": 7, - "bytes_read": 263 - } -} diff --git a/parser/testdata/01119_optimize_trivial_insert_select/ast.json b/parser/testdata/01119_optimize_trivial_insert_select/ast.json deleted file mode 100644 index a63a2f1498..0000000000 --- a/parser/testdata/01119_optimize_trivial_insert_select/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.002115065, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01119_weird_user_names/ast.json b/parser/testdata/01119_weird_user_names/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01119_weird_user_names/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01120_join_constants/ast.json b/parser/testdata/01120_join_constants/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01120_join_constants/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01121_remote_scalar_subquery/ast.json b/parser/testdata/01121_remote_scalar_subquery/ast.json deleted file mode 100644 index 80b4c6c2a4..0000000000 --- a/parser/testdata/01121_remote_scalar_subquery/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function remote (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '127.0.0.{1,2}'" - }, - { - "explain": " Identifier system.one" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001332853, - "rows_read": 17, - "bytes_read": 679 - } -} diff --git a/parser/testdata/01122_totals_rollup_having_block_header/ast.json b/parser/testdata/01122_totals_rollup_having_block_header/ast.json deleted file mode 100644 index 6ef50f61af..0000000000 --- a/parser/testdata/01122_totals_rollup_having_block_header/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery rollup_having (children 1)" - }, - { - "explain": " Identifier rollup_having" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001264408, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01123_parse_date_time_best_effort_even_more/ast.json b/parser/testdata/01123_parse_date_time_best_effort_even_more/ast.json deleted file mode 100644 index 2fd2673da4..0000000000 --- a/parser/testdata/01123_parse_date_time_best_effort_even_more/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toTimeZone (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function parseDateTimeBestEffort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'Thu, 18 Aug 2018 07:22:16 GMT'" - }, - { - "explain": " Literal 'UTC'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001435258, - "rows_read": 10, - "bytes_read": 416 - } -} diff --git a/parser/testdata/01124_view_bad_types/ast.json b/parser/testdata/01124_view_bad_types/ast.json deleted file mode 100644 index df13fe8205..0000000000 --- a/parser/testdata/01124_view_bad_types/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery source_table (children 1)" - }, - { - "explain": " Identifier source_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001526256, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01125_dict_ddl_cannot_add_column/ast.json b/parser/testdata/01125_dict_ddl_cannot_add_column/ast.json deleted file mode 100644 index bd19ead81e..0000000000 --- a/parser/testdata/01125_dict_ddl_cannot_add_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery date_table (children 1)" - }, - { - "explain": " Identifier date_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001417016, - "rows_read": 2, - "bytes_read": 73 - } -} diff --git a/parser/testdata/01125_generate_random_qoega/ast.json b/parser/testdata/01125_generate_random_qoega/ast.json deleted file mode 100644 index 5b557d0997..0000000000 --- a/parser/testdata/01125_generate_random_qoega/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mass_table_117 (children 1)" - }, - { - "explain": " Identifier mass_table_117" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001251254, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01126_month_partitioning_consistent_code/ast.json b/parser/testdata/01126_month_partitioning_consistent_code/ast.json deleted file mode 100644 index f4ab1e414b..0000000000 --- a/parser/testdata/01126_month_partitioning_consistent_code/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mt (children 1)" - }, - { - "explain": " Identifier mt" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001585625, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01127_month_partitioning_consistency_select/ast.json b/parser/testdata/01127_month_partitioning_consistency_select/ast.json deleted file mode 100644 index 9ff8f5666b..0000000000 --- a/parser/testdata/01127_month_partitioning_consistency_select/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001183783, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01128_generate_random_nested/ast.json b/parser/testdata/01128_generate_random_nested/ast.json deleted file mode 100644 index 1d1124eba8..0000000000 --- a/parser/testdata/01128_generate_random_nested/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mass_table_312 (children 1)" - }, - { - "explain": " Identifier mass_table_312" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001240587, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01129_dict_get_join_lose_constness/ast.json b/parser/testdata/01129_dict_get_join_lose_constness/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01129_dict_get_join_lose_constness/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01131_max_rows_to_sort/ast.json b/parser/testdata/01131_max_rows_to_sort/ast.json deleted file mode 100644 index ebbb7cb053..0000000000 --- a/parser/testdata/01131_max_rows_to_sort/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001459568, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01132_max_rows_to_read/ast.json b/parser/testdata/01132_max_rows_to_read/ast.json deleted file mode 100644 index 81c4db9473..0000000000 --- a/parser/testdata/01132_max_rows_to_read/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery row_limits_test (children 1)" - }, - { - "explain": " Identifier row_limits_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001395446, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/01134_max_rows_to_group_by/ast.json b/parser/testdata/01134_max_rows_to_group_by/ast.json deleted file mode 100644 index 0437edd235..0000000000 --- a/parser/testdata/01134_max_rows_to_group_by/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001569278, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01134_set_overflow_mode/ast.json b/parser/testdata/01134_set_overflow_mode/ast.json deleted file mode 100644 index 29002d45af..0000000000 --- a/parser/testdata/01134_set_overflow_mode/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001848037, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01135_default_and_alter_zookeeper/ast.json b/parser/testdata/01135_default_and_alter_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01135_default_and_alter_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01136_multiple_sets/ast.json b/parser/testdata/01136_multiple_sets/ast.json deleted file mode 100644 index bf53ad922d..0000000000 --- a/parser/testdata/01136_multiple_sets/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001406124, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01137_order_by_func/ast.json b/parser/testdata/01137_order_by_func/ast.json deleted file mode 100644 index af6879ad16..0000000000 --- a/parser/testdata/01137_order_by_func/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery pk_func (children 1)" - }, - { - "explain": " Identifier pk_func" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.002021508, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01137_order_by_func_final/ast.json b/parser/testdata/01137_order_by_func_final/ast.json deleted file mode 100644 index b85178c743..0000000000 --- a/parser/testdata/01137_order_by_func_final/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery pk_func (children 1)" - }, - { - "explain": " Identifier pk_func" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00119676, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01137_sample_final/ast.json b/parser/testdata/01137_sample_final/ast.json deleted file mode 100644 index aa86e084ad..0000000000 --- a/parser/testdata/01137_sample_final/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab (children 1)" - }, - { - "explain": " Identifier tab" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001421795, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01138_join_on_distributed_and_tmp/ast.json b/parser/testdata/01138_join_on_distributed_and_tmp/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01138_join_on_distributed_and_tmp/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01139_asof_join_types/ast.json b/parser/testdata/01139_asof_join_types/ast.json deleted file mode 100644 index b01366c015..0000000000 --- a/parser/testdata/01139_asof_join_types/ast.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias t1) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0 (alias k)" - }, - { - "explain": " Function toInt8 (alias v) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias t2) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0 (alias k)" - }, - { - "explain": " Function toInt8 (alias v) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " Identifier v" - } - ], - - "rows": 32, - - "statistics": - { - "elapsed": 0.001588609, - "rows_read": 32, - "bytes_read": 1344 - } -} diff --git a/parser/testdata/01140_select_from_storage_join_fix/ast.json b/parser/testdata/01140_select_from_storage_join_fix/ast.json deleted file mode 100644 index 38a8260f39..0000000000 --- a/parser/testdata/01140_select_from_storage_join_fix/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001436769, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01141_join_get_negative/ast.json b/parser/testdata/01141_join_get_negative/ast.json deleted file mode 100644 index 9b52b32094..0000000000 --- a/parser/testdata/01141_join_get_negative/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001172812, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01142_join_lc_and_nullable_in_key/ast.json b/parser/testdata/01142_join_lc_and_nullable_in_key/ast.json deleted file mode 100644 index 59496aac8e..0000000000 --- a/parser/testdata/01142_join_lc_and_nullable_in_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001739361, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01142_merge_join_lc_and_nullable_in_key/ast.json b/parser/testdata/01142_merge_join_lc_and_nullable_in_key/ast.json deleted file mode 100644 index 87794d21ff..0000000000 --- a/parser/testdata/01142_merge_join_lc_and_nullable_in_key/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001417857, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01142_with_ties_and_aliases/ast.json b/parser/testdata/01142_with_ties_and_aliases/ast.json deleted file mode 100644 index c44ed94c1c..0000000000 --- a/parser/testdata/01142_with_ties_and_aliases/ast.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function intDiv (alias value) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_20" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier value" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier value" - } - ], - - "rows": 33, - - "statistics": - { - "elapsed": 0.001754522, - "rows_read": 33, - "bytes_read": 1366 - } -} diff --git a/parser/testdata/01143_trivial_count_with_join/ast.json b/parser/testdata/01143_trivial_count_with_join/ast.json deleted file mode 100644 index 1d528c1df0..0000000000 --- a/parser/testdata/01143_trivial_count_with_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001358206, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01144_join_rewrite_with_ambiguous_column_and_view/ast.json b/parser/testdata/01144_join_rewrite_with_ambiguous_column_and_view/ast.json deleted file mode 100644 index 620a727776..0000000000 --- a/parser/testdata/01144_join_rewrite_with_ambiguous_column_and_view/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001215128, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01144_multiple_joins_rewriter_v2_and_lambdas/ast.json b/parser/testdata/01144_multiple_joins_rewriter_v2_and_lambdas/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01144_multiple_joins_rewriter_v2_and_lambdas/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01144_multiword_data_types/ast.json b/parser/testdata/01144_multiword_data_types/ast.json deleted file mode 100644 index 94dd63d50f..0000000000 --- a/parser/testdata/01144_multiword_data_types/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery multiword_types (children 1)" - }, - { - "explain": " Identifier multiword_types" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001604154, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/01145_with_fill_const/ast.json b/parser/testdata/01145_with_fill_const/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01145_with_fill_const/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01147_partial_merge_full_join/ast.json b/parser/testdata/01147_partial_merge_full_join/ast.json deleted file mode 100644 index 4b217f2d2a..0000000000 --- a/parser/testdata/01147_partial_merge_full_join/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t0 (children 1)" - }, - { - "explain": " Identifier t0" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001334466, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01148_zookeeper_path_macros_unfolding/ast.json b/parser/testdata/01148_zookeeper_path_macros_unfolding/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01148_zookeeper_path_macros_unfolding/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01149_zookeeper_mutation_stuck_after_replace_partition/ast.json b/parser/testdata/01149_zookeeper_mutation_stuck_after_replace_partition/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01149_zookeeper_mutation_stuck_after_replace_partition/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01151_storage_merge_filter_tables_by_virtual_column/ast.json b/parser/testdata/01151_storage_merge_filter_tables_by_virtual_column/ast.json deleted file mode 100644 index 246ab7ec16..0000000000 --- a/parser/testdata/01151_storage_merge_filter_tables_by_virtual_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery src_table_1 (children 1)" - }, - { - "explain": " Identifier src_table_1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001313549, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01152_cross_replication/ast.json b/parser/testdata/01152_cross_replication/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01152_cross_replication/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01153_attach_mv_uuid/ast.json b/parser/testdata/01153_attach_mv_uuid/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01153_attach_mv_uuid/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01155_rename_move_materialized_view/ast.json b/parser/testdata/01155_rename_move_materialized_view/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01155_rename_move_materialized_view/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01157_replace_table/ast.json b/parser/testdata/01157_replace_table/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01157_replace_table/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01158_zookeeper_log_long/ast.json b/parser/testdata/01158_zookeeper_log_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01158_zookeeper_log_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01159_combinators_with_parameters/ast.json b/parser/testdata/01159_combinators_with_parameters/ast.json deleted file mode 100644 index 1f60724bdb..0000000000 --- a/parser/testdata/01159_combinators_with_parameters/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function topKArrayState (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_100" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.0012498, - "rows_read": 21, - "bytes_read": 872 - } -} diff --git a/parser/testdata/01161_information_schema/ast.json b/parser/testdata/01161_information_schema/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01161_information_schema/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01163_search_case_insensetive_utf8/ast.json b/parser/testdata/01163_search_case_insensetive_utf8/ast.json deleted file mode 100644 index 32a679e048..0000000000 --- a/parser/testdata/01163_search_case_insensetive_utf8/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function positionCaseInsensitiveUTF8 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'сссссс'" - }, - { - "explain": " Literal 'Ё'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001474085, - "rows_read": 10, - "bytes_read": 403 - } -} diff --git a/parser/testdata/01164_alter_memory_database/ast.json b/parser/testdata/01164_alter_memory_database/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01164_alter_memory_database/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01165_lost_part_empty_partition/ast.json b/parser/testdata/01165_lost_part_empty_partition/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01165_lost_part_empty_partition/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01166_truncate_multiple_partitions/ast.json b/parser/testdata/01166_truncate_multiple_partitions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01166_truncate_multiple_partitions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01172_transaction_counters/ast.json b/parser/testdata/01172_transaction_counters/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01172_transaction_counters/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01173_transaction_control_queries/ast.json b/parser/testdata/01173_transaction_control_queries/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01173_transaction_control_queries/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01177_group_array_moving/ast.json b/parser/testdata/01177_group_array_moving/ast.json deleted file mode 100644 index 2309e2c8ae..0000000000 --- a/parser/testdata/01177_group_array_moving/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function groupArrayMovingSum (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_257" - }, - { - "explain": " Function groupArrayMovingSum (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_18446744073709551615" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1048575" - }, - { - "explain": " Function groupArrayMovingSum (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_9223372036854775807" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_9223372036854775807" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function remote (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '127.0.0.{1..2}'" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001399146, - "rows_read": 31, - "bytes_read": 1312 - } -} diff --git a/parser/testdata/01178_int_field_to_decimal/ast.json b/parser/testdata/01178_int_field_to_decimal/ast.json deleted file mode 100644 index 4c787523a4..0000000000 --- a/parser/testdata/01178_int_field_to_decimal/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier d" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function values (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'd Decimal(8, 8)'" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function notIn (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier d" - }, - { - "explain": " Literal Tuple_(Int64_-1, UInt64_0)" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.000996301, - "rows_read": 17, - "bytes_read": 646 - } -} diff --git a/parser/testdata/01181_db_atomic_drop_on_cluster/ast.json b/parser/testdata/01181_db_atomic_drop_on_cluster/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01181_db_atomic_drop_on_cluster/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01182_materialized_view_different_structure/ast.json b/parser/testdata/01182_materialized_view_different_structure/ast.json deleted file mode 100644 index da85fb0fcc..0000000000 --- a/parser/testdata/01182_materialized_view_different_structure/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.000977806, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01185_create_or_replace_table/ast.json b/parser/testdata/01185_create_or_replace_table/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01185_create_or_replace_table/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01186_conversion_to_nullable/ast.json b/parser/testdata/01186_conversion_to_nullable/ast.json deleted file mode 100644 index 01468ee86f..0000000000 --- a/parser/testdata/01186_conversion_to_nullable/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function values (children 1)" - }, - { - "explain": " ExpressionList (children 6)" - }, - { - "explain": " Literal 'x Nullable(String)'" - }, - { - "explain": " Literal '42'" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal '0'" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal '256'" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001203284, - "rows_read": 18, - "bytes_read": 657 - } -} diff --git a/parser/testdata/01188_attach_table_from_path/ast.json b/parser/testdata/01188_attach_table_from_path/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01188_attach_table_from_path/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01189_create_as_table_as_table_function/ast.json b/parser/testdata/01189_create_as_table_as_table_function/ast.json deleted file mode 100644 index 00720608d8..0000000000 --- a/parser/testdata/01189_create_as_table_as_table_function/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table2 (children 1)" - }, - { - "explain": " Identifier table2" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00119242, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/01191_rename_dictionary/ast.json b/parser/testdata/01191_rename_dictionary/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01191_rename_dictionary/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01197_summing_enum/ast.json b/parser/testdata/01197_summing_enum/ast.json deleted file mode 100644 index 33c2180a4e..0000000000 --- a/parser/testdata/01197_summing_enum/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery summing (children 1)" - }, - { - "explain": " Identifier summing" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001037701, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01198_plus_inf/ast.json b/parser/testdata/01198_plus_inf/ast.json deleted file mode 100644 index cbba143357..0000000000 --- a/parser/testdata/01198_plus_inf/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFloat64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['+inf', '+Inf', '+INF', '+infinity', '+Infinity']" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001172675, - "rows_read": 9, - "bytes_read": 399 - } -} diff --git a/parser/testdata/01199_url_functions_path_without_schema_yiurule/ast.json b/parser/testdata/01199_url_functions_path_without_schema_yiurule/ast.json deleted file mode 100644 index f051b0e1c4..0000000000 --- a/parser/testdata/01199_url_functions_path_without_schema_yiurule/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function path (alias Path) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'www.example.com:443\/a\/b\/c'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001274891, - "rows_read": 7, - "bytes_read": 289 - } -} diff --git a/parser/testdata/01200_mutations_memory_consumption/ast.json b/parser/testdata/01200_mutations_memory_consumption/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01200_mutations_memory_consumption/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01201_drop_column_compact_part_replicated_zookeeper_long/ast.json b/parser/testdata/01201_drop_column_compact_part_replicated_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01201_drop_column_compact_part_replicated_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01201_read_single_thread_in_order/ast.json b/parser/testdata/01201_read_single_thread_in_order/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01201_read_single_thread_in_order/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01202_arrayROCAUC_special/ast.json b/parser/testdata/01202_arrayROCAUC_special/ast.json deleted file mode 100644 index 9ee65685f1..0000000000 --- a/parser/testdata/01202_arrayROCAUC_special/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayROCAUC (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001042266, - "rows_read": 10, - "bytes_read": 374 - } -} diff --git a/parser/testdata/01210_drop_view/ast.json b/parser/testdata/01210_drop_view/ast.json deleted file mode 100644 index 32053a31b7..0000000000 --- a/parser/testdata/01210_drop_view/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery v_01210 (children 1)" - }, - { - "explain": " Identifier v_01210" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001236516, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01211_optimize_skip_unused_shards_type_mismatch/ast.json b/parser/testdata/01211_optimize_skip_unused_shards_type_mismatch/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01211_optimize_skip_unused_shards_type_mismatch/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01212_empty_join_and_totals/ast.json b/parser/testdata/01212_empty_join_and_totals/ast.json deleted file mode 100644 index 2f7a6dbfc7..0000000000 --- a/parser/testdata/01212_empty_join_and_totals/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one (alias t1)" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001183562, - "rows_read": 9, - "bytes_read": 355 - } -} diff --git a/parser/testdata/01213_alter_rename_column/ast.json b/parser/testdata/01213_alter_rename_column/ast.json deleted file mode 100644 index bb7e1f1b12..0000000000 --- a/parser/testdata/01213_alter_rename_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_for_rename (children 1)" - }, - { - "explain": " Identifier table_for_rename" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001067459, - "rows_read": 2, - "bytes_read": 84 - } -} diff --git a/parser/testdata/01213_alter_rename_compact_part/ast.json b/parser/testdata/01213_alter_rename_compact_part/ast.json deleted file mode 100644 index ed8cbc5147..0000000000 --- a/parser/testdata/01213_alter_rename_compact_part/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_with_compact_parts (children 1)" - }, - { - "explain": " Identifier table_with_compact_parts" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001607191, - "rows_read": 2, - "bytes_read": 100 - } -} diff --git a/parser/testdata/01213_alter_rename_nested/ast.json b/parser/testdata/01213_alter_rename_nested/ast.json deleted file mode 100644 index d548ff4986..0000000000 --- a/parser/testdata/01213_alter_rename_nested/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_for_rename_nested (children 1)" - }, - { - "explain": " Identifier table_for_rename_nested" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001247185, - "rows_read": 2, - "bytes_read": 98 - } -} diff --git a/parser/testdata/01213_alter_rename_primary_key_zookeeper_long/ast.json b/parser/testdata/01213_alter_rename_primary_key_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01213_alter_rename_primary_key_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01213_alter_rename_with_default_zookeeper_long/ast.json b/parser/testdata/01213_alter_rename_with_default_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01213_alter_rename_with_default_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01213_alter_table_rename_nested/ast.json b/parser/testdata/01213_alter_table_rename_nested/ast.json deleted file mode 100644 index 12f9d530ad..0000000000 --- a/parser/testdata/01213_alter_table_rename_nested/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_for_rename_nested (children 1)" - }, - { - "explain": " Identifier table_for_rename_nested" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001049928, - "rows_read": 2, - "bytes_read": 98 - } -} diff --git a/parser/testdata/01213_optimize_skip_unused_shards_DISTINCT/ast.json b/parser/testdata/01213_optimize_skip_unused_shards_DISTINCT/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01213_optimize_skip_unused_shards_DISTINCT/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01213_point_in_Myanmar/ast.json b/parser/testdata/01213_point_in_Myanmar/ast.json deleted file mode 100644 index 3bef6379d6..0000000000 --- a/parser/testdata/01213_point_in_Myanmar/ast.json +++ /dev/null @@ -1,379 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function pointInPolygon (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(Float64_97.66905, Float64_16.5026053)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 110)" - }, - { - "explain": " Literal Tuple_(Float64_97.66905, Float64_16.5026053)" - }, - { - "explain": " Literal Tuple_(Float64_97.667878, Float64_16.4979175)" - }, - { - "explain": " Literal Tuple_(Float64_97.661433, Float64_16.4917645)" - }, - { - "explain": " Literal Tuple_(Float64_97.656745, Float64_16.4859047)" - }, - { - "explain": " Literal Tuple_(Float64_97.656745, Float64_16.4818029)" - }, - { - "explain": " Literal Tuple_(Float64_97.658796, Float64_16.4785801)" - }, - { - "explain": " Literal Tuple_(Float64_97.665535, Float64_16.4753572)" - }, - { - "explain": " Literal Tuple_(Float64_97.670808, Float64_16.4730135)" - }, - { - "explain": " Literal Tuple_(Float64_97.676082, Float64_16.4697907)" - }, - { - "explain": " Literal Tuple_(Float64_97.680477, Float64_16.4677398)" - }, - { - "explain": " Literal Tuple_(Float64_97.68575, Float64_16.4686189)" - }, - { - "explain": " Literal Tuple_(Float64_97.689559, Float64_16.4727207)" - }, - { - "explain": " Literal Tuple_(Float64_97.69454, Float64_16.4744788)" - }, - { - "explain": " Literal Tuple_(Float64_97.698055, Float64_16.4747718)" - }, - { - "explain": " Literal Tuple_(Float64_97.702157, Float64_16.4724279)" - }, - { - "explain": " Literal Tuple_(Float64_97.703036, Float64_16.4683261)" - }, - { - "explain": " Literal Tuple_(Float64_97.703036, Float64_16.4633453)" - }, - { - "explain": " Literal Tuple_(Float64_97.702451, Float64_16.4594354)" - }, - { - "explain": " Literal Tuple_(Float64_97.699533, Float64_16.4539205)" - }, - { - "explain": " Literal Tuple_(Float64_97.699106, Float64_16.4521467)" - }, - { - "explain": " Literal Tuple_(Float64_97.699896, Float64_16.4500714)" - }, - { - "explain": " Literal Tuple_(Float64_97.701852, Float64_16.4474887)" - }, - { - "explain": " Literal Tuple_(Float64_97.701272, Float64_16.4460233)" - }, - { - "explain": " Literal Tuple_(Float64_97.699896, Float64_16.4439216)" - }, - { - "explain": " Literal Tuple_(Float64_97.699857, Float64_16.4425297)" - }, - { - "explain": " Literal Tuple_(Float64_97.700705, Float64_16.4417585)" - }, - { - "explain": " Literal Tuple_(Float64_97.699266, Float64_16.4404319)" - }, - { - "explain": " Literal Tuple_(Float64_97.696817, Float64_16.439585)" - }, - { - "explain": " Literal Tuple_(Float64_97.69468, Float64_16.4391501)" - }, - { - "explain": " Literal Tuple_(Float64_97.690854, Float64_16.439294)" - }, - { - "explain": " Literal Tuple_(Float64_97.686571, Float64_16.4407665)" - }, - { - "explain": " Literal Tuple_(Float64_97.683728, Float64_16.4428458)" - }, - { - "explain": " Literal Tuple_(Float64_97.680647, Float64_16.444719)" - }, - { - "explain": " Literal Tuple_(Float64_97.678369, Float64_16.445322)" - }, - { - "explain": " Literal Tuple_(Float64_97.675195, Float64_16.4448526)" - }, - { - "explain": " Literal Tuple_(Float64_97.672627, Float64_16.4435941)" - }, - { - "explain": " Literal Tuple_(Float64_97.670568, Float64_16.4419727)" - }, - { - "explain": " Literal Tuple_(Float64_97.667276, Float64_16.4410039)" - }, - { - "explain": " Literal Tuple_(Float64_97.666215, Float64_16.439402)" - }, - { - "explain": " Literal Tuple_(Float64_97.66599, Float64_16.43656)" - }, - { - "explain": " Literal Tuple_(Float64_97.664579, Float64_16.435632)" - }, - { - "explain": " Literal Tuple_(Float64_97.66195, Float64_16.4344612)" - }, - { - "explain": " Literal Tuple_(Float64_97.659174, Float64_16.4324549)" - }, - { - "explain": " Literal Tuple_(Float64_97.658693, Float64_16.4290256)" - }, - { - "explain": " Literal Tuple_(Float64_97.659289, Float64_16.4246502)" - }, - { - "explain": " Literal Tuple_(Float64_97.660882, Float64_16.422609)" - }, - { - "explain": " Literal Tuple_(Float64_97.663533, Float64_16.4225057)" - }, - { - "explain": " Literal Tuple_(Float64_97.666402, Float64_16.4210711)" - }, - { - "explain": " Literal Tuple_(Float64_97.67148, Float64_16.4170395)" - }, - { - "explain": " Literal Tuple_(Float64_97.673433, Float64_16.4146478)" - }, - { - "explain": " Literal Tuple_(Float64_97.674184, Float64_16.4124121)" - }, - { - "explain": " Literal Tuple_(Float64_97.6742, Float64_16.4085257)" - }, - { - "explain": " Literal Tuple_(Float64_97.674894, Float64_16.4055148)" - }, - { - "explain": " Literal Tuple_(Float64_97.675906, Float64_16.4019452)" - }, - { - "explain": " Literal Tuple_(Float64_97.675287, Float64_16.3996593)" - }, - { - "explain": " Literal Tuple_(Float64_97.675062, Float64_16.3963334)" - }, - { - "explain": " Literal Tuple_(Float64_97.675798, Float64_16.3936434)" - }, - { - "explain": " Literal Tuple_(Float64_97.675676, Float64_16.3909321)" - }, - { - "explain": " Literal Tuple_(Float64_97.67508, Float64_16.386655)" - }, - { - "explain": " Literal Tuple_(Float64_97.679839, Float64_16.386241)" - }, - { - "explain": " Literal Tuple_(Float64_97.689403, Float64_16.3726191)" - }, - { - "explain": " Literal Tuple_(Float64_97.692011, Float64_16.372909)" - }, - { - "explain": " Literal Tuple_(Float64_97.696359, Float64_16.3679819)" - }, - { - "explain": " Literal Tuple_(Float64_97.699866, Float64_16.360968)" - }, - { - "explain": " Literal Tuple_(Float64_97.697233, Float64_16.3609438)" - }, - { - "explain": " Literal Tuple_(Float64_97.693077, Float64_16.3596272)" - }, - { - "explain": " Literal Tuple_(Float64_97.686631, Float64_16.3584552)" - }, - { - "explain": " Literal Tuple_(Float64_97.68165, Float64_16.3558182)" - }, - { - "explain": " Literal Tuple_(Float64_97.674619, Float64_16.3496653)" - }, - { - "explain": " Literal Tuple_(Float64_97.667588, Float64_16.3482003)" - }, - { - "explain": " Literal Tuple_(Float64_97.664072, Float64_16.3502511)" - }, - { - "explain": " Literal Tuple_(Float64_97.659384, Float64_16.3540599)" - }, - { - "explain": " Literal Tuple_(Float64_97.652353, Float64_16.3578686)" - }, - { - "explain": " Literal Tuple_(Float64_97.649716, Float64_16.3625565)" - }, - { - "explain": " Literal Tuple_(Float64_97.650595, Float64_16.3672443)" - }, - { - "explain": " Literal Tuple_(Float64_97.65206, Float64_16.3701742)" - }, - { - "explain": " Literal Tuple_(Float64_97.65206, Float64_16.3733971)" - }, - { - "explain": " Literal Tuple_(Float64_97.651181, Float64_16.3760339)" - }, - { - "explain": " Literal Tuple_(Float64_97.646493, Float64_16.3763268)" - }, - { - "explain": " Literal Tuple_(Float64_97.6462, Float64_16.3801357)" - }, - { - "explain": " Literal Tuple_(Float64_97.646786, Float64_16.3851165)" - }, - { - "explain": " Literal Tuple_(Float64_97.643563, Float64_16.3883393)" - }, - { - "explain": " Literal Tuple_(Float64_97.638583, Float64_16.3889252)" - }, - { - "explain": " Literal Tuple_(Float64_97.636239, Float64_16.392148)" - }, - { - "explain": " Literal Tuple_(Float64_97.630379, Float64_16.3933199)" - }, - { - "explain": " Literal Tuple_(Float64_97.629132, Float64_16.3964903)" - }, - { - "explain": " Literal Tuple_(Float64_97.624347, Float64_16.4056104)" - }, - { - "explain": " Literal Tuple_(Float64_97.615377, Float64_16.4165245)" - }, - { - "explain": " Literal Tuple_(Float64_97.614779, Float64_16.4229534)" - }, - { - "explain": " Literal Tuple_(Float64_97.611938, Float64_16.4335685)" - }, - { - "explain": " Literal Tuple_(Float64_97.613882, Float64_16.4410439)" - }, - { - "explain": " Literal Tuple_(Float64_97.619713, Float64_16.4461272)" - }, - { - "explain": " Literal Tuple_(Float64_97.62375, Float64_16.4542007)" - }, - { - "explain": " Literal Tuple_(Float64_97.62345, Float64_16.4640683)" - }, - { - "explain": " Literal Tuple_(Float64_97.618965, Float64_16.4793181)" - }, - { - "explain": " Literal Tuple_(Float64_97.617321, Float64_16.4884382)" - }, - { - "explain": " Literal Tuple_(Float64_97.617747, Float64_16.4985751)" - }, - { - "explain": " Literal Tuple_(Float64_97.623301, Float64_16.5026416)" - }, - { - "explain": " Literal Tuple_(Float64_97.629303, Float64_16.5016624)" - }, - { - "explain": " Literal Tuple_(Float64_97.63272, Float64_16.4986048)" - }, - { - "explain": " Literal Tuple_(Float64_97.640862, Float64_16.498226)" - }, - { - "explain": " Literal Tuple_(Float64_97.647134, Float64_16.5006382)" - }, - { - "explain": " Literal Tuple_(Float64_97.650873, Float64_16.5051263)" - }, - { - "explain": " Literal Tuple_(Float64_97.654987, Float64_16.5089598)" - }, - { - "explain": " Literal Tuple_(Float64_97.65639, Float64_16.5118583)" - }, - { - "explain": " Literal Tuple_(Float64_97.658166, Float64_16.5160658)" - }, - { - "explain": " Literal Tuple_(Float64_97.660395, Float64_16.5197566)" - }, - { - "explain": " Literal Tuple_(Float64_97.66612, Float64_16.5140318)" - }, - { - "explain": " Literal Tuple_(Float64_97.668757, Float64_16.507879)" - }, - { - "explain": " Literal Tuple_(Float64_97.66905, Float64_16.5026053)" - } - ], - - "rows": 119, - - "statistics": - { - "elapsed": 0.002289116, - "rows_read": 119, - "bytes_read": 7941 - } -} diff --git a/parser/testdata/01214_point_in_Mecca/ast.json b/parser/testdata/01214_point_in_Mecca/ast.json deleted file mode 100644 index ef53b1bd8c..0000000000 --- a/parser/testdata/01214_point_in_Mecca/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'Outer part of Mecca'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001184562, - "rows_read": 5, - "bytes_read": 190 - } -} diff --git a/parser/testdata/01214_test_storage_merge_aliases_with_where/ast.json b/parser/testdata/01214_test_storage_merge_aliases_with_where/ast.json deleted file mode 100644 index fd63ac9f44..0000000000 --- a/parser/testdata/01214_test_storage_merge_aliases_with_where/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tt1 (children 1)" - }, - { - "explain": " Identifier tt1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001247391, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01220_scalar_optimization_in_alter/ast.json b/parser/testdata/01220_scalar_optimization_in_alter/ast.json deleted file mode 100644 index c28ef607ad..0000000000 --- a/parser/testdata/01220_scalar_optimization_in_alter/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery cdp_segments (children 1)" - }, - { - "explain": " Identifier cdp_segments" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00152372, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01221_system_settings/ast.json b/parser/testdata/01221_system_settings/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01221_system_settings/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01222_system_codecs/ast.json b/parser/testdata/01222_system_codecs/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01222_system_codecs/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01223_dist_on_dist/ast.json b/parser/testdata/01223_dist_on_dist/ast.json deleted file mode 100644 index a4aa9bbee2..0000000000 --- a/parser/testdata/01223_dist_on_dist/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery merge_dist_01223 (children 1)" - }, - { - "explain": " Identifier merge_dist_01223" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001302458, - "rows_read": 2, - "bytes_read": 84 - } -} diff --git a/parser/testdata/01224_no_superfluous_dict_reload/ast.json b/parser/testdata/01224_no_superfluous_dict_reload/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01224_no_superfluous_dict_reload/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01225_drop_dictionary_as_table/ast.json b/parser/testdata/01225_drop_dictionary_as_table/ast.json deleted file mode 100644 index e5f93b4e5e..0000000000 --- a/parser/testdata/01225_drop_dictionary_as_table/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery dict_data (children 3)" - }, - { - "explain": " Identifier dict_data" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " ColumnDeclaration key (children 1)" - }, - { - "explain": " DataType UInt64" - }, - { - "explain": " ColumnDeclaration val (children 1)" - }, - { - "explain": " DataType UInt64" - }, - { - "explain": " Storage definition (children 1)" - }, - { - "explain": " Function Memory (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001200678, - "rows_read": 11, - "bytes_read": 395 - } -} diff --git a/parser/testdata/01225_show_create_table_from_dictionary/ast.json b/parser/testdata/01225_show_create_table_from_dictionary/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01225_show_create_table_from_dictionary/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01226_dist_on_dist_global_in/ast.json b/parser/testdata/01226_dist_on_dist_global_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01226_dist_on_dist_global_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01227_distributed_global_in_issue_2610/ast.json b/parser/testdata/01227_distributed_global_in_issue_2610/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01227_distributed_global_in_issue_2610/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01227_distributed_merge_global_in_primary_key/ast.json b/parser/testdata/01227_distributed_merge_global_in_primary_key/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01227_distributed_merge_global_in_primary_key/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01230_join_get_truncate/ast.json b/parser/testdata/01230_join_get_truncate/ast.json deleted file mode 100644 index 16ab4b8c2c..0000000000 --- a/parser/testdata/01230_join_get_truncate/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery join_test (children 1)" - }, - { - "explain": " Identifier join_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001766726, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01231_distributed_aggregation_memory_efficient_mix_levels/ast.json b/parser/testdata/01231_distributed_aggregation_memory_efficient_mix_levels/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01231_distributed_aggregation_memory_efficient_mix_levels/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01231_log_queries_min_type/ast.json b/parser/testdata/01231_log_queries_min_type/ast.json deleted file mode 100644 index 65297749bd..0000000000 --- a/parser/testdata/01231_log_queries_min_type/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001750356, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01231_markdown_format/ast.json b/parser/testdata/01231_markdown_format/ast.json deleted file mode 100644 index 9929ee9964..0000000000 --- a/parser/testdata/01231_markdown_format/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery markdown (children 1)" - }, - { - "explain": " Identifier markdown" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001234344, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01231_operator_null_in/ast.json b/parser/testdata/01231_operator_null_in/ast.json deleted file mode 100644 index 460c034258..0000000000 --- a/parser/testdata/01231_operator_null_in/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery null_in (children 1)" - }, - { - "explain": " Identifier null_in" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001376231, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01232_extremes/ast.json b/parser/testdata/01232_extremes/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01232_extremes/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01232_untuple/ast.json b/parser/testdata/01232_untuple/ast.json deleted file mode 100644 index c805f162b4..0000000000 --- a/parser/testdata/01232_untuple/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001659197, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01234_to_string_monotonic/ast.json b/parser/testdata/01234_to_string_monotonic/ast.json deleted file mode 100644 index 8bc8c7ab32..0000000000 --- a/parser/testdata/01234_to_string_monotonic/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001476331, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01236_graphite_mt/ast.json b/parser/testdata/01236_graphite_mt/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01236_graphite_mt/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01240_join_get_or_null/ast.json b/parser/testdata/01240_join_get_or_null/ast.json deleted file mode 100644 index d08794beeb..0000000000 --- a/parser/testdata/01240_join_get_or_null/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery join_test (children 1)" - }, - { - "explain": " Identifier join_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00119669, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01244_optimize_distributed_group_by_sharding_key/ast.json b/parser/testdata/01244_optimize_distributed_group_by_sharding_key/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01244_optimize_distributed_group_by_sharding_key/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01245_distributed_group_by_no_merge_with-extremes_and_totals/ast.json b/parser/testdata/01245_distributed_group_by_no_merge_with-extremes_and_totals/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01245_distributed_group_by_no_merge_with-extremes_and_totals/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01245_limit_infinite_sources/ast.json b/parser/testdata/01245_limit_infinite_sources/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01245_limit_infinite_sources/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01246_extractAllGroupsHorizontal/ast.json b/parser/testdata/01246_extractAllGroupsHorizontal/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01246_extractAllGroupsHorizontal/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01246_extractAllGroupsVertical/ast.json b/parser/testdata/01246_extractAllGroupsVertical/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01246_extractAllGroupsVertical/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01246_finalize_aggregation_race/ast.json b/parser/testdata/01246_finalize_aggregation_race/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01246_finalize_aggregation_race/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01246_least_greatest_generic/ast.json b/parser/testdata/01246_least_greatest_generic/ast.json deleted file mode 100644 index 4f7e30b65a..0000000000 --- a/parser/testdata/01246_least_greatest_generic/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function least (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " Literal 'world'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001002197, - "rows_read": 8, - "bytes_read": 286 - } -} diff --git a/parser/testdata/01247_least_greatest_filimonov/ast.json b/parser/testdata/01247_least_greatest_filimonov/ast.json deleted file mode 100644 index 347d7e98a8..0000000000 --- a/parser/testdata/01247_least_greatest_filimonov/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function GREATEST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.000993166, - "rows_read": 8, - "bytes_read": 291 - } -} diff --git a/parser/testdata/01247_optimize_distributed_group_by_sharding_key_dist_on_dist/ast.json b/parser/testdata/01247_optimize_distributed_group_by_sharding_key_dist_on_dist/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01247_optimize_distributed_group_by_sharding_key_dist_on_dist/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01247_some_msan_crashs_from_22517/ast.json b/parser/testdata/01247_some_msan_crashs_from_22517/ast.json deleted file mode 100644 index c15497472f..0000000000 --- a/parser/testdata/01247_some_msan_crashs_from_22517/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function ignore (alias a) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Identifier a (alias b)" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001088912, - "rows_read": 22, - "bytes_read": 954 - } -} diff --git a/parser/testdata/01248_least_greatest_mixed_const/ast.json b/parser/testdata/01248_least_greatest_mixed_const/ast.json deleted file mode 100644 index 36c2b29c1d..0000000000 --- a/parser/testdata/01248_least_greatest_mixed_const/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function least (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_6" - }, - { - "explain": " Function greatest (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_6" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001319347, - "rows_read": 20, - "bytes_read": 745 - } -} diff --git a/parser/testdata/01249_bad_arguments_for_bloom_filter/ast.json b/parser/testdata/01249_bad_arguments_for_bloom_filter/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01249_bad_arguments_for_bloom_filter/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01250_fixed_string_comparison/ast.json b/parser/testdata/01250_fixed_string_comparison/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01250_fixed_string_comparison/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01251_dict_is_in_infinite_loop/ast.json b/parser/testdata/01251_dict_is_in_infinite_loop/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01251_dict_is_in_infinite_loop/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01251_string_comparison/ast.json b/parser/testdata/01251_string_comparison/ast.json deleted file mode 100644 index 073eb38b27..0000000000 --- a/parser/testdata/01251_string_comparison/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function isConstant (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'a'" - }, - { - "explain": " Literal 'b'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.00146075, - "rows_read": 10, - "bytes_read": 371 - } -} diff --git a/parser/testdata/01252_weird_time_zone/ast.json b/parser/testdata/01252_weird_time_zone/ast.json deleted file mode 100644 index 43f99bd4de..0000000000 --- a/parser/testdata/01252_weird_time_zone/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal 'Pacific\/Kiritimati'" - }, - { - "explain": " Function toDateTime (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '2020-01-02 03:04:05'" - }, - { - "explain": " Literal 'Pacific\/Kiritimati'" - }, - { - "explain": " Function toStartOfDay (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toHour (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001257948, - "rows_read": 15, - "bytes_read": 586 - } -} diff --git a/parser/testdata/01253_subquery_in_aggregate_function_JustStranger/ast.json b/parser/testdata/01253_subquery_in_aggregate_function_JustStranger/ast.json deleted file mode 100644 index c0f72aad7f..0000000000 --- a/parser/testdata/01253_subquery_in_aggregate_function_JustStranger/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_table (children 1)" - }, - { - "explain": " Identifier test_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001158106, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01254_array_of_unnamed_tuples/ast.json b/parser/testdata/01254_array_of_unnamed_tuples/ast.json deleted file mode 100644 index f802d556d5..0000000000 --- a/parser/testdata/01254_array_of_unnamed_tuples/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mass_table_457 (children 1)" - }, - { - "explain": " Identifier mass_table_457" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000904143, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01254_dict_create_without_db/ast.json b/parser/testdata/01254_dict_create_without_db/ast.json deleted file mode 100644 index b68fc13c44..0000000000 --- a/parser/testdata/01254_dict_create_without_db/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery dict_data (children 3)" - }, - { - "explain": " Identifier dict_data" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " ColumnDeclaration key (children 1)" - }, - { - "explain": " DataType UInt64" - }, - { - "explain": " ColumnDeclaration val (children 1)" - }, - { - "explain": " DataType UInt64" - }, - { - "explain": " Storage definition (children 1)" - }, - { - "explain": " Function Memory (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001156797, - "rows_read": 11, - "bytes_read": 395 - } -} diff --git a/parser/testdata/01254_dict_load_after_detach_attach/ast.json b/parser/testdata/01254_dict_load_after_detach_attach/ast.json deleted file mode 100644 index ae83491c5f..0000000000 --- a/parser/testdata/01254_dict_load_after_detach_attach/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery dict_data (children 3)" - }, - { - "explain": " Identifier dict_data" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " ColumnDeclaration key (children 1)" - }, - { - "explain": " DataType UInt64" - }, - { - "explain": " ColumnDeclaration val (children 1)" - }, - { - "explain": " DataType UInt64" - }, - { - "explain": " Storage definition (children 1)" - }, - { - "explain": " Function Memory (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001114798, - "rows_read": 11, - "bytes_read": 395 - } -} diff --git a/parser/testdata/01255_geo_types_livace/ast.json b/parser/testdata/01255_geo_types_livace/ast.json deleted file mode 100644 index f4c409bb75..0000000000 --- a/parser/testdata/01255_geo_types_livace/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tutorial (children 1)" - }, - { - "explain": " Identifier tutorial" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00103143, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01256_misspell_layout_name_podshumok/ast.json b/parser/testdata/01256_misspell_layout_name_podshumok/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01256_misspell_layout_name_podshumok/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01256_negative_generate_random/ast.json b/parser/testdata/01256_negative_generate_random/ast.json deleted file mode 100644 index 9c298af793..0000000000 --- a/parser/testdata/01256_negative_generate_random/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function generateRandom (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal 'i8'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001107181, - "rows_read": 14, - "bytes_read": 522 - } -} diff --git a/parser/testdata/01257_dictionary_mismatch_types/ast.json b/parser/testdata/01257_dictionary_mismatch_types/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01257_dictionary_mismatch_types/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01258_wrong_cast_filimonov/ast.json b/parser/testdata/01258_wrong_cast_filimonov/ast.json deleted file mode 100644 index 0d845ff0cd..0000000000 --- a/parser/testdata/01258_wrong_cast_filimonov/ast.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery x (children 3)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " ColumnDeclaration id (children 1)" - }, - { - "explain": " DataType UInt64" - }, - { - "explain": " ColumnDeclaration t (children 2)" - }, - { - "explain": " DataType AggregateFunction (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier argMax" - }, - { - "explain": " DataType Enum8 (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'Male'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'Female'" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " DataType UInt64" - }, - { - "explain": " Function arrayReduce (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'argMaxState'" - }, - { - "explain": " Literal Array_['cast(-1, \\'Enum8(\\'\\' = -1, \\'Male\\' = 1, \\'Female\\' = 2)']" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUInt64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Storage definition (children 2)" - }, - { - "explain": " Function MergeTree" - }, - { - "explain": " Identifier id" - } - ], - - "rows": 37, - - "statistics": - { - "elapsed": 0.001408918, - "rows_read": 37, - "bytes_read": 1461 - } -} diff --git a/parser/testdata/01259_combinator_distinct/ast.json b/parser/testdata/01259_combinator_distinct/ast.json deleted file mode 100644 index edea91a42a..0000000000 --- a/parser/testdata/01259_combinator_distinct/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumDistinct (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers_mt (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_100000" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001342799, - "rows_read": 13, - "bytes_read": 525 - } -} diff --git a/parser/testdata/01259_combinator_distinct_distributed/ast.json b/parser/testdata/01259_combinator_distinct_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01259_combinator_distinct_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01259_datetime64_ubsan/ast.json b/parser/testdata/01259_datetime64_ubsan/ast.json deleted file mode 100644 index b9aecf6a28..0000000000 --- a/parser/testdata/01259_datetime64_ubsan/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function now64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.0011475, - "rows_read": 7, - "bytes_read": 259 - } -} diff --git a/parser/testdata/01259_dictionary_custom_settings_ddl/ast.json b/parser/testdata/01259_dictionary_custom_settings_ddl/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01259_dictionary_custom_settings_ddl/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01260_ubsan_decimal_parse/ast.json b/parser/testdata/01260_ubsan_decimal_parse/ast.json deleted file mode 100644 index 22850c3490..0000000000 --- a/parser/testdata/01260_ubsan_decimal_parse/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal32OrZero (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Int64_-7174046" - }, - { - "explain": " Literal 'String'" - }, - { - "explain": " Literal UInt64_6" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.00113122, - "rows_read": 11, - "bytes_read": 422 - } -} diff --git a/parser/testdata/01262_fractional_timezone_near_start_of_epoch/ast.json b/parser/testdata/01262_fractional_timezone_near_start_of_epoch/ast.json deleted file mode 100644 index 0206a1c16c..0000000000 --- a/parser/testdata/01262_fractional_timezone_near_start_of_epoch/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_10000" - }, - { - "explain": " Literal 'Asia\/Calcutta'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001220828, - "rows_read": 8, - "bytes_read": 304 - } -} diff --git a/parser/testdata/01262_low_cardinality_remove/ast.json b/parser/testdata/01262_low_cardinality_remove/ast.json deleted file mode 100644 index b157a527c5..0000000000 --- a/parser/testdata/01262_low_cardinality_remove/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery testView (children 1)" - }, - { - "explain": " Identifier testView" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001268584, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01263_type_conversion_nvartolomei/ast.json b/parser/testdata/01263_type_conversion_nvartolomei/ast.json deleted file mode 100644 index 4ad0951d32..0000000000 --- a/parser/testdata/01263_type_conversion_nvartolomei/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery m (children 1)" - }, - { - "explain": " Identifier m" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001317891, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01264_nested_baloo_bear/ast.json b/parser/testdata/01264_nested_baloo_bear/ast.json deleted file mode 100644 index 1247862b68..0000000000 --- a/parser/testdata/01264_nested_baloo_bear/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery LOG_T (children 1)" - }, - { - "explain": " Identifier LOG_T" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00147534, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01265_datetime_string_comparison_felix_mueller/ast.json b/parser/testdata/01265_datetime_string_comparison_felix_mueller/ast.json deleted file mode 100644 index c02e6b3101..0000000000 --- a/parser/testdata/01265_datetime_string_comparison_felix_mueller/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tztest (children 1)" - }, - { - "explain": " Identifier tztest" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001378507, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/01266_default_prewhere_reqq/ast.json b/parser/testdata/01266_default_prewhere_reqq/ast.json deleted file mode 100644 index 0658fe3a67..0000000000 --- a/parser/testdata/01266_default_prewhere_reqq/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001237857, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01267_alter_default_key_columns_zookeeper_long/ast.json b/parser/testdata/01267_alter_default_key_columns_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01267_alter_default_key_columns_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01268_DateTime64_in_WHERE/ast.json b/parser/testdata/01268_DateTime64_in_WHERE/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01268_DateTime64_in_WHERE/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01268_data_numeric_parameters/ast.json b/parser/testdata/01268_data_numeric_parameters/ast.json deleted file mode 100644 index bceb854124..0000000000 --- a/parser/testdata/01268_data_numeric_parameters/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ints (children 1)" - }, - { - "explain": " Identifier ints" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000951471, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01268_dictionary_direct_layout/ast.json b/parser/testdata/01268_dictionary_direct_layout/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01268_dictionary_direct_layout/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01268_mergine_sorted_limit/ast.json b/parser/testdata/01268_mergine_sorted_limit/ast.json deleted file mode 100644 index c261ec826b..0000000000 --- a/parser/testdata/01268_mergine_sorted_limit/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab (children 1)" - }, - { - "explain": " Identifier tab" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00111811, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01268_mv_scalars/ast.json b/parser/testdata/01268_mv_scalars/ast.json deleted file mode 100644 index 1c7bbbd2c3..0000000000 --- a/parser/testdata/01268_mv_scalars/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery dest_table_mv (children 1)" - }, - { - "explain": " Identifier dest_table_mv" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00131625, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01268_shard_avgweighted/ast.json b/parser/testdata/01268_shard_avgweighted/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01268_shard_avgweighted/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01269_alias_type_differs/ast.json b/parser/testdata/01269_alias_type_differs/ast.json deleted file mode 100644 index 91d9602fd6..0000000000 --- a/parser/testdata/01269_alias_type_differs/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data_01269 (children 1)" - }, - { - "explain": " Identifier data_01269" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001172477, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01269_create_with_null/ast.json b/parser/testdata/01269_create_with_null/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01269_create_with_null/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01269_toStartOfSecond/ast.json b/parser/testdata/01269_toStartOfSecond/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01269_toStartOfSecond/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01270_optimize_skip_unused_shards_low_cardinality/ast.json b/parser/testdata/01270_optimize_skip_unused_shards_low_cardinality/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01270_optimize_skip_unused_shards_low_cardinality/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01271_optimize_arithmetic_operations_in_aggr_func_long/ast.json b/parser/testdata/01271_optimize_arithmetic_operations_in_aggr_func_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01271_optimize_arithmetic_operations_in_aggr_func_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01271_optimize_arithmetic_operations_in_aggr_func_with_alias/ast.json b/parser/testdata/01271_optimize_arithmetic_operations_in_aggr_func_with_alias/ast.json deleted file mode 100644 index c76a91d0da..0000000000 --- a/parser/testdata/01271_optimize_arithmetic_operations_in_aggr_func_with_alias/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001625881, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01271_show_privileges/ast.json b/parser/testdata/01271_show_privileges/ast.json deleted file mode 100644 index 835374137b..0000000000 --- a/parser/testdata/01271_show_privileges/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "ShowPrivilegesQuery" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001139246, - "rows_read": 1, - "bytes_read": 27 - } -} diff --git a/parser/testdata/01272_offset_without_limit/ast.json b/parser/testdata/01272_offset_without_limit/ast.json deleted file mode 100644 index c4d9a98489..0000000000 --- a/parser/testdata/01272_offset_without_limit/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery offset_without_limit (children 1)" - }, - { - "explain": " Identifier offset_without_limit" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001219041, - "rows_read": 2, - "bytes_read": 92 - } -} diff --git a/parser/testdata/01272_suspicious_codecs/ast.json b/parser/testdata/01272_suspicious_codecs/ast.json deleted file mode 100644 index d395b35dae..0000000000 --- a/parser/testdata/01272_suspicious_codecs/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery codecs (children 1)" - }, - { - "explain": " Identifier codecs" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001277686, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/01272_totals_and_filter_bug/ast.json b/parser/testdata/01272_totals_and_filter_bug/ast.json deleted file mode 100644 index 349f969ec8..0000000000 --- a/parser/testdata/01272_totals_and_filter_bug/ast.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Set" - } - ], - - "rows": 29, - - "statistics": - { - "elapsed": 0.001576097, - "rows_read": 29, - "bytes_read": 1159 - } -} diff --git a/parser/testdata/01273_extractGroups/ast.json b/parser/testdata/01273_extractGroups/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01273_extractGroups/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01273_h3EdgeAngle_range_check/ast.json b/parser/testdata/01273_h3EdgeAngle_range_check/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01273_h3EdgeAngle_range_check/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01273_lc_fixed_string_field/ast.json b/parser/testdata/01273_lc_fixed_string_field/ast.json deleted file mode 100644 index 845d55aa01..0000000000 --- a/parser/testdata/01273_lc_fixed_string_field/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001260331, - "rows_read": 2, - "bytes_read": 55 - } -} diff --git a/parser/testdata/01274_alter_rename_column_distributed/ast.json b/parser/testdata/01274_alter_rename_column_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01274_alter_rename_column_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01275_alter_rename_column_default_expr/ast.json b/parser/testdata/01275_alter_rename_column_default_expr/ast.json deleted file mode 100644 index 130290bc99..0000000000 --- a/parser/testdata/01275_alter_rename_column_default_expr/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_for_rename (children 1)" - }, - { - "explain": " Identifier table_for_rename" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001131772, - "rows_read": 2, - "bytes_read": 84 - } -} diff --git a/parser/testdata/01275_extract_groups_check/ast.json b/parser/testdata/01275_extract_groups_check/ast.json deleted file mode 100644 index 9e7302b155..0000000000 --- a/parser/testdata/01275_extract_groups_check/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function extractGroups (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " Literal ''" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001032404, - "rows_read": 8, - "bytes_read": 289 - } -} diff --git a/parser/testdata/01276_alter_rename_column_materialized_expr/ast.json b/parser/testdata/01276_alter_rename_column_materialized_expr/ast.json deleted file mode 100644 index 92ccc13a9e..0000000000 --- a/parser/testdata/01276_alter_rename_column_materialized_expr/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_for_rename (children 1)" - }, - { - "explain": " Identifier table_for_rename" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001297023, - "rows_read": 2, - "bytes_read": 84 - } -} diff --git a/parser/testdata/01276_random_string/ast.json b/parser/testdata/01276_random_string/ast.json deleted file mode 100644 index 0e022ce928..0000000000 --- a/parser/testdata/01276_random_string/ast.json +++ /dev/null @@ -1,181 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier c" - }, - { - "explain": " Literal UInt64_30000" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (alias byte) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function reinterpretAsUInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function substring (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function randomString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Function count (alias c) (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_100000" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier byte" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier byte" - } - ], - - "rows": 53, - - "statistics": - { - "elapsed": 0.001642674, - "rows_read": 53, - "bytes_read": 2478 - } -} diff --git a/parser/testdata/01276_system_licenses/ast.json b/parser/testdata/01276_system_licenses/ast.json deleted file mode 100644 index 3c08278fb1..0000000000 --- a/parser/testdata/01276_system_licenses/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.licenses" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001386233, - "rows_read": 13, - "bytes_read": 511 - } -} diff --git a/parser/testdata/01277_alter_rename_column_constraint/ast.json b/parser/testdata/01277_alter_rename_column_constraint/ast.json deleted file mode 100644 index 5222134ed4..0000000000 --- a/parser/testdata/01277_alter_rename_column_constraint/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_for_rename (children 1)" - }, - { - "explain": " Identifier table_for_rename" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001124362, - "rows_read": 2, - "bytes_read": 84 - } -} diff --git a/parser/testdata/01277_alter_rename_column_constraint_zookeeper_long/ast.json b/parser/testdata/01277_alter_rename_column_constraint_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01277_alter_rename_column_constraint_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01277_buffer_column_order/ast.json b/parser/testdata/01277_buffer_column_order/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01277_buffer_column_order/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01277_convert_field_to_type_logical_error/ast.json b/parser/testdata/01277_convert_field_to_type_logical_error/ast.json deleted file mode 100644 index 4cf58b0724..0000000000 --- a/parser/testdata/01277_convert_field_to_type_logical_error/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal Int64_-2487" - }, - { - "explain": " Function globalNullIn (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toIntervalMinute (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Int64_-88074" - }, - { - "explain": " Literal 'qEkek..'" - }, - { - "explain": " Literal Array_[Float64_-27.537293]" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.0011708, - "rows_read": 12, - "bytes_read": 473 - } -} diff --git a/parser/testdata/01277_fromUnixTimestamp64/ast.json b/parser/testdata/01277_fromUnixTimestamp64/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01277_fromUnixTimestamp64/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01277_large_tuples/ast.json b/parser/testdata/01277_large_tuples/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01277_large_tuples/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01277_random_fixed_string/ast.json b/parser/testdata/01277_random_fixed_string/ast.json deleted file mode 100644 index f27daa2ce5..0000000000 --- a/parser/testdata/01277_random_fixed_string/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function randomFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'string'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001071226, - "rows_read": 7, - "bytes_read": 270 - } -} diff --git a/parser/testdata/01277_toUnixTimestamp64/ast.json b/parser/testdata/01277_toUnixTimestamp64/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01277_toUnixTimestamp64/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01277_unixTimestamp64_compatibility/ast.json b/parser/testdata/01277_unixTimestamp64_compatibility/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01277_unixTimestamp64_compatibility/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01278_alter_rename_combination/ast.json b/parser/testdata/01278_alter_rename_combination/ast.json deleted file mode 100644 index 21f53c7cdf..0000000000 --- a/parser/testdata/01278_alter_rename_combination/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery rename_table (children 1)" - }, - { - "explain": " Identifier rename_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001321256, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01278_random_string_utf8/ast.json b/parser/testdata/01278_random_string_utf8/ast.json deleted file mode 100644 index 7ef7582256..0000000000 --- a/parser/testdata/01278_random_string_utf8/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function randomStringUTF8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'string'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001025068, - "rows_read": 7, - "bytes_read": 269 - } -} diff --git a/parser/testdata/01278_variance_nonnegative/ast.json b/parser/testdata/01278_variance_nonnegative/ast.json deleted file mode 100644 index 3b69862ed4..0000000000 --- a/parser/testdata/01278_variance_nonnegative/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function varSamp (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_0.1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1000000" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001080734, - "rows_read": 13, - "bytes_read": 521 - } -} diff --git a/parser/testdata/01279_dist_group_by/ast.json b/parser/testdata/01279_dist_group_by/ast.json deleted file mode 100644 index 48524f88a4..0000000000 --- a/parser/testdata/01279_dist_group_by/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data_01279 (children 1)" - }, - { - "explain": " Identifier data_01279" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001470515, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01280_min_map_max_map/ast.json b/parser/testdata/01280_min_map_max_map/ast.json deleted file mode 100644 index c4ac56df8a..0000000000 --- a/parser/testdata/01280_min_map_max_map/ast.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function minMap (alias m) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toInt32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier m" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_100" - } - ], - - "rows": 35, - - "statistics": - { - "elapsed": 0.00128737, - "rows_read": 35, - "bytes_read": 1407 - } -} diff --git a/parser/testdata/01280_null_in/ast.json b/parser/testdata/01280_null_in/ast.json deleted file mode 100644 index 66e5540c66..0000000000 --- a/parser/testdata/01280_null_in/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001391083, - "rows_read": 11, - "bytes_read": 410 - } -} diff --git a/parser/testdata/01280_opencl_bitonic_order_by/ast.json b/parser/testdata/01280_opencl_bitonic_order_by/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01280_opencl_bitonic_order_by/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01280_ttl_where_group_by_negative/ast.json b/parser/testdata/01280_ttl_where_group_by_negative/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01280_ttl_where_group_by_negative/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01280_unicode_whitespaces_lexer/ast.json b/parser/testdata/01280_unicode_whitespaces_lexer/ast.json deleted file mode 100644 index 5d7f117929..0000000000 --- a/parser/testdata/01280_unicode_whitespaces_lexer/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001077063, - "rows_read": 5, - "bytes_read": 177 - } -} diff --git a/parser/testdata/01281_alter_rename_and_other_renames/ast.json b/parser/testdata/01281_alter_rename_and_other_renames/ast.json deleted file mode 100644 index 009c46e62f..0000000000 --- a/parser/testdata/01281_alter_rename_and_other_renames/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery rename_table_multiple (children 1)" - }, - { - "explain": " Identifier rename_table_multiple" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001278979, - "rows_read": 2, - "bytes_read": 94 - } -} diff --git a/parser/testdata/01281_join_with_prewhere_fix/ast.json b/parser/testdata/01281_join_with_prewhere_fix/ast.json deleted file mode 100644 index 82df03df29..0000000000 --- a/parser/testdata/01281_join_with_prewhere_fix/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001028067, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01281_parseDateTime64BestEffort/ast.json b/parser/testdata/01281_parseDateTime64BestEffort/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01281_parseDateTime64BestEffort/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01281_sum_nullable/ast.json b/parser/testdata/01281_sum_nullable/ast.json deleted file mode 100644 index 3d417493f7..0000000000 --- a/parser/testdata/01281_sum_nullable/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumKahan (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toFloat64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001417459, - "rows_read": 15, - "bytes_read": 604 - } -} diff --git a/parser/testdata/01281_unsucceeded_insert_select_queries_counter/ast.json b/parser/testdata/01281_unsucceeded_insert_select_queries_counter/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01281_unsucceeded_insert_select_queries_counter/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01282_system_parts_ttl_info/ast.json b/parser/testdata/01282_system_parts_ttl_info/ast.json deleted file mode 100644 index 80430d0315..0000000000 --- a/parser/testdata/01282_system_parts_ttl_info/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ttl (children 1)" - }, - { - "explain": " Identifier ttl" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000975322, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01283_max_threads_simple_query_optimization/ast.json b/parser/testdata/01283_max_threads_simple_query_optimization/ast.json deleted file mode 100644 index 934d9848ee..0000000000 --- a/parser/testdata/01283_max_threads_simple_query_optimization/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data_01283 (children 1)" - }, - { - "explain": " Identifier data_01283" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001437387, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01283_strict_resize_bug/ast.json b/parser/testdata/01283_strict_resize_bug/ast.json deleted file mode 100644 index eae8f39c4d..0000000000 --- a/parser/testdata/01283_strict_resize_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery num_10m (children 1)" - }, - { - "explain": " Identifier num_10m" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001161001, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01284_escape_sequences_php_mysql_style/ast.json b/parser/testdata/01284_escape_sequences_php_mysql_style/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01284_escape_sequences_php_mysql_style/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01284_fuzz_bits/ast.json b/parser/testdata/01284_fuzz_bits/ast.json deleted file mode 100644 index 2a1888d011..0000000000 --- a/parser/testdata/01284_fuzz_bits/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function fuzzBits (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'string'" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.000989377, - "rows_read": 10, - "bytes_read": 379 - } -} diff --git a/parser/testdata/01284_view_and_extremes_bug/ast.json b/parser/testdata/01284_view_and_extremes_bug/ast.json deleted file mode 100644 index fb8d18e4b4..0000000000 --- a/parser/testdata/01284_view_and_extremes_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery view_bug_const (children 1)" - }, - { - "explain": " Identifier view_bug_const" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001401245, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01285_data_skip_index_over_aggregation/ast.json b/parser/testdata/01285_data_skip_index_over_aggregation/ast.json deleted file mode 100644 index 11667d3051..0000000000 --- a/parser/testdata/01285_data_skip_index_over_aggregation/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001536109, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01285_date_datetime_key_condition/ast.json b/parser/testdata/01285_date_datetime_key_condition/ast.json deleted file mode 100644 index 23209a65e4..0000000000 --- a/parser/testdata/01285_date_datetime_key_condition/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery date_datetime_key_condition (children 1)" - }, - { - "explain": " Identifier date_datetime_key_condition" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001573989, - "rows_read": 2, - "bytes_read": 106 - } -} diff --git a/parser/testdata/01286_constraints_on_default/ast.json b/parser/testdata/01286_constraints_on_default/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01286_constraints_on_default/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01287_max_execution_speed/ast.json b/parser/testdata/01287_max_execution_speed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01287_max_execution_speed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01288_shard_max_network_bandwidth/ast.json b/parser/testdata/01288_shard_max_network_bandwidth/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01288_shard_max_network_bandwidth/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01289_min_execution_speed_not_too_early/ast.json b/parser/testdata/01289_min_execution_speed_not_too_early/ast.json deleted file mode 100644 index 6e50e39fba..0000000000 --- a/parser/testdata/01289_min_execution_speed_not_too_early/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ES (children 1)" - }, - { - "explain": " Identifier ES" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00115935, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01290_empty_array_index_analysis/ast.json b/parser/testdata/01290_empty_array_index_analysis/ast.json deleted file mode 100644 index 6b22bd2f9f..0000000000 --- a/parser/testdata/01290_empty_array_index_analysis/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery count_lc_test (children 1)" - }, - { - "explain": " Identifier count_lc_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00112336, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01290_max_execution_speed_distributed/ast.json b/parser/testdata/01290_max_execution_speed_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01290_max_execution_speed_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01291_aggregation_in_order/ast.json b/parser/testdata/01291_aggregation_in_order/ast.json deleted file mode 100644 index dcc195bceb..0000000000 --- a/parser/testdata/01291_aggregation_in_order/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery pk_order (children 1)" - }, - { - "explain": " Identifier pk_order" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001283949, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01291_distributed_low_cardinality_memory_efficient/ast.json b/parser/testdata/01291_distributed_low_cardinality_memory_efficient/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01291_distributed_low_cardinality_memory_efficient/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01291_geo_types/ast.json b/parser/testdata/01291_geo_types/ast.json deleted file mode 100644 index b01098a837..0000000000 --- a/parser/testdata/01291_geo_types/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery geo (children 1)" - }, - { - "explain": " Identifier geo" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00132383, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01291_unsupported_conversion_from_decimal/ast.json b/parser/testdata/01291_unsupported_conversion_from_decimal/ast.json deleted file mode 100644 index 6130ea749a..0000000000 --- a/parser/testdata/01291_unsupported_conversion_from_decimal/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toIntervalSecond (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function now64 (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001416345, - "rows_read": 8, - "bytes_read": 309 - } -} diff --git a/parser/testdata/01292_create_user/ast.json b/parser/testdata/01292_create_user/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01292_create_user/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01292_optimize_data_skip_idx_order_by_expr/ast.json b/parser/testdata/01292_optimize_data_skip_idx_order_by_expr/ast.json deleted file mode 100644 index e7ebb3d4d5..0000000000 --- a/parser/testdata/01292_optimize_data_skip_idx_order_by_expr/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data_01292 (children 1)" - }, - { - "explain": " Identifier data_01292" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001336868, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01292_quantile_array_bug/ast.json b/parser/testdata/01292_quantile_array_bug/ast.json deleted file mode 100644 index cc8c9f084b..0000000000 --- a/parser/testdata/01292_quantile_array_bug/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantilesExactWeightedArray (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_0.5" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001511925, - "rows_read": 14, - "bytes_read": 555 - } -} diff --git a/parser/testdata/01293_create_role/ast.json b/parser/testdata/01293_create_role/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01293_create_role/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01293_external_sorting_limit_bug/ast.json b/parser/testdata/01293_external_sorting_limit_bug/ast.json deleted file mode 100644 index 576772a690..0000000000 --- a/parser/testdata/01293_external_sorting_limit_bug/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 6)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_999990" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Literal UInt64_65535" - }, - { - "explain": " Set" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.001794836, - "rows_read": 26, - "bytes_read": 1012 - } -} diff --git a/parser/testdata/01293_pretty_max_value_width/ast.json b/parser/testdata/01293_pretty_max_value_width/ast.json deleted file mode 100644 index 9ec4321108..0000000000 --- a/parser/testdata/01293_pretty_max_value_width/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001442708, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01293_show_settings/ast.json b/parser/testdata/01293_show_settings/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01293_show_settings/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01293_system_distribution_queue/ast.json b/parser/testdata/01293_system_distribution_queue/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01293_system_distribution_queue/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01294_create_settings_profile/ast.json b/parser/testdata/01294_create_settings_profile/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01294_create_settings_profile/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01294_system_distributed_on_cluster/ast.json b/parser/testdata/01294_system_distributed_on_cluster/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01294_system_distributed_on_cluster/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01295_aggregation_bug_11413/ast.json b/parser/testdata/01295_aggregation_bug_11413/ast.json deleted file mode 100644 index 885ae3a003..0000000000 --- a/parser/testdata/01295_aggregation_bug_11413/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function remote (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '127.0.0.{1,2}'" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_99" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function and (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function argMax (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001386735, - "rows_read": 31, - "bytes_read": 1204 - } -} diff --git a/parser/testdata/01295_create_row_policy/ast.json b/parser/testdata/01295_create_row_policy/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01295_create_row_policy/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01296_codecs_bad_arguments/ast.json b/parser/testdata/01296_codecs_bad_arguments/ast.json deleted file mode 100644 index bb5688b0c9..0000000000 --- a/parser/testdata/01296_codecs_bad_arguments/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery delta_table (children 1)" - }, - { - "explain": " Identifier delta_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001461173, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01296_create_row_policy_in_current_database/ast.json b/parser/testdata/01296_create_row_policy_in_current_database/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01296_create_row_policy_in_current_database/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01296_pipeline_stuck/ast.json b/parser/testdata/01296_pipeline_stuck/ast.json deleted file mode 100644 index ec72e4f20f..0000000000 --- a/parser/testdata/01296_pipeline_stuck/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data_01295 (children 1)" - }, - { - "explain": " Identifier data_01295" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001272107, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01297_alter_distributed/ast.json b/parser/testdata/01297_alter_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01297_alter_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01297_create_quota/ast.json b/parser/testdata/01297_create_quota/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01297_create_quota/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01298_alter_merge/ast.json b/parser/testdata/01298_alter_merge/ast.json deleted file mode 100644 index 0b13acaf44..0000000000 --- a/parser/testdata/01298_alter_merge/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery merge (children 1)" - }, - { - "explain": " Identifier merge" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001343056, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01299_alter_merge_tree/ast.json b/parser/testdata/01299_alter_merge_tree/ast.json deleted file mode 100644 index 946216f162..0000000000 --- a/parser/testdata/01299_alter_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery merge_tree (children 1)" - }, - { - "explain": " Identifier merge_tree" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001518014, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01300_group_by_other_keys/ast.json b/parser/testdata/01300_group_by_other_keys/ast.json deleted file mode 100644 index 74fbbf6407..0000000000 --- a/parser/testdata/01300_group_by_other_keys/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001281209, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01300_group_by_other_keys_having/ast.json b/parser/testdata/01300_group_by_other_keys_having/ast.json deleted file mode 100644 index cf37430254..0000000000 --- a/parser/testdata/01300_group_by_other_keys_having/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001319496, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01300_polygon_convex_hull/ast.json b/parser/testdata/01300_polygon_convex_hull/ast.json deleted file mode 100644 index e8a9d94bce..0000000000 --- a/parser/testdata/01300_polygon_convex_hull/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function polygonConvexHullCartesian (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_0)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_5)" - }, - { - "explain": " Literal Tuple_(Float64_5, Float64_5)" - }, - { - "explain": " Literal Tuple_(Float64_5, Float64_0)" - }, - { - "explain": " Literal Tuple_(Float64_2, Float64_3)" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001461472, - "rows_read": 17, - "bytes_read": 790 - } -} diff --git a/parser/testdata/01300_read_wkt/ast.json b/parser/testdata/01300_read_wkt/ast.json deleted file mode 100644 index af137278ea..0000000000 --- a/parser/testdata/01300_read_wkt/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function readWKTPoint (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'POINT(0 0)'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001208339, - "rows_read": 7, - "bytes_read": 269 - } -} diff --git a/parser/testdata/01300_svg/ast.json b/parser/testdata/01300_svg/ast.json deleted file mode 100644 index 301e39d2f6..0000000000 --- a/parser/testdata/01300_svg/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function SVG (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_0)" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001218153, - "rows_read": 7, - "bytes_read": 276 - } -} diff --git a/parser/testdata/01300_wkt/ast.json b/parser/testdata/01300_wkt/ast.json deleted file mode 100644 index 346f088dc7..0000000000 --- a/parser/testdata/01300_wkt/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function wkt (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_0)" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001199898, - "rows_read": 7, - "bytes_read": 276 - } -} diff --git a/parser/testdata/01301_polygons_within/ast.json b/parser/testdata/01301_polygons_within/ast.json deleted file mode 100644 index 951490e481..0000000000 --- a/parser/testdata/01301_polygons_within/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function polygonsWithinCartesian (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_0)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_3)" - }, - { - "explain": " Literal Tuple_(UInt64_1, Float64_2.9)" - }, - { - "explain": " Literal Tuple_(UInt64_2, Float64_2.6)" - }, - { - "explain": " Literal Tuple_(Float64_2.6, UInt64_2)" - }, - { - "explain": " Literal Tuple_(Float64_2.9, UInt64_1)" - }, - { - "explain": " Literal Tuple_(UInt64_3, UInt64_0)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_0)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001625949, - "rows_read": 31, - "bytes_read": 1492 - } -} diff --git a/parser/testdata/01302_polygons_distance/ast.json b/parser/testdata/01302_polygons_distance/ast.json deleted file mode 100644 index e1feef4dbf..0000000000 --- a/parser/testdata/01302_polygons_distance/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function polygonsDistanceCartesian (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_0)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_3)" - }, - { - "explain": " Literal Tuple_(UInt64_1, Float64_2.9)" - }, - { - "explain": " Literal Tuple_(UInt64_2, Float64_2.6)" - }, - { - "explain": " Literal Tuple_(Float64_2.6, UInt64_2)" - }, - { - "explain": " Literal Tuple_(Float64_2.9, UInt64_1)" - }, - { - "explain": " Literal Tuple_(UInt64_3, UInt64_0)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_0)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001356576, - "rows_read": 31, - "bytes_read": 1494 - } -} diff --git a/parser/testdata/01303_polygons_equals/ast.json b/parser/testdata/01303_polygons_equals/ast.json deleted file mode 100644 index 58bda818f5..0000000000 --- a/parser/testdata/01303_polygons_equals/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function polygonsEqualsCartesian (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_0)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_3)" - }, - { - "explain": " Literal Tuple_(UInt64_1, Float64_2.9)" - }, - { - "explain": " Literal Tuple_(UInt64_2, Float64_2.6)" - }, - { - "explain": " Literal Tuple_(Float64_2.6, UInt64_2)" - }, - { - "explain": " Literal Tuple_(Float64_2.9, UInt64_1)" - }, - { - "explain": " Literal Tuple_(UInt64_3, UInt64_0)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_0)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001136759, - "rows_read": 31, - "bytes_read": 1492 - } -} diff --git a/parser/testdata/01304_polygons_sym_difference/ast.json b/parser/testdata/01304_polygons_sym_difference/ast.json deleted file mode 100644 index 518996451a..0000000000 --- a/parser/testdata/01304_polygons_sym_difference/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function polygonsSymDifferenceCartesian (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_0)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_3)" - }, - { - "explain": " Literal Tuple_(UInt64_1, Float64_2.9)" - }, - { - "explain": " Literal Tuple_(UInt64_2, Float64_2.6)" - }, - { - "explain": " Literal Tuple_(Float64_2.6, UInt64_2)" - }, - { - "explain": " Literal Tuple_(Float64_2.9, UInt64_1)" - }, - { - "explain": " Literal Tuple_(UInt64_3, UInt64_0)" - }, - { - "explain": " Literal Tuple_(UInt64_0, UInt64_0)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001430705, - "rows_read": 31, - "bytes_read": 1499 - } -} diff --git a/parser/testdata/01305_array_join_prewhere_in_subquery/ast.json b/parser/testdata/01305_array_join_prewhere_in_subquery/ast.json deleted file mode 100644 index 382e543e5b..0000000000 --- a/parser/testdata/01305_array_join_prewhere_in_subquery/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery h (children 1)" - }, - { - "explain": " Identifier h" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001188598, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01305_buffer_final_bug/ast.json b/parser/testdata/01305_buffer_final_bug/ast.json deleted file mode 100644 index 8e616065b3..0000000000 --- a/parser/testdata/01305_buffer_final_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001236371, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01305_nullable-prewhere_bug/ast.json b/parser/testdata/01305_nullable-prewhere_bug/ast.json deleted file mode 100644 index 7d0a0f8966..0000000000 --- a/parser/testdata/01305_nullable-prewhere_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data (children 1)" - }, - { - "explain": " Identifier data" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001147574, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01305_polygons_union/ast.json b/parser/testdata/01305_polygons_union/ast.json deleted file mode 100644 index abd74de991..0000000000 --- a/parser/testdata/01305_polygons_union/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function polygonsUnionCartesian (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_0)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_3)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_2.9)" - }, - { - "explain": " Literal Tuple_(Float64_2, Float64_2.6)" - }, - { - "explain": " Literal Tuple_(Float64_2.6, Float64_2)" - }, - { - "explain": " Literal Tuple_(Float64_2.9, UInt64_1)" - }, - { - "explain": " Literal Tuple_(Float64_3, Float64_0)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_0)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001152436, - "rows_read": 31, - "bytes_read": 1502 - } -} diff --git a/parser/testdata/01306_polygons_intersection/ast.json b/parser/testdata/01306_polygons_intersection/ast.json deleted file mode 100644 index 5fedd3f946..0000000000 --- a/parser/testdata/01306_polygons_intersection/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function polygonsIntersectionCartesian (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 8)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_0)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_3)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_2.9)" - }, - { - "explain": " Literal Tuple_(Float64_2, Float64_2.6)" - }, - { - "explain": " Literal Tuple_(Float64_2.6, Float64_2)" - }, - { - "explain": " Literal Tuple_(Float64_2.9, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_3, Float64_0)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_0)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_4)" - }, - { - "explain": " Literal Tuple_(Float64_4, Float64_1)" - }, - { - "explain": " Literal Tuple_(Float64_1, Float64_1)" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001470462, - "rows_read": 31, - "bytes_read": 1510 - } -} diff --git a/parser/testdata/01307_bloom_filter_index_string_multi_granulas/ast.json b/parser/testdata/01307_bloom_filter_index_string_multi_granulas/ast.json deleted file mode 100644 index 2d74b0ef22..0000000000 --- a/parser/testdata/01307_bloom_filter_index_string_multi_granulas/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_01307 (children 1)" - }, - { - "explain": " Identifier test_01307" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001062144, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01307_polygon_perimeter/ast.json b/parser/testdata/01307_polygon_perimeter/ast.json deleted file mode 100644 index 966fde2c33..0000000000 --- a/parser/testdata/01307_polygon_perimeter/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function polygonPerimeterCartesian (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_0)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_5)" - }, - { - "explain": " Literal Tuple_(Float64_5, Float64_5)" - }, - { - "explain": " Literal Tuple_(Float64_5, Float64_0)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_0)" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001399603, - "rows_read": 17, - "bytes_read": 789 - } -} diff --git a/parser/testdata/01308_polygon_area/ast.json b/parser/testdata/01308_polygon_area/ast.json deleted file mode 100644 index 054084c625..0000000000 --- a/parser/testdata/01308_polygon_area/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function polygonAreaCartesian (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_0)" - }, - { - "explain": " Literal Tuple_(Float64_0, Float64_5)" - }, - { - "explain": " Literal Tuple_(Float64_5, Float64_5)" - }, - { - "explain": " Literal Tuple_(Float64_5, Float64_0)" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001546649, - "rows_read": 16, - "bytes_read": 728 - } -} diff --git a/parser/testdata/01308_row_policy_and_trivial_count_query/ast.json b/parser/testdata/01308_row_policy_and_trivial_count_query/ast.json deleted file mode 100644 index 67e15cf055..0000000000 --- a/parser/testdata/01308_row_policy_and_trivial_count_query/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001143512, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01310_enum_comparison/ast.json b/parser/testdata/01310_enum_comparison/ast.json deleted file mode 100644 index 4697478802..0000000000 --- a/parser/testdata/01310_enum_comparison/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery enum (children 2)" - }, - { - "explain": " Identifier enum" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration x (children 1)" - }, - { - "explain": " DataType Enum (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'world'" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001393846, - "rows_read": 15, - "bytes_read": 553 - } -} diff --git a/parser/testdata/01311_comparison_with_constant_string/ast.json b/parser/testdata/01311_comparison_with_constant_string/ast.json deleted file mode 100644 index ba60eb0d17..0000000000 --- a/parser/testdata/01311_comparison_with_constant_string/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal '1'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001410439, - "rows_read": 14, - "bytes_read": 537 - } -} diff --git a/parser/testdata/01312_case_insensitive_regexp/ast.json b/parser/testdata/01312_case_insensitive_regexp/ast.json deleted file mode 100644 index 6c92b17ce6..0000000000 --- a/parser/testdata/01312_case_insensitive_regexp/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function match (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'Too late'" - }, - { - "explain": " Literal 'Too late'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001552185, - "rows_read": 8, - "bytes_read": 292 - } -} diff --git a/parser/testdata/01312_comparison_with_constant_string_in_index_analysis/ast.json b/parser/testdata/01312_comparison_with_constant_string_in_index_analysis/ast.json deleted file mode 100644 index 8be2471f70..0000000000 --- a/parser/testdata/01312_comparison_with_constant_string_in_index_analysis/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001218795, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01313_parse_date_time_best_effort_null_zero/ast.json b/parser/testdata/01313_parse_date_time_best_effort_null_zero/ast.json deleted file mode 100644 index c06ed6538d..0000000000 --- a/parser/testdata/01313_parse_date_time_best_effort_null_zero/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function parseDateTimeBestEffort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal ''" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001301574, - "rows_read": 7, - "bytes_read": 277 - } -} diff --git a/parser/testdata/01314_position_in_system_columns/ast.json b/parser/testdata/01314_position_in_system_columns/ast.json deleted file mode 100644 index bb2c7b4f6e..0000000000 --- a/parser/testdata/01314_position_in_system_columns/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001462661, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01315_count_distinct_return_not_nullable/ast.json b/parser/testdata/01315_count_distinct_return_not_nullable/ast.json deleted file mode 100644 index 8deb36f4ce..0000000000 --- a/parser/testdata/01315_count_distinct_return_not_nullable/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniq (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function greaterOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001858106, - "rows_read": 20, - "bytes_read": 788 - } -} diff --git a/parser/testdata/01318_alter_add_column_exists/ast.json b/parser/testdata/01318_alter_add_column_exists/ast.json deleted file mode 100644 index 1b87544396..0000000000 --- a/parser/testdata/01318_alter_add_column_exists/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery add_table (children 1)" - }, - { - "explain": " Identifier add_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001632089, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01318_decrypt/ast.json b/parser/testdata/01318_decrypt/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01318_decrypt/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01318_encrypt/ast.json b/parser/testdata/01318_encrypt/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01318_encrypt/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01318_map_add_map_subtract/ast.json b/parser/testdata/01318_map_add_map_subtract/ast.json deleted file mode 100644 index d748d6282f..0000000000 --- a/parser/testdata/01318_map_add_map_subtract/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab (children 1)" - }, - { - "explain": " Identifier tab" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001387519, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01318_map_add_map_subtract_on_map_type/ast.json b/parser/testdata/01318_map_add_map_subtract_on_map_type/ast.json deleted file mode 100644 index 66a75f631d..0000000000 --- a/parser/testdata/01318_map_add_map_subtract_on_map_type/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tab (children 1)" - }, - { - "explain": " Identifier tab" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001134037, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01318_map_populate_series/ast.json b/parser/testdata/01318_map_populate_series/ast.json deleted file mode 100644 index 2619525e50..0000000000 --- a/parser/testdata/01318_map_populate_series/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery map_test (children 1)" - }, - { - "explain": " Identifier map_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001578836, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01318_parallel_final_stuck/ast.json b/parser/testdata/01318_parallel_final_stuck/ast.json deleted file mode 100644 index 7522bc4ab6..0000000000 --- a/parser/testdata/01318_parallel_final_stuck/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery final_bug (children 1)" - }, - { - "explain": " Identifier final_bug" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001607467, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01319_manual_write_to_replicas_long/ast.json b/parser/testdata/01319_manual_write_to_replicas_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01319_manual_write_to_replicas_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01319_mv_constants_bug/ast.json b/parser/testdata/01319_mv_constants_bug/ast.json deleted file mode 100644 index 4052cf25ca..0000000000 --- a/parser/testdata/01319_mv_constants_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery distributed_table_merged (children 1)" - }, - { - "explain": " Identifier distributed_table_merged" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00148002, - "rows_read": 2, - "bytes_read": 100 - } -} diff --git a/parser/testdata/01319_optimize_skip_unused_shards_nesting/ast.json b/parser/testdata/01319_optimize_skip_unused_shards_nesting/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01319_optimize_skip_unused_shards_nesting/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01319_query_formatting_in_server_log/ast.json b/parser/testdata/01319_query_formatting_in_server_log/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01319_query_formatting_in_server_log/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01320_optimize_skip_unused_shards_no_non_deterministic/ast.json b/parser/testdata/01320_optimize_skip_unused_shards_no_non_deterministic/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01320_optimize_skip_unused_shards_no_non_deterministic/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01321_aggregate_functions_of_group_by_keys/ast.json b/parser/testdata/01321_aggregate_functions_of_group_by_keys/ast.json deleted file mode 100644 index 50dfff4159..0000000000 --- a/parser/testdata/01321_aggregate_functions_of_group_by_keys/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001690037, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01321_monotonous_functions_in_order_by_bug/ast.json b/parser/testdata/01321_monotonous_functions_in_order_by_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01321_monotonous_functions_in_order_by_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01322_cast_keep_nullable/ast.json b/parser/testdata/01322_cast_keep_nullable/ast.json deleted file mode 100644 index 70eeb1ab2e..0000000000 --- a/parser/testdata/01322_cast_keep_nullable/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001691037, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01323_add_scalars_in_time/ast.json b/parser/testdata/01323_add_scalars_in_time/ast.json deleted file mode 100644 index 7f7574a9be..0000000000 --- a/parser/testdata/01323_add_scalars_in_time/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001235447, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01323_bad_arg_in_arithmetic_operations/ast.json b/parser/testdata/01323_bad_arg_in_arithmetic_operations/ast.json deleted file mode 100644 index 0542509a67..0000000000 --- a/parser/testdata/01323_bad_arg_in_arithmetic_operations/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001603697, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01323_if_with_nulls/ast.json b/parser/testdata/01323_if_with_nulls/ast.json deleted file mode 100644 index ee22c11c3c..0000000000 --- a/parser/testdata/01323_if_with_nulls/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function if (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001604441, - "rows_read": 19, - "bytes_read": 730 - } -} diff --git a/parser/testdata/01323_redundant_functions_in_order_by/ast.json b/parser/testdata/01323_redundant_functions_in_order_by/ast.json deleted file mode 100644 index dd8d3e01da..0000000000 --- a/parser/testdata/01323_redundant_functions_in_order_by/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001434076, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01323_too_many_threads_bug/ast.json b/parser/testdata/01323_too_many_threads_bug/ast.json deleted file mode 100644 index bf2b7c6671..0000000000 --- a/parser/testdata/01323_too_many_threads_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_01323_many_parts (children 1)" - }, - { - "explain": " Identifier table_01323_many_parts" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00155205, - "rows_read": 2, - "bytes_read": 96 - } -} diff --git a/parser/testdata/01324_if_transform_strings_to_enum/ast.json b/parser/testdata/01324_if_transform_strings_to_enum/ast.json deleted file mode 100644 index 6f424cbcfb..0000000000 --- a/parser/testdata/01324_if_transform_strings_to_enum/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001316437, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01324_insert_tsv_raw/ast.json b/parser/testdata/01324_insert_tsv_raw/ast.json deleted file mode 100644 index 22cdae020b..0000000000 --- a/parser/testdata/01324_insert_tsv_raw/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tsv_raw (children 1)" - }, - { - "explain": " Identifier tsv_raw" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001112892, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01324_settings_documentation/ast.json b/parser/testdata/01324_settings_documentation/ast.json deleted file mode 100644 index 6c2dde3510..0000000000 --- a/parser/testdata/01324_settings_documentation/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'Settings description should start with capital letter'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.00104858, - "rows_read": 5, - "bytes_read": 224 - } -} diff --git a/parser/testdata/01325_freeze_mutation_stuck/ast.json b/parser/testdata/01325_freeze_mutation_stuck/ast.json deleted file mode 100644 index 37724f9888..0000000000 --- a/parser/testdata/01325_freeze_mutation_stuck/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mt (children 1)" - }, - { - "explain": " Identifier mt" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001156993, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01326_build_id/ast.json b/parser/testdata/01326_build_id/ast.json deleted file mode 100644 index 3965c09ff8..0000000000 --- a/parser/testdata/01326_build_id/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greaterOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function length (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function buildId (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal UInt64_16" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001433511, - "rows_read": 11, - "bytes_read": 429 - } -} diff --git a/parser/testdata/01326_fixed_string_comparison_denny_crane/ast.json b/parser/testdata/01326_fixed_string_comparison_denny_crane/ast.json deleted file mode 100644 index 6aa60e189f..0000000000 --- a/parser/testdata/01326_fixed_string_comparison_denny_crane/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greater (alias r) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toFixedString (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function unhex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '202005295555'" - }, - { - "explain": " Literal UInt64_15" - }, - { - "explain": " Function unhex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '20200529'" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001167228, - "rows_read": 15, - "bytes_read": 608 - } -} diff --git a/parser/testdata/01326_hostname_alias/ast.json b/parser/testdata/01326_hostname_alias/ast.json deleted file mode 100644 index 536a62112c..0000000000 --- a/parser/testdata/01326_hostname_alias/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function hostname (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function hostName (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.00122753, - "rows_read": 10, - "bytes_read": 375 - } -} diff --git a/parser/testdata/01327_decimal_cut_extra_digits_after_point/ast.json b/parser/testdata/01327_decimal_cut_extra_digits_after_point/ast.json deleted file mode 100644 index 9b7f68a449..0000000000 --- a/parser/testdata/01327_decimal_cut_extra_digits_after_point/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1.1'" - }, - { - "explain": " Literal 'Decimal(10, 5)'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001574937, - "rows_read": 8, - "bytes_read": 292 - } -} diff --git a/parser/testdata/01328_bad_peephole_optimization/ast.json b/parser/testdata/01328_bad_peephole_optimization/ast.json deleted file mode 100644 index 5fd8d043ad..0000000000 --- a/parser/testdata/01328_bad_peephole_optimization/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function max (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias a)" - }, - { - "explain": " Literal UInt64_2 (alias b)" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001538867, - "rows_read": 20, - "bytes_read": 801 - } -} diff --git a/parser/testdata/01329_compare_tuple_string_constant/ast.json b/parser/testdata/01329_compare_tuple_string_constant/ast.json deleted file mode 100644 index f89c84934a..0000000000 --- a/parser/testdata/01329_compare_tuple_string_constant/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal ''" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001294439, - "rows_read": 10, - "bytes_read": 366 - } -} diff --git a/parser/testdata/01330_array_join_in_higher_order_function/ast.json b/parser/testdata/01330_array_join_in_higher_order_function/ast.json deleted file mode 100644 index 11bba66ad5..0000000000 --- a/parser/testdata/01330_array_join_in_higher_order_function/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001460937, - "rows_read": 18, - "bytes_read": 730 - } -} diff --git a/parser/testdata/01332_join_type_syntax_position/ast.json b/parser/testdata/01332_join_type_syntax_position/ast.json deleted file mode 100644 index bbe4a9344d..0000000000 --- a/parser/testdata/01332_join_type_syntax_position/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (alias t1) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (alias t2) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001066776, - "rows_read": 19, - "bytes_read": 760 - } -} diff --git a/parser/testdata/01333_select_abc_asterisk/ast.json b/parser/testdata/01333_select_abc_asterisk/ast.json deleted file mode 100644 index e371b85f21..0000000000 --- a/parser/testdata/01333_select_abc_asterisk/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.0010856, - "rows_read": 5, - "bytes_read": 169 - } -} diff --git a/parser/testdata/01337_mysql_global_variables/ast.json b/parser/testdata/01337_mysql_global_variables/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01337_mysql_global_variables/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01338_sha256_fixedstring/ast.json b/parser/testdata/01338_sha256_fixedstring/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01338_sha256_fixedstring/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01338_uuid_without_separator/ast.json b/parser/testdata/01338_uuid_without_separator/ast.json deleted file mode 100644 index 9fda979f7a..0000000000 --- a/parser/testdata/01338_uuid_without_separator/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUUID (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '417ddc5de5564d2795dda34d84e46a50'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001061685, - "rows_read": 7, - "bytes_read": 285 - } -} diff --git a/parser/testdata/01340_datetime64_fpe/ast.json b/parser/testdata/01340_datetime64_fpe/ast.json deleted file mode 100644 index a322d318da..0000000000 --- a/parser/testdata/01340_datetime64_fpe/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDateTime64 (alias dt64) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '2019-09-16 19:20:12.3456789102019-09-16 19:20:12.345678910'" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier dt64" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001109524, - "rows_read": 10, - "bytes_read": 425 - } -} diff --git a/parser/testdata/01341_datetime64_wrong_supertype/ast.json b/parser/testdata/01341_datetime64_wrong_supertype/ast.json deleted file mode 100644 index 8d45d3432e..0000000000 --- a/parser/testdata/01341_datetime64_wrong_supertype/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDateTime64 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '2000-01-01 01:01:01.123'" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Function toDateTime64 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '2000-01-01 01:01:01.123456'" - }, - { - "explain": " Literal UInt64_6" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.00094568, - "rows_read": 14, - "bytes_read": 573 - } -} diff --git a/parser/testdata/01343_min_bytes_to_use_mmap_io/ast.json b/parser/testdata/01343_min_bytes_to_use_mmap_io/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01343_min_bytes_to_use_mmap_io/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01344_alter_enum_partition_key/ast.json b/parser/testdata/01344_alter_enum_partition_key/ast.json deleted file mode 100644 index 3c4d597579..0000000000 --- a/parser/testdata/01344_alter_enum_partition_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001179597, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01344_min_bytes_to_use_mmap_io_index/ast.json b/parser/testdata/01344_min_bytes_to_use_mmap_io_index/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01344_min_bytes_to_use_mmap_io_index/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01345_array_join_LittleMaverick/ast.json b/parser/testdata/01345_array_join_LittleMaverick/ast.json deleted file mode 100644 index 3185aa581d..0000000000 --- a/parser/testdata/01345_array_join_LittleMaverick/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001351821, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01345_index_date_vs_datetime/ast.json b/parser/testdata/01345_index_date_vs_datetime/ast.json deleted file mode 100644 index fd4cdae036..0000000000 --- a/parser/testdata/01345_index_date_vs_datetime/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery index (children 1)" - }, - { - "explain": " Identifier index" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001178335, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01346_alter_enum_partition_key_replicated_zookeeper_long/ast.json b/parser/testdata/01346_alter_enum_partition_key_replicated_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01346_alter_enum_partition_key_replicated_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01346_array_join_mrxotey/ast.json b/parser/testdata/01346_array_join_mrxotey/ast.json deleted file mode 100644 index 2cc00baad7..0000000000 --- a/parser/testdata/01346_array_join_mrxotey/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001308031, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01347_partition_date_vs_datetime/ast.json b/parser/testdata/01347_partition_date_vs_datetime/ast.json deleted file mode 100644 index 3c67e9a9c1..0000000000 --- a/parser/testdata/01347_partition_date_vs_datetime/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_datetime (children 1)" - }, - { - "explain": " Identifier test_datetime" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001322968, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01349_mutation_datetime_key/ast.json b/parser/testdata/01349_mutation_datetime_key/ast.json deleted file mode 100644 index 0f2deb30ea..0000000000 --- a/parser/testdata/01349_mutation_datetime_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery cdp_orders (children 1)" - }, - { - "explain": " Identifier cdp_orders" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00138837, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01350_intdiv_nontrivial_fpe/ast.json b/parser/testdata/01350_intdiv_nontrivial_fpe/ast.json deleted file mode 100644 index ac4623e4ab..0000000000 --- a/parser/testdata/01350_intdiv_nontrivial_fpe/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function intDiv (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " Literal UInt64_255" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001331905, - "rows_read": 8, - "bytes_read": 309 - } -} diff --git a/parser/testdata/01351_geohash_assert/ast.json b/parser/testdata/01351_geohash_assert/ast.json deleted file mode 100644 index c5035741d5..0000000000 --- a/parser/testdata/01351_geohash_assert/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arraySort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function geohashesInBox (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal Float64_-1" - }, - { - "explain": " Literal Float64_-1" - }, - { - "explain": " Literal Float64_1" - }, - { - "explain": " Literal Float64_inf" - }, - { - "explain": " Literal UInt64_3" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001231914, - "rows_read": 13, - "bytes_read": 492 - } -} diff --git a/parser/testdata/01351_parse_date_time_best_effort_us/ast.json b/parser/testdata/01351_parse_date_time_best_effort_us/ast.json deleted file mode 100644 index f73b48cc93..0000000000 --- a/parser/testdata/01351_parse_date_time_best_effort_us/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001110155, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01352_add_datetime_bad_get/ast.json b/parser/testdata/01352_add_datetime_bad_get/ast.json deleted file mode 100644 index 920ca92d40..0000000000 --- a/parser/testdata/01352_add_datetime_bad_get/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function addMonths (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2017-11-05 08:07:47'" - }, - { - "explain": " Literal Float64_1" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001310428, - "rows_read": 12, - "bytes_read": 491 - } -} diff --git a/parser/testdata/01352_generate_random_overflow/ast.json b/parser/testdata/01352_generate_random_overflow/ast.json deleted file mode 100644 index 9753e75610..0000000000 --- a/parser/testdata/01352_generate_random_overflow/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier i" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function generateRandom (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal 'i Array(Nullable(Enum8(\\'hello\\' = 1, \\'world\\' = 5)))'" - }, - { - "explain": " Literal UInt64_1025" - }, - { - "explain": " Literal UInt64_65535" - }, - { - "explain": " Literal UInt64_9223372036854775807" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001174159, - "rows_read": 15, - "bytes_read": 629 - } -} diff --git a/parser/testdata/01353_low_cardinality_join_types/ast.json b/parser/testdata/01353_low_cardinality_join_types/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01353_low_cardinality_join_types/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01353_neighbor_overflow/ast.json b/parser/testdata/01353_neighbor_overflow/ast.json deleted file mode 100644 index d582214142..0000000000 --- a/parser/testdata/01353_neighbor_overflow/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001315068, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01353_nullable_tuple/ast.json b/parser/testdata/01353_nullable_tuple/ast.json deleted file mode 100644 index 8e5b61afbe..0000000000 --- a/parser/testdata/01353_nullable_tuple/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'single argument'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001089536, - "rows_read": 5, - "bytes_read": 186 - } -} diff --git a/parser/testdata/01353_topk_enum/ast.json b/parser/testdata/01353_topk_enum/ast.json deleted file mode 100644 index c2c36ac17b..0000000000 --- a/parser/testdata/01353_topk_enum/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sqrt (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Literal 'Enum(\\'\\' = 0, \\'hello\\' = 1, \\'world\\' = 2, \\'test\\' = 3)'" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function topK (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1000" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001697208, - "rows_read": 27, - "bytes_read": 1117 - } -} diff --git a/parser/testdata/01354_order_by_tuple_collate_const/ast.json b/parser/testdata/01354_order_by_tuple_collate_const/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01354_order_by_tuple_collate_const/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01354_tuple_low_cardinality_array_mapped_bug/ast.json b/parser/testdata/01354_tuple_low_cardinality_array_mapped_bug/ast.json deleted file mode 100644 index 59ffa4affd..0000000000 --- a/parser/testdata/01354_tuple_low_cardinality_array_mapped_bug/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayExists (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tupleElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'pattern'" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'a'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal 'Array(Tuple(LowCardinality(String), UInt8))'" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001264633, - "rows_read": 27, - "bytes_read": 1120 - } -} diff --git a/parser/testdata/01355_alter_column_with_order/ast.json b/parser/testdata/01355_alter_column_with_order/ast.json deleted file mode 100644 index 7955cbcc57..0000000000 --- a/parser/testdata/01355_alter_column_with_order/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery alter_01355 (children 1)" - }, - { - "explain": " Identifier alter_01355" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001390693, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01355_defaultValueOfArgumentType_bug/ast.json b/parser/testdata/01355_defaultValueOfArgumentType_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01355_defaultValueOfArgumentType_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01355_if_fixed_string/ast.json b/parser/testdata/01355_if_fixed_string/ast.json deleted file mode 100644 index 47550b953d..0000000000 --- a/parser/testdata/01355_if_fixed_string/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001128376, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01355_ilike/ast.json b/parser/testdata/01355_ilike/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01355_ilike/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01356_initialize_aggregation/ast.json b/parser/testdata/01356_initialize_aggregation/ast.json deleted file mode 100644 index 9318d006d2..0000000000 --- a/parser/testdata/01356_initialize_aggregation/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniqMerge (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier state" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function initializeAggregation (alias state) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'uniqState'" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_10000" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001376818, - "rows_read": 27, - "bytes_read": 1194 - } -} diff --git a/parser/testdata/01356_state_resample/ast.json b/parser/testdata/01356_state_resample/ast.json deleted file mode 100644 index a77ef2816e..0000000000 --- a/parser/testdata/01356_state_resample/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumResample (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_20" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_20" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_200" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.001398002, - "rows_read": 21, - "bytes_read": 800 - } -} diff --git a/parser/testdata/01356_view_threads/ast.json b/parser/testdata/01356_view_threads/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01356_view_threads/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01356_wrong_filter-type_bug/ast.json b/parser/testdata/01356_wrong_filter-type_bug/ast.json deleted file mode 100644 index 81d97d9826..0000000000 --- a/parser/testdata/01356_wrong_filter-type_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t0 (children 1)" - }, - { - "explain": " Identifier t0" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001482584, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01357_result_rows/ast.json b/parser/testdata/01357_result_rows/ast.json deleted file mode 100644 index 101c7f4855..0000000000 --- a/parser/testdata/01357_result_rows/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001276403, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01357_version_collapsing_attach_detach_zookeeper/ast.json b/parser/testdata/01357_version_collapsing_attach_detach_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01357_version_collapsing_attach_detach_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01358_constexpr_constraint/ast.json b/parser/testdata/01358_constexpr_constraint/ast.json deleted file mode 100644 index c38c8c3fe3..0000000000 --- a/parser/testdata/01358_constexpr_constraint/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery constrained (children 1)" - }, - { - "explain": " Identifier constrained" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001229067, - "rows_read": 2, - "bytes_read": 75 - } -} diff --git a/parser/testdata/01358_mutation_delete_null_rows/ast.json b/parser/testdata/01358_mutation_delete_null_rows/ast.json deleted file mode 100644 index fb2967f823..0000000000 --- a/parser/testdata/01358_mutation_delete_null_rows/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '--------'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001147456, - "rows_read": 5, - "bytes_read": 179 - } -} diff --git a/parser/testdata/01358_union_threads_bug/ast.json b/parser/testdata/01358_union_threads_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01358_union_threads_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01359_codeql/ast.json b/parser/testdata/01359_codeql/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01359_codeql/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01359_geodistance_loop/ast.json b/parser/testdata/01359_geodistance_loop/ast.json deleted file mode 100644 index a069b5310a..0000000000 --- a/parser/testdata/01359_geodistance_loop/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function geoDistance (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal Float64_0" - }, - { - "explain": " Literal Float64_0" - }, - { - "explain": " Literal Float64_-inf" - }, - { - "explain": " Literal Float64_1" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001201953, - "rows_read": 10, - "bytes_read": 361 - } -} diff --git a/parser/testdata/01360_division_overflow/ast.json b/parser/testdata/01360_division_overflow/ast.json deleted file mode 100644 index 86e44cf6c5..0000000000 --- a/parser/testdata/01360_division_overflow/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function intDiv (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toInt32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_4294967296" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.00107649, - "rows_read": 12, - "bytes_read": 480 - } -} diff --git a/parser/testdata/01360_materialized_view_with_join_on_query_log/ast.json b/parser/testdata/01360_materialized_view_with_join_on_query_log/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01360_materialized_view_with_join_on_query_log/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01361_buffer_table_flush_with_materialized_view/ast.json b/parser/testdata/01361_buffer_table_flush_with_materialized_view/ast.json deleted file mode 100644 index bdbd482590..0000000000 --- a/parser/testdata/01361_buffer_table_flush_with_materialized_view/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1_01361 (children 1)" - }, - { - "explain": " Identifier t1_01361" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000962487, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01362_year_of_ISO8601_week_modificators_for_formatDateTime/ast.json b/parser/testdata/01362_year_of_ISO8601_week_modificators_for_formatDateTime/ast.json deleted file mode 100644 index d98f877d0e..0000000000 --- a/parser/testdata/01362_year_of_ISO8601_week_modificators_for_formatDateTime/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function formatDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2010-01-01'" - }, - { - "explain": " Literal '%G'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001423815, - "rows_read": 10, - "bytes_read": 383 - } -} diff --git a/parser/testdata/01372_remote_table_function_empty_table/ast.json b/parser/testdata/01372_remote_table_function_empty_table/ast.json deleted file mode 100644 index 86b267b8e6..0000000000 --- a/parser/testdata/01372_remote_table_function_empty_table/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function remote (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '127..2'" - }, - { - "explain": " Literal 'a.'" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.000850349, - "rows_read": 12, - "bytes_read": 448 - } -} diff --git a/parser/testdata/01372_wrong_order_by_removal/ast.json b/parser/testdata/01372_wrong_order_by_removal/ast.json deleted file mode 100644 index 6134a10355..0000000000 --- a/parser/testdata/01372_wrong_order_by_removal/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery moving_sum_num (children 1)" - }, - { - "explain": " Identifier moving_sum_num" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001205051, - "rows_read": 2, - "bytes_read": 81 - } -} diff --git a/parser/testdata/01373_is_zero_or_null/ast.json b/parser/testdata/01373_is_zero_or_null/ast.json deleted file mode 100644 index 6f96d51fdd..0000000000 --- a/parser/testdata/01373_is_zero_or_null/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function not (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function isZeroOrNull (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3, NULL]" - }, - { - "explain": " Literal UInt64_3" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001733585, - "rows_read": 24, - "bytes_read": 1026 - } -} diff --git a/parser/testdata/01373_summing_merge_tree_exclude_partition_key/ast.json b/parser/testdata/01373_summing_merge_tree_exclude_partition_key/ast.json deleted file mode 100644 index f7255ee1b6..0000000000 --- a/parser/testdata/01373_summing_merge_tree_exclude_partition_key/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001297557, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01373_summing_merge_tree_explicit_columns_definition/ast.json b/parser/testdata/01373_summing_merge_tree_explicit_columns_definition/ast.json deleted file mode 100644 index 118b22e511..0000000000 --- a/parser/testdata/01373_summing_merge_tree_explicit_columns_definition/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tt_error_1373 (children 1)" - }, - { - "explain": " Identifier tt_error_1373" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001303296, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01374_if_nullable_filimonov/ast.json b/parser/testdata/01374_if_nullable_filimonov/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01374_if_nullable_filimonov/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01375_GROUP_BY_injective_elimination_dictGet_BAD_ARGUMENTS/ast.json b/parser/testdata/01375_GROUP_BY_injective_elimination_dictGet_BAD_ARGUMENTS/ast.json deleted file mode 100644 index 2d59a9c317..0000000000 --- a/parser/testdata/01375_GROUP_BY_injective_elimination_dictGet_BAD_ARGUMENTS/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function dictGetString (alias country) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'default'" - }, - { - "explain": " Literal '.countryId'" - }, - { - "explain": " Literal 'country'" - }, - { - "explain": " Function toUInt64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier country" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001293269, - "rows_read": 22, - "bytes_read": 875 - } -} diff --git a/parser/testdata/01375_compact_parts_codecs/ast.json b/parser/testdata/01375_compact_parts_codecs/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01375_compact_parts_codecs/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01375_null_issue_3767/ast.json b/parser/testdata/01375_null_issue_3767/ast.json deleted file mode 100644 index c413986adf..0000000000 --- a/parser/testdata/01375_null_issue_3767/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery null_issue_3767 (children 1)" - }, - { - "explain": " Identifier null_issue_3767" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001200176, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/01375_storage_file_write_prefix_csv_with_names/ast.json b/parser/testdata/01375_storage_file_write_prefix_csv_with_names/ast.json deleted file mode 100644 index 2ea8ae116f..0000000000 --- a/parser/testdata/01375_storage_file_write_prefix_csv_with_names/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tmp_01375 (children 1)" - }, - { - "explain": " Identifier tmp_01375" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001594794, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01375_storage_file_write_prefix_tsv_with_names/ast.json b/parser/testdata/01375_storage_file_write_prefix_tsv_with_names/ast.json deleted file mode 100644 index be7472b85d..0000000000 --- a/parser/testdata/01375_storage_file_write_prefix_tsv_with_names/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tmp_01375 (children 1)" - }, - { - "explain": " Identifier tmp_01375" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001547443, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01376_GROUP_BY_injective_elimination_dictGet/ast.json b/parser/testdata/01376_GROUP_BY_injective_elimination_dictGet/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01376_GROUP_BY_injective_elimination_dictGet/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01376_array_fill_empty/ast.json b/parser/testdata/01376_array_fill_empty/ast.json deleted file mode 100644 index 4c65e35de2..0000000000 --- a/parser/testdata/01376_array_fill_empty/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayFill (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001374171, - "rows_read": 17, - "bytes_read": 654 - } -} diff --git a/parser/testdata/01376_null_logical/ast.json b/parser/testdata/01376_null_logical/ast.json deleted file mode 100644 index edd02b5fba..0000000000 --- a/parser/testdata/01376_null_logical/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function or (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001173907, - "rows_read": 8, - "bytes_read": 281 - } -} diff --git a/parser/testdata/01377_supertype_low_cardinality/ast.json b/parser/testdata/01377_supertype_low_cardinality/ast.json deleted file mode 100644 index 576a788578..0000000000 --- a/parser/testdata/01377_supertype_low_cardinality/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toLowCardinality (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'hello'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001622423, - "rows_read": 10, - "bytes_read": 367 - } -} diff --git a/parser/testdata/01378_alter_rename_with_ttl_zookeeper/ast.json b/parser/testdata/01378_alter_rename_with_ttl_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01378_alter_rename_with_ttl_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01379_with_fill_several_columns/ast.json b/parser/testdata/01379_with_fill_several_columns/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01379_with_fill_several_columns/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01380_coded_delta_exception_code/ast.json b/parser/testdata/01380_coded_delta_exception_code/ast.json deleted file mode 100644 index 87b98bc97c..0000000000 --- a/parser/testdata/01380_coded_delta_exception_code/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery delta_codec_synthetic (children 3)" - }, - { - "explain": " Identifier delta_codec_synthetic" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration id (children 2)" - }, - { - "explain": " DataType Decimal (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_38" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " Function CODEC (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function Delta" - }, - { - "explain": " Function ZSTD (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_22" - }, - { - "explain": " Storage definition (children 2)" - }, - { - "explain": " Function MergeTree (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001209356, - "rows_read": 20, - "bytes_read": 749 - } -} diff --git a/parser/testdata/01380_nullable_state/ast.json b/parser/testdata/01380_nullable_state/ast.json deleted file mode 100644 index 2ff64173a5..0000000000 --- a/parser/testdata/01380_nullable_state/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function hex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniqState (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001939197, - "rows_read": 13, - "bytes_read": 535 - } -} diff --git a/parser/testdata/01381_for_each_with_states/ast.json b/parser/testdata/01381_for_each_with_states/ast.json deleted file mode 100644 index 4961aee2f3..0000000000 --- a/parser/testdata/01381_for_each_with_states/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function hex (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniqStateForEach (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, NULL]" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001668955, - "rows_read": 11, - "bytes_read": 458 - } -} diff --git a/parser/testdata/01383_remote_ambiguous_column_shard/ast.json b/parser/testdata/01383_remote_ambiguous_column_shard/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01383_remote_ambiguous_column_shard/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01384_bloom_filter_bad_arguments/ast.json b/parser/testdata/01384_bloom_filter_bad_arguments/ast.json deleted file mode 100644 index 2f51d45d0b..0000000000 --- a/parser/testdata/01384_bloom_filter_bad_arguments/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001372524, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01385_not_function/ast.json b/parser/testdata/01385_not_function/ast.json deleted file mode 100644 index c838e6d1d9..0000000000 --- a/parser/testdata/01385_not_function/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function notEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function not (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.00140836, - "rows_read": 10, - "bytes_read": 375 - } -} diff --git a/parser/testdata/01386_negative_float_constant_key_condition/ast.json b/parser/testdata/01386_negative_float_constant_key_condition/ast.json deleted file mode 100644 index 386b63afb3..0000000000 --- a/parser/testdata/01386_negative_float_constant_key_condition/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001334606, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01387_clear_column_default_depends/ast.json b/parser/testdata/01387_clear_column_default_depends/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01387_clear_column_default_depends/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01388_clear_all_columns/ast.json b/parser/testdata/01388_clear_all_columns/ast.json deleted file mode 100644 index 420aba45ff..0000000000 --- a/parser/testdata/01388_clear_all_columns/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001461382, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01388_multi_if_optimization/ast.json b/parser/testdata/01388_multi_if_optimization/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01388_multi_if_optimization/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01389_filter_by_virtual_columns/ast.json b/parser/testdata/01389_filter_by_virtual_columns/ast.json deleted file mode 100644 index 9736428e19..0000000000 --- a/parser/testdata/01389_filter_by_virtual_columns/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.parts" - }, - { - "explain": " Function and (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier table" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier database" - }, - { - "explain": " Function currentDatabase (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.001530954, - "rows_read": 21, - "bytes_read": 805 - } -} diff --git a/parser/testdata/01390_check_table_codec/ast.json b/parser/testdata/01390_check_table_codec/ast.json deleted file mode 100644 index 55a99a3702..0000000000 --- a/parser/testdata/01390_check_table_codec/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001440645, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01390_remove_injective_in_uniq/ast.json b/parser/testdata/01390_remove_injective_in_uniq/ast.json deleted file mode 100644 index 93f675948a..0000000000 --- a/parser/testdata/01390_remove_injective_in_uniq/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001104517, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01391_join_on_dict_crash/ast.json b/parser/testdata/01391_join_on_dict_crash/ast.json deleted file mode 100644 index 28eb5523df..0000000000 --- a/parser/testdata/01391_join_on_dict_crash/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery t (children 3)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " ColumnDeclaration click_city_id (children 1)" - }, - { - "explain": " DataType UInt32" - }, - { - "explain": " ColumnDeclaration click_country_id (children 1)" - }, - { - "explain": " DataType UInt32" - }, - { - "explain": " Storage definition (children 1)" - }, - { - "explain": " Function Memory" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001329086, - "rows_read": 10, - "bytes_read": 364 - } -} diff --git a/parser/testdata/01391_limit_overflow/ast.json b/parser/testdata/01391_limit_overflow/ast.json deleted file mode 100644 index c2f9556cb1..0000000000 --- a/parser/testdata/01391_limit_overflow/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 5)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_9223372036854775807" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001287378, - "rows_read": 16, - "bytes_read": 610 - } -} diff --git a/parser/testdata/01392_column_resolve/ast.json b/parser/testdata/01392_column_resolve/ast.json deleted file mode 100644 index ccd986bfa6..0000000000 --- a/parser/testdata/01392_column_resolve/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery tableConversion (children 3)" - }, - { - "explain": " Identifier tableConversion" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " ColumnDeclaration conversionId (children 1)" - }, - { - "explain": " DataType String" - }, - { - "explain": " ColumnDeclaration value (children 1)" - }, - { - "explain": " DataType Nullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " DataType Double" - }, - { - "explain": " Storage definition (children 1)" - }, - { - "explain": " Function Log (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.00102632, - "rows_read": 13, - "bytes_read": 499 - } -} diff --git a/parser/testdata/01396_low_cardinality_fixed_string_default/ast.json b/parser/testdata/01396_low_cardinality_fixed_string_default/ast.json deleted file mode 100644 index 34f50a3021..0000000000 --- a/parser/testdata/01396_low_cardinality_fixed_string_default/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00136448, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01396_negative_datetime_saturate_to_zero/ast.json b/parser/testdata/01396_negative_datetime_saturate_to_zero/ast.json deleted file mode 100644 index 5d8e14b5cb..0000000000 --- a/parser/testdata/01396_negative_datetime_saturate_to_zero/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greater (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toTimeZone (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function now (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Literal 'Asia\/Istanbul'" - }, - { - "explain": " Literal '1970-01-01 00:00:00'" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001711765, - "rows_read": 12, - "bytes_read": 472 - } -} diff --git a/parser/testdata/01397_in_bad_arguments/ast.json b/parser/testdata/01397_in_bad_arguments/ast.json deleted file mode 100644 index 760a6d1d1d..0000000000 --- a/parser/testdata/01397_in_bad_arguments/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_1, UInt64_1, UInt64_1)" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001239341, - "rows_read": 7, - "bytes_read": 293 - } -} diff --git a/parser/testdata/01398_in_tuple_func/ast.json b/parser/testdata/01398_in_tuple_func/ast.json deleted file mode 100644 index 8b8a4c4546..0000000000 --- a/parser/testdata/01398_in_tuple_func/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Set" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001903297, - "rows_read": 15, - "bytes_read": 512 - } -} diff --git a/parser/testdata/01400_join_get_with_multi_keys/ast.json b/parser/testdata/01400_join_get_with_multi_keys/ast.json deleted file mode 100644 index 696502cefe..0000000000 --- a/parser/testdata/01400_join_get_with_multi_keys/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_joinGet (children 1)" - }, - { - "explain": " Identifier test_joinGet" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001281321, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01402_cast_nullable_string_to_enum/ast.json b/parser/testdata/01402_cast_nullable_string_to_enum/ast.json deleted file mode 100644 index 77d6d91676..0000000000 --- a/parser/testdata/01402_cast_nullable_string_to_enum/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001350655, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01403_datetime64_constant_arg/ast.json b/parser/testdata/01403_datetime64_constant_arg/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01403_datetime64_constant_arg/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01404_roundUpToPowerOfTwoOrZero_safety/ast.json b/parser/testdata/01404_roundUpToPowerOfTwoOrZero_safety/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01404_roundUpToPowerOfTwoOrZero_safety/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01407_lambda_arrayJoin/ast.json b/parser/testdata/01407_lambda_arrayJoin/ast.json deleted file mode 100644 index 6e14a3e3ad..0000000000 --- a/parser/testdata/01407_lambda_arrayJoin/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayFilter (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal Array_[NULL]" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.001190665, - "rows_read": 26, - "bytes_read": 1060 - } -} diff --git a/parser/testdata/01408_range_overflow/ast.json b/parser/testdata/01408_range_overflow/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01408_range_overflow/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01409_topK_merge/ast.json b/parser/testdata/01409_topK_merge/ast.json deleted file mode 100644 index 6df819c35d..0000000000 --- a/parser/testdata/01409_topK_merge/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data_01409 (children 1)" - }, - { - "explain": " Identifier data_01409" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00129564, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01410_full_join_and_null_predicates/ast.json b/parser/testdata/01410_full_join_and_null_predicates/ast.json deleted file mode 100644 index 76980a7914..0000000000 --- a/parser/testdata/01410_full_join_and_null_predicates/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery l (children 1)" - }, - { - "explain": " Identifier l" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001101747, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01410_nullable_key_and_index/ast.json b/parser/testdata/01410_nullable_key_and_index/ast.json deleted file mode 100644 index d06ba598c8..0000000000 --- a/parser/testdata/01410_nullable_key_and_index/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery nullable_key (children 1)" - }, - { - "explain": " Identifier nullable_key" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00125814, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01410_nullable_key_and_index_negate_cond/ast.json b/parser/testdata/01410_nullable_key_and_index_negate_cond/ast.json deleted file mode 100644 index 93f6a1b9b1..0000000000 --- a/parser/testdata/01410_nullable_key_and_index_negate_cond/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_23634 (children 1)" - }, - { - "explain": " Identifier test_23634" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001483287, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01411_from_unixtime/ast.json b/parser/testdata/01411_from_unixtime/ast.json deleted file mode 100644 index 608c7271ed..0000000000 --- a/parser/testdata/01411_from_unixtime/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function formatDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function FROM_UNIXTIME (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_123" - }, - { - "explain": " Literal '%Y-%m-%d %R:%S'" - }, - { - "explain": " Literal 'UTC'" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001200503, - "rows_read": 11, - "bytes_read": 427 - } -} diff --git a/parser/testdata/01411_xor_itai_shirav/ast.json b/parser/testdata/01411_xor_itai_shirav/ast.json deleted file mode 100644 index f78029466d..0000000000 --- a/parser/testdata/01411_xor_itai_shirav/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function xor (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.00132754, - "rows_read": 8, - "bytes_read": 286 - } -} diff --git a/parser/testdata/01412_group_array_moving_shard/ast.json b/parser/testdata/01412_group_array_moving_shard/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01412_group_array_moving_shard/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01412_mod_float/ast.json b/parser/testdata/01412_mod_float/ast.json deleted file mode 100644 index 6e0c82479f..0000000000 --- a/parser/testdata/01412_mod_float/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_8.5 (alias a)" - }, - { - "explain": " Literal Float64_2.5 (alias b)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function negate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Identifier b" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function negate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier b" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function negate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function negate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier b" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001459912, - "rows_read": 31, - "bytes_read": 1141 - } -} diff --git a/parser/testdata/01412_optimize_deduplicate_bug/ast.json b/parser/testdata/01412_optimize_deduplicate_bug/ast.json deleted file mode 100644 index cfd2547e9a..0000000000 --- a/parser/testdata/01412_optimize_deduplicate_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tesd_dedupl (children 1)" - }, - { - "explain": " Identifier tesd_dedupl" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001076686, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01412_row_from_totals/ast.json b/parser/testdata/01412_row_from_totals/ast.json deleted file mode 100644 index be0d97b6b7..0000000000 --- a/parser/testdata/01412_row_from_totals/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tracking_events_tmp (children 1)" - }, - { - "explain": " Identifier tracking_events_tmp" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001737267, - "rows_read": 2, - "bytes_read": 90 - } -} diff --git a/parser/testdata/01413_allow_non_metadata_alters/ast.json b/parser/testdata/01413_allow_non_metadata_alters/ast.json deleted file mode 100644 index 15825384a3..0000000000 --- a/parser/testdata/01413_allow_non_metadata_alters/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery non_metadata_alters (children 1)" - }, - { - "explain": " Identifier non_metadata_alters" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001586261, - "rows_read": 2, - "bytes_read": 90 - } -} diff --git a/parser/testdata/01413_alter_update_supertype/ast.json b/parser/testdata/01413_alter_update_supertype/ast.json deleted file mode 100644 index 2593d8b1c1..0000000000 --- a/parser/testdata/01413_alter_update_supertype/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001574665, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01413_if_array_uuid/ast.json b/parser/testdata/01413_if_array_uuid/ast.json deleted file mode 100644 index 170d2e9cd0..0000000000 --- a/parser/testdata/01413_if_array_uuid/ast.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUUID (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '00000000-e1fe-11e9-bb8f-853d60c00749'" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUUID (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '11111111-e1fe-11e9-bb8f-853d60c00749'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_5" - } - ], - - "rows": 29, - - "statistics": - { - "elapsed": 0.001691042, - "rows_read": 29, - "bytes_read": 1220 - } -} diff --git a/parser/testdata/01413_rows_events/ast.json b/parser/testdata/01413_rows_events/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01413_rows_events/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01413_truncate_without_table_keyword/ast.json b/parser/testdata/01413_truncate_without_table_keyword/ast.json deleted file mode 100644 index 39d9289a4c..0000000000 --- a/parser/testdata/01413_truncate_without_table_keyword/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery truncate_test (children 1)" - }, - { - "explain": " Identifier truncate_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001469462, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01414_bloom_filter_index_with_const_column/ast.json b/parser/testdata/01414_bloom_filter_index_with_const_column/ast.json deleted file mode 100644 index 230147a807..0000000000 --- a/parser/testdata/01414_bloom_filter_index_with_const_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_bloom_filter_index (children 1)" - }, - { - "explain": " Identifier test_bloom_filter_index" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001129007, - "rows_read": 2, - "bytes_read": 98 - } -} diff --git a/parser/testdata/01414_freeze_does_not_prevent_alters/ast.json b/parser/testdata/01414_freeze_does_not_prevent_alters/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01414_freeze_does_not_prevent_alters/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01414_low_cardinality_nullable/ast.json b/parser/testdata/01414_low_cardinality_nullable/ast.json deleted file mode 100644 index 083c813eef..0000000000 --- a/parser/testdata/01414_low_cardinality_nullable/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001499363, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01414_mutations_and_errors/ast.json b/parser/testdata/01414_mutations_and_errors/ast.json deleted file mode 100644 index fe532cc7b4..0000000000 --- a/parser/testdata/01414_mutations_and_errors/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mutation_table (children 1)" - }, - { - "explain": " Identifier mutation_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001355982, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01414_push_predicate_when_contains_with_clause/ast.json b/parser/testdata/01414_push_predicate_when_contains_with_clause/ast.json deleted file mode 100644 index 6c4a6d3067..0000000000 --- a/parser/testdata/01414_push_predicate_when_contains_with_clause/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery numbers_indexed (children 1)" - }, - { - "explain": " Identifier numbers_indexed" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001213146, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/01415_inconsistent_merge_tree_settings/ast.json b/parser/testdata/01415_inconsistent_merge_tree_settings/ast.json deleted file mode 100644 index 640a587e15..0000000000 --- a/parser/testdata/01415_inconsistent_merge_tree_settings/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001182733, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01415_overlimiting_threads_for_repica_bug/ast.json b/parser/testdata/01415_overlimiting_threads_for_repica_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01415_overlimiting_threads_for_repica_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01415_table_function_view/ast.json b/parser/testdata/01415_table_function_view/ast.json deleted file mode 100644 index 96b0348059..0000000000 --- a/parser/testdata/01415_table_function_view/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function view (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001297485, - "rows_read": 15, - "bytes_read": 603 - } -} diff --git a/parser/testdata/01416_clear_column_pk/ast.json b/parser/testdata/01416_clear_column_pk/ast.json deleted file mode 100644 index 8beff9ab7f..0000000000 --- a/parser/testdata/01416_clear_column_pk/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_with_pk_clear (children 1)" - }, - { - "explain": " Identifier table_with_pk_clear" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00100595, - "rows_read": 2, - "bytes_read": 90 - } -} diff --git a/parser/testdata/01416_join_totals_header_bug/ast.json b/parser/testdata/01416_join_totals_header_bug/ast.json deleted file mode 100644 index 97fbfeceab..0000000000 --- a/parser/testdata/01416_join_totals_header_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tableCommon (children 1)" - }, - { - "explain": " Identifier tableCommon" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001465284, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01417_update_permutation_crash/ast.json b/parser/testdata/01417_update_permutation_crash/ast.json deleted file mode 100644 index a4147bb362..0000000000 --- a/parser/testdata/01417_update_permutation_crash/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tuple (alias t) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers_mt (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1000001" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.002047893, - "rows_read": 21, - "bytes_read": 788 - } -} diff --git a/parser/testdata/01418_custom_settings/ast.json b/parser/testdata/01418_custom_settings/ast.json deleted file mode 100644 index 63bd819473..0000000000 --- a/parser/testdata/01418_custom_settings/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DROP SETTINGS PROFILE query" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001186789, - "rows_read": 1, - "bytes_read": 35 - } -} diff --git a/parser/testdata/01418_index_analysis_bug/ast.json b/parser/testdata/01418_index_analysis_bug/ast.json deleted file mode 100644 index 2d4af74710..0000000000 --- a/parser/testdata/01418_index_analysis_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mytable_local (children 1)" - }, - { - "explain": " Identifier mytable_local" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00140643, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01418_query_scope_constants_and_remote/ast.json b/parser/testdata/01418_query_scope_constants_and_remote/ast.json deleted file mode 100644 index 1f350d8ca3..0000000000 --- a/parser/testdata/01418_query_scope_constants_and_remote/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greaterOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier c" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function randConstant (alias c) (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function remote (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '127.0.0.{1,2}'" - }, - { - "explain": " Function numbers_mt (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.002025664, - "rows_read": 27, - "bytes_read": 1185 - } -} diff --git a/parser/testdata/01419_materialize_null/ast.json b/parser/testdata/01419_materialize_null/ast.json deleted file mode 100644 index e3c0ac05c0..0000000000 --- a/parser/testdata/01419_materialize_null/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function isConstant (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal NULL" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001455659, - "rows_read": 7, - "bytes_read": 259 - } -} diff --git a/parser/testdata/01419_merge_tree_settings_sanity_check/ast.json b/parser/testdata/01419_merge_tree_settings_sanity_check/ast.json deleted file mode 100644 index 9f927b8768..0000000000 --- a/parser/testdata/01419_merge_tree_settings_sanity_check/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mytable_local (children 1)" - }, - { - "explain": " Identifier mytable_local" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001296933, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01419_skip_index_compact_parts/ast.json b/parser/testdata/01419_skip_index_compact_parts/ast.json deleted file mode 100644 index 4b45cbd4fc..0000000000 --- a/parser/testdata/01419_skip_index_compact_parts/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery index_compact (children 1)" - }, - { - "explain": " Identifier index_compact" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00132683, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01420_logical_functions_materialized_null/ast.json b/parser/testdata/01420_logical_functions_materialized_null/ast.json deleted file mode 100644 index 72f54c1fa7..0000000000 --- a/parser/testdata/01420_logical_functions_materialized_null/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function and (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001208737, - "rows_read": 8, - "bytes_read": 282 - } -} diff --git a/parser/testdata/01421_array_nullable_element_nullable_index/ast.json b/parser/testdata/01421_array_nullable_element_nullable_index/ast.json deleted file mode 100644 index d63e48a7d4..0000000000 --- a/parser/testdata/01421_array_nullable_element_nullable_index/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function arrayElement (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001177528, - "rows_read": 15, - "bytes_read": 600 - } -} diff --git a/parser/testdata/01421_assert_in_in/ast.json b/parser/testdata/01421_assert_in_in/ast.json deleted file mode 100644 index 3ee82dc1af..0000000000 --- a/parser/testdata/01421_assert_in_in/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Tuple_(UInt64_1, Tuple_(UInt64_2, UInt64_3))" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.000897212, - "rows_read": 17, - "bytes_read": 707 - } -} diff --git a/parser/testdata/01422_array_nullable_element_nullable_index/ast.json b/parser/testdata/01422_array_nullable_element_nullable_index/ast.json deleted file mode 100644 index dc0e0c0534..0000000000 --- a/parser/testdata/01422_array_nullable_element_nullable_index/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_1, NULL]" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001449767, - "rows_read": 10, - "bytes_read": 399 - } -} diff --git a/parser/testdata/01422_map_skip_null/ast.json b/parser/testdata/01422_map_skip_null/ast.json deleted file mode 100644 index 6b79443a30..0000000000 --- a/parser/testdata/01422_map_skip_null/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function minMap (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_1]" - }, - { - "explain": " Literal Array_[NULL]" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_[UInt64_1]" - }, - { - "explain": " Literal Array_[NULL]" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001143215, - "rows_read": 18, - "bytes_read": 753 - } -} diff --git a/parser/testdata/01423_if_nullable_cond/ast.json b/parser/testdata/01423_if_nullable_cond/ast.json deleted file mode 100644 index 8fcbae8f14..0000000000 --- a/parser/testdata/01423_if_nullable_cond/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function if (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal 'Nullable(UInt8)'" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal 'Nullable(UInt8)'" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function dumpColumnStructure (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001194216, - "rows_read": 24, - "bytes_read": 920 - } -} diff --git a/parser/testdata/01424_parse_date_time_bad_date/ast.json b/parser/testdata/01424_parse_date_time_bad_date/ast.json deleted file mode 100644 index bccbc8fe43..0000000000 --- a/parser/testdata/01424_parse_date_time_bad_date/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function parseDateTime64BestEffort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2.55'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.00102402, - "rows_read": 7, - "bytes_read": 276 - } -} diff --git a/parser/testdata/01425_decimal_parse_big_negative_exponent/ast.json b/parser/testdata/01425_decimal_parse_big_negative_exponent/ast.json deleted file mode 100644 index 241ee1f3ed..0000000000 --- a/parser/testdata/01425_decimal_parse_big_negative_exponent/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '-1E9-1E9-1E9-1E9' (alias x)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001155517, - "rows_read": 9, - "bytes_read": 338 - } -} diff --git a/parser/testdata/01425_default_value_of_type_name/ast.json b/parser/testdata/01425_default_value_of_type_name/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01425_default_value_of_type_name/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01426_geohash_constants/ast.json b/parser/testdata/01426_geohash_constants/ast.json deleted file mode 100644 index 42da1ffe8b..0000000000 --- a/parser/testdata/01426_geohash_constants/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function geohashesInBox (children 1)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Literal Float64_1" - }, - { - "explain": " Literal Float64_2" - }, - { - "explain": " Literal Float64_3" - }, - { - "explain": " Literal Float64_4" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001346114, - "rows_read": 11, - "bytes_read": 391 - } -} diff --git a/parser/testdata/01427_pk_and_expression_with_different_type/ast.json b/parser/testdata/01427_pk_and_expression_with_different_type/ast.json deleted file mode 100644 index 70206bbaa4..0000000000 --- a/parser/testdata/01427_pk_and_expression_with_different_type/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery pk (children 1)" - }, - { - "explain": " Identifier pk" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001603978, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01428_h3_range_check/ast.json b/parser/testdata/01428_h3_range_check/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01428_h3_range_check/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01428_hash_set_nan_key/ast.json b/parser/testdata/01428_hash_set_nan_key/ast.json deleted file mode 100644 index 3de39e8ea3..0000000000 --- a/parser/testdata/01428_hash_set_nan_key/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function uniqExact (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_nan" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1000" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001561111, - "rows_read": 13, - "bytes_read": 520 - } -} diff --git a/parser/testdata/01428_nullable_asof_join/ast.json b/parser/testdata/01428_nullable_asof_join/ast.json deleted file mode 100644 index 714af8631f..0000000000 --- a/parser/testdata/01428_nullable_asof_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001158966, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01429_join_on_error_messages/ast.json b/parser/testdata/01429_join_on_error_messages/ast.json deleted file mode 100644 index 6dca18ae0a..0000000000 --- a/parser/testdata/01429_join_on_error_messages/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias A) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias a)" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias B) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias b)" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.001570879, - "rows_read": 26, - "bytes_read": 1085 - } -} diff --git a/parser/testdata/01430_fix_any_rewrite_aliases/ast.json b/parser/testdata/01430_fix_any_rewrite_aliases/ast.json deleted file mode 100644 index 1d500ea302..0000000000 --- a/parser/testdata/01430_fix_any_rewrite_aliases/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function any (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function if (alias a_) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Identifier a_" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.00160022, - "rows_read": 24, - "bytes_read": 952 - } -} diff --git a/parser/testdata/01430_modify_sample_by_zookeeper_long/ast.json b/parser/testdata/01430_modify_sample_by_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01430_modify_sample_by_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01430_moving_sum_empty_state/ast.json b/parser/testdata/01430_moving_sum_empty_state/ast.json deleted file mode 100644 index 7fc159812c..0000000000 --- a/parser/testdata/01430_moving_sum_empty_state/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupArrayMovingSum (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function remote (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '127.0.0.{1,2}'" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001599723, - "rows_read": 18, - "bytes_read": 724 - } -} diff --git a/parser/testdata/01431_finish_sorting_with_consts/ast.json b/parser/testdata/01431_finish_sorting_with_consts/ast.json deleted file mode 100644 index 09635d0eed..0000000000 --- a/parser/testdata/01431_finish_sorting_with_consts/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery pk_func (children 1)" - }, - { - "explain": " Identifier pk_func" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001682912, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01431_utf8_ubsan/ast.json b/parser/testdata/01431_utf8_ubsan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01431_utf8_ubsan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01432_parse_date_time_best_effort_timestamp/ast.json b/parser/testdata/01432_parse_date_time_best_effort_timestamp/ast.json deleted file mode 100644 index c87d13ad82..0000000000 --- a/parser/testdata/01432_parse_date_time_best_effort_timestamp/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function parseDateTimeBestEffort (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1596752940'" - }, - { - "explain": " Literal 'Asia\/Istanbul'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001452853, - "rows_read": 8, - "bytes_read": 317 - } -} diff --git a/parser/testdata/01433_hex_float/ast.json b/parser/testdata/01433_hex_float/ast.json deleted file mode 100644 index 4026fb1f4f..0000000000 --- a/parser/testdata/01433_hex_float/ast.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery t (children 2)" - }, - { - "explain": " Identifier t" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration x (children 1)" - }, - { - "explain": " DataType Float64" - } - ], - - "rows": 6, - - "statistics": - { - "elapsed": 0.001249077, - "rows_read": 6, - "bytes_read": 203 - } -} diff --git a/parser/testdata/01434_netloc_fuzz/ast.json b/parser/testdata/01434_netloc_fuzz/ast.json deleted file mode 100644 index 3669d67aab..0000000000 --- a/parser/testdata/01434_netloc_fuzz/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function netloc (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '<\\'[%UzO'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001507661, - "rows_read": 7, - "bytes_read": 261 - } -} diff --git a/parser/testdata/01435_lcm_overflow/ast.json b/parser/testdata/01435_lcm_overflow/ast.json deleted file mode 100644 index fec51bae37..0000000000 --- a/parser/testdata/01435_lcm_overflow/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function lcm (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_15" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001631819, - "rows_read": 8, - "bytes_read": 288 - } -} diff --git a/parser/testdata/01436_storage_merge_with_join_push_down/ast.json b/parser/testdata/01436_storage_merge_with_join_push_down/ast.json deleted file mode 100644 index ef81b8751c..0000000000 --- a/parser/testdata/01436_storage_merge_with_join_push_down/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test1 (children 1)" - }, - { - "explain": " Identifier test1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001188645, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01440_big_int_arithm/ast.json b/parser/testdata/01440_big_int_arithm/ast.json deleted file mode 100644 index 26d2baa3c8..0000000000 --- a/parser/testdata/01440_big_int_arithm/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function plus (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toInt128 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Function toInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function plus (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toInt256 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Function toInt8 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.001694493, - "rows_read": 26, - "bytes_read": 1013 - } -} diff --git a/parser/testdata/01440_big_int_exotic_casts/ast.json b/parser/testdata/01440_big_int_exotic_casts/ast.json deleted file mode 100644 index f2cb8ee138..0000000000 --- a/parser/testdata/01440_big_int_exotic_casts/ast.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Function multiply (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toUInt32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toDecimal64 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function toDecimal128 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal UInt64_6" - }, - { - "explain": " Function toDecimal256 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal UInt64_7" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers_mt (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - } - ], - - "rows": 38, - - "statistics": - { - "elapsed": 0.002426246, - "rows_read": 38, - "bytes_read": 1447 - } -} diff --git a/parser/testdata/01440_big_int_least_greatest/ast.json b/parser/testdata/01440_big_int_least_greatest/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01440_big_int_least_greatest/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01440_big_int_shift/ast.json b/parser/testdata/01440_big_int_shift/ast.json deleted file mode 100644 index c5c9cee465..0000000000 --- a/parser/testdata/01440_big_int_shift/ast.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function bitShiftLeft (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toInt128 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function bitShiftRight (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_127" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - } - ], - - "rows": 29, - - "statistics": - { - "elapsed": 0.001604217, - "rows_read": 29, - "bytes_read": 1129 - } -} diff --git a/parser/testdata/01440_to_date_monotonicity/ast.json b/parser/testdata/01440_to_date_monotonicity/ast.json deleted file mode 100644 index fc261fdf07..0000000000 --- a/parser/testdata/01440_to_date_monotonicity/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tdm (children 1)" - }, - { - "explain": " Identifier tdm" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001537029, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01441_array_combinator/ast.json b/parser/testdata/01441_array_combinator/ast.json deleted file mode 100644 index 279840ae77..0000000000 --- a/parser/testdata/01441_array_combinator/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (alias k) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Function sumArray (alias v) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function emptyArrayUInt8 (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001783345, - "rows_read": 23, - "bytes_read": 891 - } -} diff --git a/parser/testdata/01441_low_cardinality_array_index/ast.json b/parser/testdata/01441_low_cardinality_array_index/ast.json deleted file mode 100644 index 83f3ef573c..0000000000 --- a/parser/testdata/01441_low_cardinality_array_index/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001404785, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01442_date_time_with_params/ast.json b/parser/testdata/01442_date_time_with_params/ast.json deleted file mode 100644 index 97a5a2ca1f..0000000000 --- a/parser/testdata/01442_date_time_with_params/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000987735, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01442_h3kring_range_check/ast.json b/parser/testdata/01442_h3kring_range_check/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01442_h3kring_range_check/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01447_json_strings/ast.json b/parser/testdata/01447_json_strings/ast.json deleted file mode 100644 index f31bf750b4..0000000000 --- a/parser/testdata/01447_json_strings/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001169762, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01448_json_compact_strings_each_row/ast.json b/parser/testdata/01448_json_compact_strings_each_row/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01448_json_compact_strings_each_row/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01449_json_compact_strings/ast.json b/parser/testdata/01449_json_compact_strings/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01449_json_compact_strings/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01450_set_null_const/ast.json b/parser/testdata/01450_set_null_const/ast.json deleted file mode 100644 index ff6e8f99b0..0000000000 --- a/parser/testdata/01450_set_null_const/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_mtree (children 1)" - }, - { - "explain": " Identifier test_mtree" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000999686, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01451_detach_drop_part/ast.json b/parser/testdata/01451_detach_drop_part/ast.json deleted file mode 100644 index 7fad24c6d6..0000000000 --- a/parser/testdata/01451_detach_drop_part/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mt_01451 (children 1)" - }, - { - "explain": " Identifier mt_01451" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000936728, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01451_normalize_query/ast.json b/parser/testdata/01451_normalize_query/ast.json deleted file mode 100644 index 4b08d14a83..0000000000 --- a/parser/testdata/01451_normalize_query/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function normalizeQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'SELECT 1'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001270608, - "rows_read": 7, - "bytes_read": 269 - } -} diff --git a/parser/testdata/01451_replicated_detach_drop_and_quorum_long/ast.json b/parser/testdata/01451_replicated_detach_drop_and_quorum_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01451_replicated_detach_drop_and_quorum_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01451_replicated_detach_drop_part_long/ast.json b/parser/testdata/01451_replicated_detach_drop_part_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01451_replicated_detach_drop_part_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01452_normalized_query_hash/ast.json b/parser/testdata/01452_normalized_query_hash/ast.json deleted file mode 100644 index 9728719c38..0000000000 --- a/parser/testdata/01452_normalized_query_hash/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function normalizedQueryHash (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'SELECT 1'" - }, - { - "explain": " Function normalizedQueryHash (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'SELECT 2'" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001176912, - "rows_read": 12, - "bytes_read": 491 - } -} diff --git a/parser/testdata/01453_fixsed_string_sort/ast.json b/parser/testdata/01453_fixsed_string_sort/ast.json deleted file mode 100644 index 9ffb554df6..0000000000 --- a/parser/testdata/01453_fixsed_string_sort/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery badFixedStringSort (children 1)" - }, - { - "explain": " Identifier badFixedStringSort" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001304994, - "rows_read": 2, - "bytes_read": 88 - } -} diff --git a/parser/testdata/01453_normalize_query_alias_uuid/ast.json b/parser/testdata/01453_normalize_query_alias_uuid/ast.json deleted file mode 100644 index 5a8bbc2814..0000000000 --- a/parser/testdata/01453_normalize_query_alias_uuid/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function normalizeQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'SELECT 1 AS `aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee`'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001647162, - "rows_read": 7, - "bytes_read": 311 - } -} diff --git a/parser/testdata/01455_default_compression/ast.json b/parser/testdata/01455_default_compression/ast.json deleted file mode 100644 index cae1607635..0000000000 --- a/parser/testdata/01455_default_compression/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery compress_table (children 1)" - }, - { - "explain": " Identifier compress_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001646142, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01455_nullable_type_with_if_agg_combinator/ast.json b/parser/testdata/01455_nullable_type_with_if_agg_combinator/ast.json deleted file mode 100644 index 069daae721..0000000000 --- a/parser/testdata/01455_nullable_type_with_if_agg_combinator/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001052875, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01455_optimize_trivial_insert_select/ast.json b/parser/testdata/01455_optimize_trivial_insert_select/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01455_optimize_trivial_insert_select/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01455_rank_correlation_spearman/ast.json b/parser/testdata/01455_rank_correlation_spearman/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01455_rank_correlation_spearman/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01455_shard_leaf_max_rows_bytes_to_read/ast.json b/parser/testdata/01455_shard_leaf_max_rows_bytes_to_read/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01455_shard_leaf_max_rows_bytes_to_read/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01455_time_zones/ast.json b/parser/testdata/01455_time_zones/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01455_time_zones/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01456_ast_optimizations_over_distributed/ast.json b/parser/testdata/01456_ast_optimizations_over_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01456_ast_optimizations_over_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01456_low_cardinality_sorting_bugfix/ast.json b/parser/testdata/01456_low_cardinality_sorting_bugfix/ast.json deleted file mode 100644 index fb94e327bf..0000000000 --- a/parser/testdata/01456_low_cardinality_sorting_bugfix/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery order_test1 (children 1)" - }, - { - "explain": " Identifier order_test1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001125787, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01456_min_negative_decimal_formatting/ast.json b/parser/testdata/01456_min_negative_decimal_formatting/ast.json deleted file mode 100644 index 02efd9661e..0000000000 --- a/parser/testdata/01456_min_negative_decimal_formatting/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal64 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001241073, - "rows_read": 8, - "bytes_read": 312 - } -} diff --git a/parser/testdata/01456_modify_column_type_via_add_drop_update/ast.json b/parser/testdata/01456_modify_column_type_via_add_drop_update/ast.json deleted file mode 100644 index dd19bc5249..0000000000 --- a/parser/testdata/01456_modify_column_type_via_add_drop_update/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tbl (children 1)" - }, - { - "explain": " Identifier tbl" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001217854, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01457_compile_expressions_fuzzer/ast.json b/parser/testdata/01457_compile_expressions_fuzzer/ast.json deleted file mode 100644 index dde38222cc..0000000000 --- a/parser/testdata/01457_compile_expressions_fuzzer/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001404736, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01457_create_as_table_function_structure/ast.json b/parser/testdata/01457_create_as_table_function_structure/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01457_create_as_table_function_structure/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01457_int256_hashing/ast.json b/parser/testdata/01457_int256_hashing/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01457_int256_hashing/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01457_min_index_granularity_bytes_setting/ast.json b/parser/testdata/01457_min_index_granularity_bytes_setting/ast.json deleted file mode 100644 index cedd602295..0000000000 --- a/parser/testdata/01457_min_index_granularity_bytes_setting/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery invalid_min_index_granularity_bytes_setting (children 1)" - }, - { - "explain": " Identifier invalid_min_index_granularity_bytes_setting" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001899778, - "rows_read": 2, - "bytes_read": 138 - } -} diff --git a/parser/testdata/01457_order_by_limit/ast.json b/parser/testdata/01457_order_by_limit/ast.json deleted file mode 100644 index a3eca75e32..0000000000 --- a/parser/testdata/01457_order_by_limit/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery order_by_another (children 1)" - }, - { - "explain": " Identifier order_by_another" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001602259, - "rows_read": 2, - "bytes_read": 84 - } -} diff --git a/parser/testdata/01457_order_by_nulls_first/ast.json b/parser/testdata/01457_order_by_nulls_first/ast.json deleted file mode 100644 index 698adef491..0000000000 --- a/parser/testdata/01457_order_by_nulls_first/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery order_by_nulls_first (children 1)" - }, - { - "explain": " Identifier order_by_nulls_first" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001685377, - "rows_read": 2, - "bytes_read": 92 - } -} diff --git a/parser/testdata/01458_count_digits/ast.json b/parser/testdata/01458_count_digits/ast.json deleted file mode 100644 index 42398949f5..0000000000 --- a/parser/testdata/01458_count_digits/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function countDigits (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function countDigits (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_42" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Function countDigits (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_4.2" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001291395, - "rows_read": 22, - "bytes_read": 867 - } -} diff --git a/parser/testdata/01458_is_decimal_overflow/ast.json b/parser/testdata/01458_is_decimal_overflow/ast.json deleted file mode 100644 index a0bcb9f4ad..0000000000 --- a/parser/testdata/01458_is_decimal_overflow/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function isDecimalOverflow (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001337575, - "rows_read": 11, - "bytes_read": 423 - } -} diff --git a/parser/testdata/01458_named_tuple_millin/ast.json b/parser/testdata/01458_named_tuple_millin/ast.json deleted file mode 100644 index 8ded8804df..0000000000 --- a/parser/testdata/01458_named_tuple_millin/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tuple (children 1)" - }, - { - "explain": " Identifier tuple" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001057839, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01459_decimal_casts/ast.json b/parser/testdata/01459_decimal_casts/ast.json deleted file mode 100644 index e0d4c01080..0000000000 --- a/parser/testdata/01459_decimal_casts/ast.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 5)" - }, - { - "explain": " Function toUInt32 (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toDecimal64 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Function toDecimal128 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal UInt64_6" - }, - { - "explain": " Function toDecimal256 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal UInt64_7" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 29, - - "statistics": - { - "elapsed": 0.001286131, - "rows_read": 29, - "bytes_read": 1090 - } -} diff --git a/parser/testdata/01459_default_value_of_argument_type_nullptr_dereference/ast.json b/parser/testdata/01459_default_value_of_argument_type_nullptr_dereference/ast.json deleted file mode 100644 index 4b1344de77..0000000000 --- a/parser/testdata/01459_default_value_of_argument_type_nullptr_dereference/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function defaultValueOfTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function FQDN (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.00113181, - "rows_read": 8, - "bytes_read": 314 - } -} diff --git a/parser/testdata/01460_allow_dollar_and_number_in_identifier/ast.json b/parser/testdata/01460_allow_dollar_and_number_in_identifier/ast.json deleted file mode 100644 index 29883e92f7..0000000000 --- a/parser/testdata/01460_allow_dollar_and_number_in_identifier/ast.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias $alias$name$)" - }, - { - "explain": " Identifier TSVWithNames" - } - ], - - "rows": 6, - - "statistics": - { - "elapsed": 0.001468206, - "rows_read": 6, - "bytes_read": 230 - } -} diff --git a/parser/testdata/01460_mark_inclusion_search_crash/ast.json b/parser/testdata/01460_mark_inclusion_search_crash/ast.json deleted file mode 100644 index 2586c77b27..0000000000 --- a/parser/testdata/01460_mark_inclusion_search_crash/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery pk (children 1)" - }, - { - "explain": " Identifier pk" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001460094, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01461_alter_table_function/ast.json b/parser/testdata/01461_alter_table_function/ast.json deleted file mode 100644 index 90befe6433..0000000000 --- a/parser/testdata/01461_alter_table_function/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_from_remote (children 1)" - }, - { - "explain": " Identifier table_from_remote" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.0010409, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/01461_query_start_time_microseconds/ast.json b/parser/testdata/01461_query_start_time_microseconds/ast.json deleted file mode 100644 index 65c9475087..0000000000 --- a/parser/testdata/01461_query_start_time_microseconds/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001495021, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01462_test_codec_on_alias/ast.json b/parser/testdata/01462_test_codec_on_alias/ast.json deleted file mode 100644 index e1617e4cb3..0000000000 --- a/parser/testdata/01462_test_codec_on_alias/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery compression_codec_on_alias (children 1)" - }, - { - "explain": " Identifier compression_codec_on_alias" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001066811, - "rows_read": 2, - "bytes_read": 104 - } -} diff --git a/parser/testdata/01463_resample_overflow/ast.json b/parser/testdata/01463_resample_overflow/ast.json deleted file mode 100644 index 97f110385e..0000000000 --- a/parser/testdata/01463_resample_overflow/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupArrayResample (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function toInt64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " Literal UInt64_9223372036854775807" - }, - { - "explain": " Literal UInt64_9223372036854775807" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_7" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001237909, - "rows_read": 20, - "bytes_read": 826 - } -} diff --git a/parser/testdata/01465_ttl_recompression/ast.json b/parser/testdata/01465_ttl_recompression/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01465_ttl_recompression/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01470_columns_transformers/ast.json b/parser/testdata/01470_columns_transformers/ast.json deleted file mode 100644 index 3079ddb447..0000000000 --- a/parser/testdata/01470_columns_transformers/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery columns_transformers (children 1)" - }, - { - "explain": " Identifier columns_transformers" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001603351, - "rows_read": 2, - "bytes_read": 92 - } -} diff --git a/parser/testdata/01470_columns_transformers2/ast.json b/parser/testdata/01470_columns_transformers2/ast.json deleted file mode 100644 index f31f679b27..0000000000 --- a/parser/testdata/01470_columns_transformers2/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery columns_transformers (children 1)" - }, - { - "explain": " Identifier columns_transformers" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001384668, - "rows_read": 2, - "bytes_read": 92 - } -} diff --git a/parser/testdata/01470_explain/ast.json b/parser/testdata/01470_explain/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01470_explain/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01470_show_databases_like/ast.json b/parser/testdata/01470_show_databases_like/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01470_show_databases_like/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01470_test_insert_select_asterisk/ast.json b/parser/testdata/01470_test_insert_select_asterisk/ast.json deleted file mode 100644 index ce5ce805ce..0000000000 --- a/parser/testdata/01470_test_insert_select_asterisk/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery insert_select_dst (children 1)" - }, - { - "explain": " Identifier insert_select_dst" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001555192, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/01471_calculate_ttl_during_merge/ast.json b/parser/testdata/01471_calculate_ttl_during_merge/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01471_calculate_ttl_during_merge/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01471_limit_by_format/ast.json b/parser/testdata/01471_limit_by_format/ast.json deleted file mode 100644 index 2d6bd8df14..0000000000 --- a/parser/testdata/01471_limit_by_format/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Explain EXPLAIN SYNTAX (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 5)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001100606, - "rows_read": 14, - "bytes_read": 512 - } -} diff --git a/parser/testdata/01471_top_k_range_check/ast.json b/parser/testdata/01471_top_k_range_check/ast.json deleted file mode 100644 index 2776fc2c1e..0000000000 --- a/parser/testdata/01471_top_k_range_check/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function length (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function topKWeighted (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1025" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001436329, - "rows_read": 17, - "bytes_read": 690 - } -} diff --git a/parser/testdata/01471_with_format/ast.json b/parser/testdata/01471_with_format/ast.json deleted file mode 100644 index c7ff6327d0..0000000000 --- a/parser/testdata/01471_with_format/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Explain EXPLAIN SYNTAX (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001360113, - "rows_read": 8, - "bytes_read": 293 - } -} diff --git a/parser/testdata/01472_many_rows_in_totals/ast.json b/parser/testdata/01472_many_rows_in_totals/ast.json deleted file mode 100644 index d353924fee..0000000000 --- a/parser/testdata/01472_many_rows_in_totals/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001786925, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01472_toBoundsOfInterval_disallow_empty_tz_field/ast.json b/parser/testdata/01472_toBoundsOfInterval_disallow_empty_tz_field/ast.json deleted file mode 100644 index ad9a6fb600..0000000000 --- a/parser/testdata/01472_toBoundsOfInterval_disallow_empty_tz_field/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toStartOfDay (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '2017-12-31 00:00:00'" - }, - { - "explain": " Literal 'UTC'" - }, - { - "explain": " Literal ''" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001003395, - "rows_read": 11, - "bytes_read": 421 - } -} diff --git a/parser/testdata/01473_event_time_microseconds/ast.json b/parser/testdata/01473_event_time_microseconds/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01473_event_time_microseconds/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01473_system_events_zeroes/ast.json b/parser/testdata/01473_system_events_zeroes/ast.json deleted file mode 100644 index ccd4f82b25..0000000000 --- a/parser/testdata/01473_system_events_zeroes/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001376352, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01474_bad_global_join/ast.json b/parser/testdata/01474_bad_global_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01474_bad_global_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01474_decimal_scale_bug/ast.json b/parser/testdata/01474_decimal_scale_bug/ast.json deleted file mode 100644 index c2c3eb31ef..0000000000 --- a/parser/testdata/01474_decimal_scale_bug/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function multiply (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.00160828, - "rows_read": 17, - "bytes_read": 657 - } -} diff --git a/parser/testdata/01474_executable_dictionary/ast.json b/parser/testdata/01474_executable_dictionary/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01474_executable_dictionary/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01475_fix_bigint_shift/ast.json b/parser/testdata/01475_fix_bigint_shift/ast.json deleted file mode 100644 index 5a3360f6e4..0000000000 --- a/parser/testdata/01475_fix_bigint_shift/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bitShiftLeft (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toInt64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Int64_-2" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001582968, - "rows_read": 10, - "bytes_read": 382 - } -} diff --git a/parser/testdata/01475_mutation_with_if/ast.json b/parser/testdata/01475_mutation_with_if/ast.json deleted file mode 100644 index af1f06ae0e..0000000000 --- a/parser/testdata/01475_mutation_with_if/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mutation_table (children 1)" - }, - { - "explain": " Identifier mutation_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001131363, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01475_read_subcolumns/ast.json b/parser/testdata/01475_read_subcolumns/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01475_read_subcolumns/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01475_read_subcolumns_2/ast.json b/parser/testdata/01475_read_subcolumns_2/ast.json deleted file mode 100644 index a9034f0c80..0000000000 --- a/parser/testdata/01475_read_subcolumns_2/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery subcolumns (children 1)" - }, - { - "explain": " Identifier subcolumns" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001148219, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01475_read_subcolumns_3/ast.json b/parser/testdata/01475_read_subcolumns_3/ast.json deleted file mode 100644 index 14a0780503..0000000000 --- a/parser/testdata/01475_read_subcolumns_3/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery null_subcolumns (children 1)" - }, - { - "explain": " Identifier null_subcolumns" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001509525, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/01476_right_full_join_switch/ast.json b/parser/testdata/01476_right_full_join_switch/ast.json deleted file mode 100644 index 556a425533..0000000000 --- a/parser/testdata/01476_right_full_join_switch/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001303134, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01478_not_equi-join_on/ast.json b/parser/testdata/01478_not_equi-join_on/ast.json deleted file mode 100644 index 1ea81934e7..0000000000 --- a/parser/testdata/01478_not_equi-join_on/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias foo) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL (alias a)" - }, - { - "explain": " Literal UInt64_1 (alias b)" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001601326, - "rows_read": 15, - "bytes_read": 614 - } -} diff --git a/parser/testdata/01479_cross_join_9855/ast.json b/parser/testdata/01479_cross_join_9855/ast.json deleted file mode 100644 index 9857aa3419..0000000000 --- a/parser/testdata/01479_cross_join_9855/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001115058, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01480_binary_operator_monotonicity/ast.json b/parser/testdata/01480_binary_operator_monotonicity/ast.json deleted file mode 100644 index 82c0ba6a62..0000000000 --- a/parser/testdata/01480_binary_operator_monotonicity/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery binary_op_mono1 (children 1)" - }, - { - "explain": " Identifier binary_op_mono1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001220691, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/01481_join_with_materialized/ast.json b/parser/testdata/01481_join_with_materialized/ast.json deleted file mode 100644 index 53fcb67eb7..0000000000 --- a/parser/testdata/01481_join_with_materialized/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001222319, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01482_move_to_prewhere_and_cast/ast.json b/parser/testdata/01482_move_to_prewhere_and_cast/ast.json deleted file mode 100644 index c31306e6d2..0000000000 --- a/parser/testdata/01482_move_to_prewhere_and_cast/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery APPLICATION (children 1)" - }, - { - "explain": " Identifier APPLICATION" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00112724, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01483_merge_table_join_and_group_by/ast.json b/parser/testdata/01483_merge_table_join_and_group_by/ast.json deleted file mode 100644 index ff0a41923d..0000000000 --- a/parser/testdata/01483_merge_table_join_and_group_by/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery a (children 1)" - }, - { - "explain": " Identifier a" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001027598, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01485_256_bit_multiply/ast.json b/parser/testdata/01485_256_bit_multiply/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01485_256_bit_multiply/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01486_json_array_output/ast.json b/parser/testdata/01486_json_array_output/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01486_json_array_output/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01490_nullable_string_to_enum/ast.json b/parser/testdata/01490_nullable_string_to_enum/ast.json deleted file mode 100644 index 29b5c081fd..0000000000 --- a/parser/testdata/01490_nullable_string_to_enum/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t_enum (children 1)" - }, - { - "explain": " Identifier t_enum" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00112912, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/01491_nested_multiline_comments/ast.json b/parser/testdata/01491_nested_multiline_comments/ast.json deleted file mode 100644 index cf597f08ac..0000000000 --- a/parser/testdata/01491_nested_multiline_comments/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001403508, - "rows_read": 5, - "bytes_read": 177 - } -} diff --git a/parser/testdata/01492_array_join_crash_13829/ast.json b/parser/testdata/01492_array_join_crash_13829/ast.json deleted file mode 100644 index 872a0455e1..0000000000 --- a/parser/testdata/01492_array_join_crash_13829/ast.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Function countEqual (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[NULL, NULL, NULL]" - }, - { - "explain": " Literal NULL (alias x)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_255, UInt64_1025, NULL, NULL]" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_2, UInt64_1048576, NULL, NULL]" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 27, - - "statistics": - { - "elapsed": 0.001698168, - "rows_read": 27, - "bytes_read": 1214 - } -} diff --git a/parser/testdata/01492_format_readable_quantity/ast.json b/parser/testdata/01492_format_readable_quantity/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01492_format_readable_quantity/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01493_alter_remove_no_property_zookeeper_long/ast.json b/parser/testdata/01493_alter_remove_no_property_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01493_alter_remove_no_property_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01493_alter_remove_properties/ast.json b/parser/testdata/01493_alter_remove_properties/ast.json deleted file mode 100644 index 743ebe7618..0000000000 --- a/parser/testdata/01493_alter_remove_properties/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery prop_table (children 1)" - }, - { - "explain": " Identifier prop_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001424097, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01493_alter_remove_properties_zookeeper/ast.json b/parser/testdata/01493_alter_remove_properties_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01493_alter_remove_properties_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01493_alter_remove_wrong_default/ast.json b/parser/testdata/01493_alter_remove_wrong_default/ast.json deleted file mode 100644 index b43342eaef..0000000000 --- a/parser/testdata/01493_alter_remove_wrong_default/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery default_table (children 1)" - }, - { - "explain": " Identifier default_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001351555, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01493_storage_set_persistency/ast.json b/parser/testdata/01493_storage_set_persistency/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01493_storage_set_persistency/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01493_table_function_null/ast.json b/parser/testdata/01493_table_function_null/ast.json deleted file mode 100644 index 9433a5a4ab..0000000000 --- a/parser/testdata/01493_table_function_null/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "InsertQuery (children 2)" - }, - { - "explain": " Function null (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'number UInt64'" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers_mt (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10000" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001381391, - "rows_read": 15, - "bytes_read": 579 - } -} diff --git a/parser/testdata/01494_storage_join_persistency/ast.json b/parser/testdata/01494_storage_join_persistency/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01494_storage_join_persistency/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01495_subqueries_in_with_statement/ast.json b/parser/testdata/01495_subqueries_in_with_statement/ast.json deleted file mode 100644 index d8c022734a..0000000000 --- a/parser/testdata/01495_subqueries_in_with_statement/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test1 (children 1)" - }, - { - "explain": " Identifier test1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001333971, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01495_subqueries_in_with_statement_2/ast.json b/parser/testdata/01495_subqueries_in_with_statement_2/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01495_subqueries_in_with_statement_2/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01495_subqueries_in_with_statement_3/ast.json b/parser/testdata/01495_subqueries_in_with_statement_3/ast.json deleted file mode 100644 index 432b5a41cd..0000000000 --- a/parser/testdata/01495_subqueries_in_with_statement_3/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery cte1 (children 1)" - }, - { - "explain": " Identifier cte1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001368598, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01495_subqueries_in_with_statement_4/ast.json b/parser/testdata/01495_subqueries_in_with_statement_4/ast.json deleted file mode 100644 index fbc29485d2..0000000000 --- a/parser/testdata/01495_subqueries_in_with_statement_4/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " WithElement (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier it.number" - }, - { - "explain": " Identifier i.number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier it (alias i)" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.00152984, - "rows_read": 24, - "bytes_read": 984 - } -} diff --git a/parser/testdata/01496_signedness_conversion_monotonicity/ast.json b/parser/testdata/01496_signedness_conversion_monotonicity/ast.json deleted file mode 100644 index 3b34e17d61..0000000000 --- a/parser/testdata/01496_signedness_conversion_monotonicity/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test1 (children 1)" - }, - { - "explain": " Identifier test1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001228803, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01497_alias_on_default_array/ast.json b/parser/testdata/01497_alias_on_default_array/ast.json deleted file mode 100644 index bea6da9a7a..0000000000 --- a/parser/testdata/01497_alias_on_default_array/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_new_col (children 1)" - }, - { - "explain": " Identifier test_new_col" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00111194, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01497_extract_all_groups_empty_match/ast.json b/parser/testdata/01497_extract_all_groups_empty_match/ast.json deleted file mode 100644 index 7b074b8da9..0000000000 --- a/parser/testdata/01497_extract_all_groups_empty_match/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function extractAllGroupsVertical (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '@#$%^&*'" - }, - { - "explain": " Literal '(\\\\w*)'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001008213, - "rows_read": 8, - "bytes_read": 308 - } -} diff --git a/parser/testdata/01497_mutation_support_for_storage_memory/ast.json b/parser/testdata/01497_mutation_support_for_storage_memory/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01497_mutation_support_for_storage_memory/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01497_now_support_timezone/ast.json b/parser/testdata/01497_now_support_timezone/ast.json deleted file mode 100644 index 7d3a6c640b..0000000000 --- a/parser/testdata/01497_now_support_timezone/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function minus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toHour (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function now (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'Asia\/Shanghai'" - }, - { - "explain": " Function toHour (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function now (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'UTC'" - }, - { - "explain": " Literal Tuple_(UInt64_8, Int64_-16)" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001249336, - "rows_read": 19, - "bytes_read": 787 - } -} diff --git a/parser/testdata/01498_alter_column_storage_memory/ast.json b/parser/testdata/01498_alter_column_storage_memory/ast.json deleted file mode 100644 index 0c6ccac268..0000000000 --- a/parser/testdata/01498_alter_column_storage_memory/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults (children 1)" - }, - { - "explain": " Identifier defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001129138, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01499_json_named_tuples/ast.json b/parser/testdata/01499_json_named_tuples/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01499_json_named_tuples/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01499_log_deadlock/ast.json b/parser/testdata/01499_log_deadlock/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01499_log_deadlock/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01501_cache_dictionary_all_fields/ast.json b/parser/testdata/01501_cache_dictionary_all_fields/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01501_cache_dictionary_all_fields/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01502_bar_overflow/ast.json b/parser/testdata/01502_bar_overflow/ast.json deleted file mode 100644 index 6396ff8cd4..0000000000 --- a/parser/testdata/01502_bar_overflow/ast.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bar (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function minus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function greatCircleAngle (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " Literal UInt64_1023" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1048575" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 28, - - "statistics": - { - "elapsed": 0.001145693, - "rows_read": 28, - "bytes_read": 1111 - } -} diff --git a/parser/testdata/01503_fixed_string_primary_key/ast.json b/parser/testdata/01503_fixed_string_primary_key/ast.json deleted file mode 100644 index 7276e322f1..0000000000 --- a/parser/testdata/01503_fixed_string_primary_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.000972976, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01503_if_const_optimization/ast.json b/parser/testdata/01503_if_const_optimization/ast.json deleted file mode 100644 index 2e05645887..0000000000 --- a/parser/testdata/01503_if_const_optimization/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function if (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal 'Nullable(UInt8)'" - }, - { - "explain": " Literal '2.55'" - }, - { - "explain": " Literal NULL" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001453163, - "rows_read": 12, - "bytes_read": 440 - } -} diff --git a/parser/testdata/01504_compression_multiple_streams/ast.json b/parser/testdata/01504_compression_multiple_streams/ast.json deleted file mode 100644 index d41b37c959..0000000000 --- a/parser/testdata/01504_compression_multiple_streams/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery columns_with_multiple_streams (children 1)" - }, - { - "explain": " Identifier columns_with_multiple_streams" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001696026, - "rows_read": 2, - "bytes_read": 110 - } -} diff --git a/parser/testdata/01504_rocksdb/ast.json b/parser/testdata/01504_rocksdb/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01504_rocksdb/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01504_view_type_conversion/ast.json b/parser/testdata/01504_view_type_conversion/ast.json deleted file mode 100644 index 24f9a9b7f3..0000000000 --- a/parser/testdata/01504_view_type_conversion/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery testv (children 1)" - }, - { - "explain": " Identifier testv" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00137271, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01505_distributed_local_type_conversion_enum/ast.json b/parser/testdata/01505_distributed_local_type_conversion_enum/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01505_distributed_local_type_conversion_enum/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01505_log_distributed_deadlock/ast.json b/parser/testdata/01505_log_distributed_deadlock/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01505_log_distributed_deadlock/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01505_trivial_count_with_partition_predicate/ast.json b/parser/testdata/01505_trivial_count_with_partition_predicate/ast.json deleted file mode 100644 index 4d51599707..0000000000 --- a/parser/testdata/01505_trivial_count_with_partition_predicate/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test1 (children 1)" - }, - { - "explain": " Identifier test1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001217725, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01506_buffer_table_alter_block_structure/ast.json b/parser/testdata/01506_buffer_table_alter_block_structure/ast.json deleted file mode 100644 index fd2281b061..0000000000 --- a/parser/testdata/01506_buffer_table_alter_block_structure/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery buf_dest (children 1)" - }, - { - "explain": " Identifier buf_dest" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001235569, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01506_buffer_table_alter_block_structure_2/ast.json b/parser/testdata/01506_buffer_table_alter_block_structure_2/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01506_buffer_table_alter_block_structure_2/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01506_ttl_same_with_order_by/ast.json b/parser/testdata/01506_ttl_same_with_order_by/ast.json deleted file mode 100644 index bba5137de3..0000000000 --- a/parser/testdata/01506_ttl_same_with_order_by/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery derived_metrics_local (children 1)" - }, - { - "explain": " Identifier derived_metrics_local" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001183745, - "rows_read": 2, - "bytes_read": 94 - } -} diff --git a/parser/testdata/01507_multiversion_storage_for_storagememory/ast.json b/parser/testdata/01507_multiversion_storage_for_storagememory/ast.json deleted file mode 100644 index 7cb103c547..0000000000 --- a/parser/testdata/01507_multiversion_storage_for_storagememory/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults (children 1)" - }, - { - "explain": " Identifier defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001445393, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01507_transform_null_in/ast.json b/parser/testdata/01507_transform_null_in/ast.json deleted file mode 100644 index 5b60bb4daa..0000000000 --- a/parser/testdata/01507_transform_null_in/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001510057, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01508_explain_header/ast.json b/parser/testdata/01508_explain_header/ast.json deleted file mode 100644 index aff330cb1a..0000000000 --- a/parser/testdata/01508_explain_header/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001010933, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01509_output_format_pretty_row_numbers/ast.json b/parser/testdata/01509_output_format_pretty_row_numbers/ast.json deleted file mode 100644 index 2aaf0287c4..0000000000 --- a/parser/testdata/01509_output_format_pretty_row_numbers/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001505813, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01509_parallel_quorum_insert_no_replicas_long/ast.json b/parser/testdata/01509_parallel_quorum_insert_no_replicas_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01509_parallel_quorum_insert_no_replicas_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01511_alter_version_versioned_collapsing_merge_tree/ast.json b/parser/testdata/01511_alter_version_versioned_collapsing_merge_tree/ast.json deleted file mode 100644 index d8b6ddbf94..0000000000 --- a/parser/testdata/01511_alter_version_versioned_collapsing_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_with_version (children 1)" - }, - { - "explain": " Identifier table_with_version" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001385562, - "rows_read": 2, - "bytes_read": 88 - } -} diff --git a/parser/testdata/01511_alter_version_versioned_collapsing_merge_tree_zookeeper/ast.json b/parser/testdata/01511_alter_version_versioned_collapsing_merge_tree_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01511_alter_version_versioned_collapsing_merge_tree_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01511_different_expression_with_same_alias/ast.json b/parser/testdata/01511_different_expression_with_same_alias/ast.json deleted file mode 100644 index d7876e7772..0000000000 --- a/parser/testdata/01511_different_expression_with_same_alias/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery repro_hits (children 1)" - }, - { - "explain": " Identifier repro_hits" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00171662, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01511_format_readable_timedelta/ast.json b/parser/testdata/01511_format_readable_timedelta/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01511_format_readable_timedelta/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01511_prewhere_with_virtuals/ast.json b/parser/testdata/01511_prewhere_with_virtuals/ast.json deleted file mode 100644 index 0330dc6a75..0000000000 --- a/parser/testdata/01511_prewhere_with_virtuals/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_not_found_column_nothing (children 1)" - }, - { - "explain": " Identifier test_not_found_column_nothing" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001656581, - "rows_read": 2, - "bytes_read": 110 - } -} diff --git a/parser/testdata/01512_create_replicate_merge_tree_one_arg/ast.json b/parser/testdata/01512_create_replicate_merge_tree_one_arg/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01512_create_replicate_merge_tree_one_arg/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01513_count_without_select_sequence_consistency_zookeeper_long/ast.json b/parser/testdata/01513_count_without_select_sequence_consistency_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01513_count_without_select_sequence_consistency_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01513_defaults_on_defaults_no_column/ast.json b/parser/testdata/01513_defaults_on_defaults_no_column/ast.json deleted file mode 100644 index cdda995baa..0000000000 --- a/parser/testdata/01513_defaults_on_defaults_no_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults_on_defaults (children 1)" - }, - { - "explain": " Identifier defaults_on_defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001055663, - "rows_read": 2, - "bytes_read": 92 - } -} diff --git a/parser/testdata/01513_ilike_like_cache/ast.json b/parser/testdata/01513_ilike_like_cache/ast.json deleted file mode 100644 index 453586b039..0000000000 --- a/parser/testdata/01513_ilike_like_cache/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function like (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'hello'" - }, - { - "explain": " Literal 'hell%'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001132782, - "rows_read": 8, - "bytes_read": 285 - } -} diff --git a/parser/testdata/01513_optimize_aggregation_in_order_memory_long/ast.json b/parser/testdata/01513_optimize_aggregation_in_order_memory_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01513_optimize_aggregation_in_order_memory_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01514_empty_buffer_different_types/ast.json b/parser/testdata/01514_empty_buffer_different_types/ast.json deleted file mode 100644 index 9172dd604d..0000000000 --- a/parser/testdata/01514_empty_buffer_different_types/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001099442, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01514_input_format_csv_enum_as_number_setting/ast.json b/parser/testdata/01514_input_format_csv_enum_as_number_setting/ast.json deleted file mode 100644 index ce71c72f9b..0000000000 --- a/parser/testdata/01514_input_format_csv_enum_as_number_setting/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_with_enum_column_for_csv_insert (children 1)" - }, - { - "explain": " Identifier table_with_enum_column_for_csv_insert" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001121476, - "rows_read": 2, - "bytes_read": 126 - } -} diff --git a/parser/testdata/01514_input_format_json_enum_as_number/ast.json b/parser/testdata/01514_input_format_json_enum_as_number/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01514_input_format_json_enum_as_number/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01514_input_format_tsv_enum_as_number_setting/ast.json b/parser/testdata/01514_input_format_tsv_enum_as_number_setting/ast.json deleted file mode 100644 index 0f29e3cee8..0000000000 --- a/parser/testdata/01514_input_format_tsv_enum_as_number_setting/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_with_enum_column_for_tsv_insert (children 1)" - }, - { - "explain": " Identifier table_with_enum_column_for_tsv_insert" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001296544, - "rows_read": 2, - "bytes_read": 126 - } -} diff --git a/parser/testdata/01514_parallel_formatting/ast.json b/parser/testdata/01514_parallel_formatting/ast.json deleted file mode 100644 index f4c437f799..0000000000 --- a/parser/testdata/01514_parallel_formatting/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery tsv (children 1)" - }, - { - "explain": " Identifier tsv" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001028921, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01514_tid_function/ast.json b/parser/testdata/01514_tid_function/ast.json deleted file mode 100644 index e0f5111e47..0000000000 --- a/parser/testdata/01514_tid_function/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tid (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001143938, - "rows_read": 7, - "bytes_read": 237 - } -} diff --git a/parser/testdata/01515_force_data_skipping_indices/ast.json b/parser/testdata/01515_force_data_skipping_indices/ast.json deleted file mode 100644 index 21cafa9de9..0000000000 --- a/parser/testdata/01515_force_data_skipping_indices/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data_01515 (children 1)" - }, - { - "explain": " Identifier data_01515" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001032686, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01515_mv_and_array_join_optimisation_bag/ast.json b/parser/testdata/01515_mv_and_array_join_optimisation_bag/ast.json deleted file mode 100644 index 1581e378fe..0000000000 --- a/parser/testdata/01515_mv_and_array_join_optimisation_bag/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery visits (children 1)" - }, - { - "explain": " Identifier visits" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001412058, - "rows_read": 2, - "bytes_read": 65 - } -} diff --git a/parser/testdata/01515_with_global_and_with_propagation/ast.json b/parser/testdata/01515_with_global_and_with_propagation/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01515_with_global_and_with_propagation/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01516_create_table_primary_key/ast.json b/parser/testdata/01516_create_table_primary_key/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01516_create_table_primary_key/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01516_date_time_output_format/ast.json b/parser/testdata/01516_date_time_output_format/ast.json deleted file mode 100644 index 3ed6334bb5..0000000000 --- a/parser/testdata/01516_date_time_output_format/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_datetime (children 1)" - }, - { - "explain": " Identifier test_datetime" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001159387, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01517_drop_mv_with_inner_table/ast.json b/parser/testdata/01517_drop_mv_with_inner_table/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01517_drop_mv_with_inner_table/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01517_select_final_distributed/ast.json b/parser/testdata/01517_select_final_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01517_select_final_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01518_cast_nullable_virtual_system_column/ast.json b/parser/testdata/01518_cast_nullable_virtual_system_column/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01518_cast_nullable_virtual_system_column/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01518_filtering_aliased_materialized_column/ast.json b/parser/testdata/01518_filtering_aliased_materialized_column/ast.json deleted file mode 100644 index 68c2c0f5f2..0000000000 --- a/parser/testdata/01518_filtering_aliased_materialized_column/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery logs (children 1)" - }, - { - "explain": " Identifier logs" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00101451, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01518_nullable_aggregate_states1/ast.json b/parser/testdata/01518_nullable_aggregate_states1/ast.json deleted file mode 100644 index e88829ee6a..0000000000 --- a/parser/testdata/01518_nullable_aggregate_states1/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 7)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function max (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function min (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function avg (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - }, - { - "explain": " Function any (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier a" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001224464, - "rows_read": 24, - "bytes_read": 835 - } -} diff --git a/parser/testdata/01518_nullable_aggregate_states2/ast.json b/parser/testdata/01518_nullable_aggregate_states2/ast.json deleted file mode 100644 index 3805b76a98..0000000000 --- a/parser/testdata/01518_nullable_aggregate_states2/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery testNullableStates (children 1)" - }, - { - "explain": " Identifier testNullableStates" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001255356, - "rows_read": 2, - "bytes_read": 88 - } -} diff --git a/parser/testdata/01518_select_in_null/ast.json b/parser/testdata/01518_select_in_null/ast.json deleted file mode 100644 index b66ea8a8fd..0000000000 --- a/parser/testdata/01518_select_in_null/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t1 (children 1)" - }, - { - "explain": " Identifier t1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001330433, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01519_topK_distributed_parametrized/ast.json b/parser/testdata/01519_topK_distributed_parametrized/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01519_topK_distributed_parametrized/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01521_alter_enum_and_reverse_read/ast.json b/parser/testdata/01521_alter_enum_and_reverse_read/ast.json deleted file mode 100644 index 9f538671ad..0000000000 --- a/parser/testdata/01521_alter_enum_and_reverse_read/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery enum_test (children 1)" - }, - { - "explain": " Identifier enum_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001442525, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01521_distributed_query_hang/ast.json b/parser/testdata/01521_distributed_query_hang/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01521_distributed_query_hang/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01521_format_readable_time_delta2/ast.json b/parser/testdata/01521_format_readable_time_delta2/ast.json deleted file mode 100644 index 7d27234843..0000000000 --- a/parser/testdata/01521_format_readable_time_delta2/ast.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function formatReadableTimeDelta (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function negate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_60" - }, - { - "explain": " Literal UInt64_3600" - }, - { - "explain": " Literal UInt64_86400" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_30.5" - }, - { - "explain": " Literal UInt64_86400" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_365" - }, - { - "explain": " Literal UInt64_86400" - } - ], - - "rows": 30, - - "statistics": - { - "elapsed": 0.001630073, - "rows_read": 30, - "bytes_read": 1324 - } -} diff --git a/parser/testdata/01521_global_in_prewhere_15792/ast.json b/parser/testdata/01521_global_in_prewhere_15792/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01521_global_in_prewhere_15792/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01521_max_length_alias/ast.json b/parser/testdata/01521_max_length_alias/ast.json deleted file mode 100644 index 754d6347eb..0000000000 --- a/parser/testdata/01521_max_length_alias/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery max_length_alias_14053 (children 1)" - }, - { - "explain": " Identifier max_length_alias_14053" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001239495, - "rows_read": 2, - "bytes_read": 96 - } -} diff --git a/parser/testdata/01522_validate_alter_default/ast.json b/parser/testdata/01522_validate_alter_default/ast.json deleted file mode 100644 index 69021a18e6..0000000000 --- a/parser/testdata/01522_validate_alter_default/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table2 (children 1)" - }, - { - "explain": " Identifier table2" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001487675, - "rows_read": 2, - "bytes_read": 64 - } -} diff --git a/parser/testdata/01523_date_time_compare_with_date_literal/ast.json b/parser/testdata/01523_date_time_compare_with_date_literal/ast.json deleted file mode 100644 index 4d69915fe4..0000000000 --- a/parser/testdata/01523_date_time_compare_with_date_literal/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001349473, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01523_interval_operator_support_string_literal/ast.json b/parser/testdata/01523_interval_operator_support_string_literal/ast.json deleted file mode 100644 index e0dc890795..0000000000 --- a/parser/testdata/01523_interval_operator_support_string_literal/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toIntervalYear (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_2" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001539652, - "rows_read": 7, - "bytes_read": 267 - } -} diff --git a/parser/testdata/01524_do_not_merge_across_partitions_select_final/ast.json b/parser/testdata/01524_do_not_merge_across_partitions_select_final/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01524_do_not_merge_across_partitions_select_final/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01525_select_with_offset_fetch_clause/ast.json b/parser/testdata/01525_select_with_offset_fetch_clause/ast.json deleted file mode 100644 index f251e2b1e5..0000000000 --- a/parser/testdata/01525_select_with_offset_fetch_clause/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 5)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_3" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001688342, - "rows_read": 16, - "bytes_read": 592 - } -} diff --git a/parser/testdata/01526_alter_add_and_modify_order_zookeeper/ast.json b/parser/testdata/01526_alter_add_and_modify_order_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01526_alter_add_and_modify_order_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01526_complex_key_dict_direct_layout/ast.json b/parser/testdata/01526_complex_key_dict_direct_layout/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01526_complex_key_dict_direct_layout/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01527_bad_aggregation_in_lambda/ast.json b/parser/testdata/01527_bad_aggregation_in_lambda/ast.json deleted file mode 100644 index 16896e907e..0000000000 --- a/parser/testdata/01527_bad_aggregation_in_lambda/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function range (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001082316, - "rows_read": 20, - "bytes_read": 789 - } -} diff --git a/parser/testdata/01527_dist_sharding_key_dictGet_reload/ast.json b/parser/testdata/01527_dist_sharding_key_dictGet_reload/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01527_dist_sharding_key_dictGet_reload/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01527_materialized_view_stack_overflow/ast.json b/parser/testdata/01527_materialized_view_stack_overflow/ast.json deleted file mode 100644 index db0a2c30b1..0000000000 --- a/parser/testdata/01527_materialized_view_stack_overflow/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001211065, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01528_allow_nondeterministic_optimize_skip_unused_shards/ast.json b/parser/testdata/01528_allow_nondeterministic_optimize_skip_unused_shards/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01528_allow_nondeterministic_optimize_skip_unused_shards/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01528_setting_aggregate_functions_null_for_empty/ast.json b/parser/testdata/01528_setting_aggregate_functions_null_for_empty/ast.json deleted file mode 100644 index 0641312fe4..0000000000 --- a/parser/testdata/01528_setting_aggregate_functions_null_for_empty/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery defaults (children 1)" - }, - { - "explain": " Identifier defaults" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001367139, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01528_to_uuid_or_null_or_zero/ast.json b/parser/testdata/01528_to_uuid_or_null_or_zero/ast.json deleted file mode 100644 index 2e01525b98..0000000000 --- a/parser/testdata/01528_to_uuid_or_null_or_zero/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery to_uuid_test (children 1)" - }, - { - "explain": " Identifier to_uuid_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001163141, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01529_union_distinct_and_setting_union_default_mode/ast.json b/parser/testdata/01529_union_distinct_and_setting_union_default_mode/ast.json deleted file mode 100644 index 37b1d0e2a1..0000000000 --- a/parser/testdata/01529_union_distinct_and_setting_union_default_mode/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001471682, - "rows_read": 5, - "bytes_read": 177 - } -} diff --git a/parser/testdata/01530_drop_database_atomic_sync/ast.json b/parser/testdata/01530_drop_database_atomic_sync/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01530_drop_database_atomic_sync/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01531_query_log_query_comment/ast.json b/parser/testdata/01531_query_log_query_comment/ast.json deleted file mode 100644 index c72568ef2e..0000000000 --- a/parser/testdata/01531_query_log_query_comment/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.000944408, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01532_collate_in_low_cardinality/ast.json b/parser/testdata/01532_collate_in_low_cardinality/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01532_collate_in_low_cardinality/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01532_execute_merges_on_single_replica_long/ast.json b/parser/testdata/01532_execute_merges_on_single_replica_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01532_execute_merges_on_single_replica_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01532_having_with_totals/ast.json b/parser/testdata/01532_having_with_totals/ast.json deleted file mode 100644 index 9c127db56b..0000000000 --- a/parser/testdata/01532_having_with_totals/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery local_t (children 1)" - }, - { - "explain": " Identifier local_t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001196551, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01532_min_max_with_modifiers/ast.json b/parser/testdata/01532_min_max_with_modifiers/ast.json deleted file mode 100644 index 2317a2c14c..0000000000 --- a/parser/testdata/01532_min_max_with_modifiers/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'totals'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001052014, - "rows_read": 5, - "bytes_read": 177 - } -} diff --git a/parser/testdata/01532_primary_key_without_order_by_zookeeper/ast.json b/parser/testdata/01532_primary_key_without_order_by_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01532_primary_key_without_order_by_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01532_tuple_with_name_type/ast.json b/parser/testdata/01532_tuple_with_name_type/ast.json deleted file mode 100644 index 7f52210661..0000000000 --- a/parser/testdata/01532_tuple_with_name_type/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_01532_1 (children 1)" - }, - { - "explain": " Identifier test_01532_1" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001270041, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01533_collate_in_nullable/ast.json b/parser/testdata/01533_collate_in_nullable/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01533_collate_in_nullable/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01533_distinct_depends_on_max_threads/ast.json b/parser/testdata/01533_distinct_depends_on_max_threads/ast.json deleted file mode 100644 index 42324714ef..0000000000 --- a/parser/testdata/01533_distinct_depends_on_max_threads/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery bug_13492 (children 1)" - }, - { - "explain": " Identifier bug_13492" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001371806, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01533_distinct_nullable_uuid/ast.json b/parser/testdata/01533_distinct_nullable_uuid/ast.json deleted file mode 100644 index 65a0767f12..0000000000 --- a/parser/testdata/01533_distinct_nullable_uuid/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery bug_14144 (children 1)" - }, - { - "explain": " Identifier bug_14144" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001189671, - "rows_read": 2, - "bytes_read": 70 - } -} diff --git a/parser/testdata/01533_multiple_nested/ast.json b/parser/testdata/01533_multiple_nested/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01533_multiple_nested/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01533_optimize_skip_merged_partitions/ast.json b/parser/testdata/01533_optimize_skip_merged_partitions/ast.json deleted file mode 100644 index 85e3a5bfc1..0000000000 --- a/parser/testdata/01533_optimize_skip_merged_partitions/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery optimize_final (children 1)" - }, - { - "explain": " Identifier optimize_final" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001438318, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01533_quantile_deterministic_assert/ast.json b/parser/testdata/01533_quantile_deterministic_assert/ast.json deleted file mode 100644 index a31e310244..0000000000 --- a/parser/testdata/01533_quantile_deterministic_assert/ast.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantileDeterministic (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function sipHash64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function remote (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '127.0.0.{1,2}'" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_8193" - } - ], - - "rows": 19, - - "statistics": - { - "elapsed": 0.001510997, - "rows_read": 19, - "bytes_read": 779 - } -} diff --git a/parser/testdata/01533_sum_if_nullable_bug/ast.json b/parser/testdata/01533_sum_if_nullable_bug/ast.json deleted file mode 100644 index 65f7c2106d..0000000000 --- a/parser/testdata/01533_sum_if_nullable_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery T (children 1)" - }, - { - "explain": " Identifier T" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001194075, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01534_lambda_array_join/ast.json b/parser/testdata/01534_lambda_array_join/ast.json deleted file mode 100644 index 524d7c3d05..0000000000 --- a/parser/testdata/01534_lambda_array_join/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function lambda (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function concat (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1]" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal Array_[UInt64_1]" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001060087, - "rows_read": 23, - "bytes_read": 917 - } -} diff --git a/parser/testdata/01535_decimal_round_scale_overflow_check/ast.json b/parser/testdata/01535_decimal_round_scale_overflow_check/ast.json deleted file mode 100644 index 6b02fddf21..0000000000 --- a/parser/testdata/01535_decimal_round_scale_overflow_check/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function round (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDecimal32 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Int64_-9223372036854775806" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.00143498, - "rows_read": 11, - "bytes_read": 429 - } -} diff --git a/parser/testdata/01536_fuzz_cast/ast.json b/parser/testdata/01536_fuzz_cast/ast.json deleted file mode 100644 index 47c89a1d1e..0000000000 --- a/parser/testdata/01536_fuzz_cast/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001178355, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01537_fuzz_count_equal/ast.json b/parser/testdata/01537_fuzz_count_equal/ast.json deleted file mode 100644 index 05ee6fbf9c..0000000000 --- a/parser/testdata/01537_fuzz_count_equal/ast.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Function countEqual (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[NULL, NULL, NULL]" - }, - { - "explain": " Literal NULL (alias x)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_255, UInt64_1025, NULL, NULL]" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_2, UInt64_1048576, NULL, NULL]" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 26, - - "statistics": - { - "elapsed": 0.00200637, - "rows_read": 26, - "bytes_read": 1190 - } -} diff --git a/parser/testdata/01538_fuzz_aggregate/ast.json b/parser/testdata/01538_fuzz_aggregate/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01538_fuzz_aggregate/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01540_verbatim_partition_pruning/ast.json b/parser/testdata/01540_verbatim_partition_pruning/ast.json deleted file mode 100644 index 98f06ee85d..0000000000 --- a/parser/testdata/01540_verbatim_partition_pruning/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery xy (children 1)" - }, - { - "explain": " Identifier xy" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001196475, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01542_collate_in_array/ast.json b/parser/testdata/01542_collate_in_array/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01542_collate_in_array/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01543_collate_in_tuple/ast.json b/parser/testdata/01543_collate_in_tuple/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01543_collate_in_tuple/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01543_parse_datetime_besteffort_or_null_empty_string/ast.json b/parser/testdata/01543_parse_datetime_besteffort_or_null_empty_string/ast.json deleted file mode 100644 index ac892a2c7c..0000000000 --- a/parser/testdata/01543_parse_datetime_besteffort_or_null_empty_string/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function parseDateTimeBestEffortOrNull (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2010-01-01'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.00108457, - "rows_read": 7, - "bytes_read": 286 - } -} diff --git a/parser/testdata/01543_toModifiedJulianDay/ast.json b/parser/testdata/01543_toModifiedJulianDay/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01543_toModifiedJulianDay/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01544_errorCodeToName/ast.json b/parser/testdata/01544_errorCodeToName/ast.json deleted file mode 100644 index 0c48187f07..0000000000 --- a/parser/testdata/01544_errorCodeToName/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function errorCodeToName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUInt32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Int64_-1" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001357949, - "rows_read": 9, - "bytes_read": 356 - } -} diff --git a/parser/testdata/01544_fromModifiedJulianDay/ast.json b/parser/testdata/01544_fromModifiedJulianDay/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01544_fromModifiedJulianDay/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01545_url_file_format_settings/ast.json b/parser/testdata/01545_url_file_format_settings/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01545_url_file_format_settings/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01546_log_queries_min_query_duration_ms/ast.json b/parser/testdata/01546_log_queries_min_query_duration_ms/ast.json deleted file mode 100644 index 5129f70243..0000000000 --- a/parser/testdata/01546_log_queries_min_query_duration_ms/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001168619, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01547_query_log_current_database/ast.json b/parser/testdata/01547_query_log_current_database/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01547_query_log_current_database/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01548_lzy305/ast.json b/parser/testdata/01548_lzy305/ast.json deleted file mode 100644 index 6b9f0e6306..0000000000 --- a/parser/testdata/01548_lzy305/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery fct_rt_dc_shop_sku_vender_day (children 1)" - }, - { - "explain": " Identifier fct_rt_dc_shop_sku_vender_day" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00121074, - "rows_read": 2, - "bytes_read": 110 - } -} diff --git a/parser/testdata/01548_uncomparable_columns_in_keys/ast.json b/parser/testdata/01548_uncomparable_columns_in_keys/ast.json deleted file mode 100644 index de38c15d37..0000000000 --- a/parser/testdata/01548_uncomparable_columns_in_keys/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery uncomparable_keys (children 1)" - }, - { - "explain": " Identifier uncomparable_keys" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001397724, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/01548_with_totals_having/ast.json b/parser/testdata/01548_with_totals_having/ast.json deleted file mode 100644 index f805a20c84..0000000000 --- a/parser/testdata/01548_with_totals_having/ast.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function lessOrEquals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 22, - - "statistics": - { - "elapsed": 0.001423765, - "rows_read": 22, - "bytes_read": 840 - } -} diff --git a/parser/testdata/01549_low_cardinality_materialized_view/ast.json b/parser/testdata/01549_low_cardinality_materialized_view/ast.json deleted file mode 100644 index 9b4c282c4d..0000000000 --- a/parser/testdata/01549_low_cardinality_materialized_view/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery HASH_MV (children 1)" - }, - { - "explain": " Identifier HASH_MV" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001202363, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01549_low_cardinality_mv_fuzz/ast.json b/parser/testdata/01549_low_cardinality_mv_fuzz/ast.json deleted file mode 100644 index b623129de2..0000000000 --- a/parser/testdata/01549_low_cardinality_mv_fuzz/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001020578, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01550_create_map_type/ast.json b/parser/testdata/01550_create_map_type/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01550_create_map_type/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01550_mutation_subquery/ast.json b/parser/testdata/01550_mutation_subquery/ast.json deleted file mode 100644 index dc4e765032..0000000000 --- a/parser/testdata/01550_mutation_subquery/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001458785, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01550_type_map_formats/ast.json b/parser/testdata/01550_type_map_formats/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01550_type_map_formats/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01551_context_uaf/ast.json b/parser/testdata/01551_context_uaf/ast.json deleted file mode 100644 index e66cb2bf63..0000000000 --- a/parser/testdata/01551_context_uaf/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery f (children 1)" - }, - { - "explain": " Identifier f" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001460242, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01551_mergetree_read_in_order_spread/ast.json b/parser/testdata/01551_mergetree_read_in_order_spread/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01551_mergetree_read_in_order_spread/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01552_alter_name_collision/ast.json b/parser/testdata/01552_alter_name_collision/ast.json deleted file mode 100644 index ba53dc209b..0000000000 --- a/parser/testdata/01552_alter_name_collision/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00127481, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01552_dict_fixedstring/ast.json b/parser/testdata/01552_dict_fixedstring/ast.json deleted file mode 100644 index d4c4bfa134..0000000000 --- a/parser/testdata/01552_dict_fixedstring/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery src (children 1)" - }, - { - "explain": " Identifier src" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00120363, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01552_impl_aggfunc_cloneresize/ast.json b/parser/testdata/01552_impl_aggfunc_cloneresize/ast.json deleted file mode 100644 index 670a3878d8..0000000000 --- a/parser/testdata/01552_impl_aggfunc_cloneresize/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_bm (children 1)" - }, - { - "explain": " Identifier test_bm" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001100115, - "rows_read": 2, - "bytes_read": 66 - } -} diff --git a/parser/testdata/01553_datetime64_comparison/ast.json b/parser/testdata/01553_datetime64_comparison/ast.json deleted file mode 100644 index f4903cbd5b..0000000000 --- a/parser/testdata/01553_datetime64_comparison/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery datetime64_cmp (children 1)" - }, - { - "explain": " Identifier datetime64_cmp" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001507591, - "rows_read": 2, - "bytes_read": 81 - } -} diff --git a/parser/testdata/01553_settings_early_apply/ast.json b/parser/testdata/01553_settings_early_apply/ast.json deleted file mode 100644 index 603f48ef16..0000000000 --- a/parser/testdata/01553_settings_early_apply/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001180085, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01554_bloom_filter_index_big_integer_uuid/ast.json b/parser/testdata/01554_bloom_filter_index_big_integer_uuid/ast.json deleted file mode 100644 index 1c9d9388c3..0000000000 --- a/parser/testdata/01554_bloom_filter_index_big_integer_uuid/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery 01154_test (children 3)" - }, - { - "explain": " Identifier 01154_test" - }, - { - "explain": " Columns definition (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration x (children 1)" - }, - { - "explain": " DataType Int128" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Index (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function bloom_filter (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_0.01" - }, - { - "explain": " Storage definition (children 3)" - }, - { - "explain": " Function MergeTree (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Set" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001319607, - "rows_read": 17, - "bytes_read": 571 - } -} diff --git a/parser/testdata/01554_interpreter_integer_float/ast.json b/parser/testdata/01554_interpreter_integer_float/ast.json deleted file mode 100644 index 2afa5bed44..0000000000 --- a/parser/testdata/01554_interpreter_integer_float/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function reinterpretAsFloat32 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_123456" - }, - { - "explain": " Literal 'UInt32'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001737097, - "rows_read": 10, - "bytes_read": 394 - } -} diff --git a/parser/testdata/01555_or_fill/ast.json b/parser/testdata/01555_or_fill/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01555_or_fill/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01555_system_distribution_queue_mask/ast.json b/parser/testdata/01555_system_distribution_queue_mask/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01555_system_distribution_queue_mask/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01556_accurate_cast_or_null/ast.json b/parser/testdata/01556_accurate_cast_or_null/ast.json deleted file mode 100644 index 858680cacc..0000000000 --- a/parser/testdata/01556_accurate_cast_or_null/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function accurateCastOrNull (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Literal 'UInt8'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001320581, - "rows_read": 8, - "bytes_read": 300 - } -} diff --git a/parser/testdata/01556_explain_select_with_union_query/ast.json b/parser/testdata/01556_explain_select_with_union_query/ast.json deleted file mode 100644 index e9afdbaa62..0000000000 --- a/parser/testdata/01556_explain_select_with_union_query/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001607453, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01556_if_null/ast.json b/parser/testdata/01556_if_null/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01556_if_null/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01557_max_parallel_replicas_no_sample/ast.json b/parser/testdata/01557_max_parallel_replicas_no_sample/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01557_max_parallel_replicas_no_sample/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01558_enum_as_num_in_tsv_csv_input/ast.json b/parser/testdata/01558_enum_as_num_in_tsv_csv_input/ast.json deleted file mode 100644 index 81191d369b..0000000000 --- a/parser/testdata/01558_enum_as_num_in_tsv_csv_input/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery enum_as_num (children 1)" - }, - { - "explain": " Identifier enum_as_num" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001385695, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01558_transform_null_in/ast.json b/parser/testdata/01558_transform_null_in/ast.json deleted file mode 100644 index 8195fe7930..0000000000 --- a/parser/testdata/01558_transform_null_in/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001785468, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01558_ttest/ast.json b/parser/testdata/01558_ttest/ast.json deleted file mode 100644 index a3060340f4..0000000000 --- a/parser/testdata/01558_ttest/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery welch_ttest (children 1)" - }, - { - "explain": " Identifier welch_ttest" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001239764, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01559_aggregate_null_for_empty_fix/ast.json b/parser/testdata/01559_aggregate_null_for_empty_fix/ast.json deleted file mode 100644 index ae85bd1bed..0000000000 --- a/parser/testdata/01559_aggregate_null_for_empty_fix/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function MAX (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier aggr" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001494782, - "rows_read": 7, - "bytes_read": 255 - } -} diff --git a/parser/testdata/01559_misplaced_codec_diagnostics/ast.json b/parser/testdata/01559_misplaced_codec_diagnostics/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01559_misplaced_codec_diagnostics/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01560_DateTime_and_DateTime64_comparision/ast.json b/parser/testdata/01560_DateTime_and_DateTime64_comparision/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01560_DateTime_and_DateTime64_comparision/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01560_cancel_agg_func_combinator_native_name_constraint/ast.json b/parser/testdata/01560_cancel_agg_func_combinator_native_name_constraint/ast.json deleted file mode 100644 index 4e4dd1dd56..0000000000 --- a/parser/testdata/01560_cancel_agg_func_combinator_native_name_constraint/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function Sum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001423465, - "rows_read": 7, - "bytes_read": 256 - } -} diff --git a/parser/testdata/01560_crash_in_agg_empty_arglist/ast.json b/parser/testdata/01560_crash_in_agg_empty_arglist/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01560_crash_in_agg_empty_arglist/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01560_mann_whitney/ast.json b/parser/testdata/01560_mann_whitney/ast.json deleted file mode 100644 index 44de8b0467..0000000000 --- a/parser/testdata/01560_mann_whitney/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mann_whitney_test (children 1)" - }, - { - "explain": " Identifier mann_whitney_test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001596275, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/01560_merge_distributed_join/ast.json b/parser/testdata/01560_merge_distributed_join/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01560_merge_distributed_join/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01560_monotonicity_check_multiple_args_bug/ast.json b/parser/testdata/01560_monotonicity_check_multiple_args_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01560_monotonicity_check_multiple_args_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01560_optimize_on_insert_long/ast.json b/parser/testdata/01560_optimize_on_insert_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01560_optimize_on_insert_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01560_optimize_on_insert_zookeeper/ast.json b/parser/testdata/01560_optimize_on_insert_zookeeper/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01560_optimize_on_insert_zookeeper/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01561_Date_and_DateTime64_comparision/ast.json b/parser/testdata/01561_Date_and_DateTime64_comparision/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01561_Date_and_DateTime64_comparision/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01561_aggregate_functions_of_key_with_join/ast.json b/parser/testdata/01561_aggregate_functions_of_key_with_join/ast.json deleted file mode 100644 index 35456eed78..0000000000 --- a/parser/testdata/01561_aggregate_functions_of_key_with_join/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001570257, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01562_agg_null_for_empty_ahead/ast.json b/parser/testdata/01562_agg_null_for_empty_ahead/ast.json deleted file mode 100644 index e9b0791210..0000000000 --- a/parser/testdata/01562_agg_null_for_empty_ahead/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumMerge (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier s" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumState (alias s) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.00192536, - "rows_read": 24, - "bytes_read": 1042 - } -} diff --git a/parser/testdata/01564_test_hint_woes/ast.json b/parser/testdata/01564_test_hint_woes/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01564_test_hint_woes/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01566_negate_formatting/ast.json b/parser/testdata/01566_negate_formatting/ast.json deleted file mode 100644 index 24d92361fc..0000000000 --- a/parser/testdata/01566_negate_formatting/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001424614, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01567_system_processes_current_database/ast.json b/parser/testdata/01567_system_processes_current_database/ast.json deleted file mode 100644 index a53ecf30d5..0000000000 --- a/parser/testdata/01567_system_processes_current_database/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.processes" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier current_database" - }, - { - "explain": " Function currentDatabase (children 1)" - }, - { - "explain": " ExpressionList" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001781417, - "rows_read": 16, - "bytes_read": 627 - } -} diff --git a/parser/testdata/01568_window_functions_distributed/ast.json b/parser/testdata/01568_window_functions_distributed/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01568_window_functions_distributed/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01570_aggregator_combinator_simple_state/ast.json b/parser/testdata/01570_aggregator_combinator_simple_state/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01570_aggregator_combinator_simple_state/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01571_window_functions/ast.json b/parser/testdata/01571_window_functions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01571_window_functions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01575_disable_detach_table_of_dictionary/ast.json b/parser/testdata/01575_disable_detach_table_of_dictionary/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01575_disable_detach_table_of_dictionary/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01576_alias_column_rewrite/ast.json b/parser/testdata/01576_alias_column_rewrite/ast.json deleted file mode 100644 index f13d947915..0000000000 --- a/parser/testdata/01576_alias_column_rewrite/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_table (children 1)" - }, - { - "explain": " Identifier test_table" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001565438, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01576_if_null_external_aggregation/ast.json b/parser/testdata/01576_if_null_external_aggregation/ast.json deleted file mode 100644 index f0b8ff706f..0000000000 --- a/parser/testdata/01576_if_null_external_aggregation/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001431523, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01579_date_datetime_index_comparison/ast.json b/parser/testdata/01579_date_datetime_index_comparison/ast.json deleted file mode 100644 index c745b8fc01..0000000000 --- a/parser/testdata/01579_date_datetime_index_comparison/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_index (children 1)" - }, - { - "explain": " Identifier test_index" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001615636, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01580_column_const_comparision/ast.json b/parser/testdata/01580_column_const_comparision/ast.json deleted file mode 100644 index b7779e1bec..0000000000 --- a/parser/testdata/01580_column_const_comparision/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '1111' (alias name)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers_mt" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier name" - }, - { - "explain": " Literal UInt64_10000" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001256156, - "rows_read": 14, - "bytes_read": 530 - } -} diff --git a/parser/testdata/01581_deduplicate_by_columns_local/ast.json b/parser/testdata/01581_deduplicate_by_columns_local/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01581_deduplicate_by_columns_local/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01581_deduplicate_by_columns_replicated_long/ast.json b/parser/testdata/01581_deduplicate_by_columns_replicated_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01581_deduplicate_by_columns_replicated_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01581_to_int_inf_nan/ast.json b/parser/testdata/01581_to_int_inf_nan/ast.json deleted file mode 100644 index f9ab1dafc5..0000000000 --- a/parser/testdata/01581_to_int_inf_nan/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toInt64 (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_inf" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001238687, - "rows_read": 7, - "bytes_read": 263 - } -} diff --git a/parser/testdata/01582_any_join_supertype/ast.json b/parser/testdata/01582_any_join_supertype/ast.json deleted file mode 100644 index f207bc05e2..0000000000 --- a/parser/testdata/01582_any_join_supertype/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery foo (children 1)" - }, - { - "explain": " Identifier foo" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001178464, - "rows_read": 2, - "bytes_read": 58 - } -} diff --git a/parser/testdata/01582_deterministic_function_with_predicate/ast.json b/parser/testdata/01582_deterministic_function_with_predicate/ast.json deleted file mode 100644 index 20e5ae86c9..0000000000 --- a/parser/testdata/01582_deterministic_function_with_predicate/ast.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Explain EXPLAIN SYNTAX (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function count (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1000000" - }, - { - "explain": " Function less (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function rand64 (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Float64_0.01" - }, - { - "explain": " Literal Float64_18446744073709552000" - } - ], - - "rows": 40, - - "statistics": - { - "elapsed": 0.001871356, - "rows_read": 40, - "bytes_read": 1874 - } -} diff --git a/parser/testdata/01582_distinct_subquery_groupby/ast.json b/parser/testdata/01582_distinct_subquery_groupby/ast.json deleted file mode 100644 index aff42a6d6e..0000000000 --- a/parser/testdata/01582_distinct_subquery_groupby/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00128691, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01582_move_to_prewhere_compact_parts/ast.json b/parser/testdata/01582_move_to_prewhere_compact_parts/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01582_move_to_prewhere_compact_parts/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01583_const_column_in_set_index/ast.json b/parser/testdata/01583_const_column_in_set_index/ast.json deleted file mode 100644 index 63bbaae1ec..0000000000 --- a/parser/testdata/01583_const_column_in_set_index/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery insub (children 1)" - }, - { - "explain": " Identifier insub" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001469015, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01584_distributed_buffer_cannot_find_column/ast.json b/parser/testdata/01584_distributed_buffer_cannot_find_column/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01584_distributed_buffer_cannot_find_column/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01585_fuzz_bits_with_bugfix/ast.json b/parser/testdata/01585_fuzz_bits_with_bugfix/ast.json deleted file mode 100644 index d1dee8a8b8..0000000000 --- a/parser/testdata/01585_fuzz_bits_with_bugfix/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function fuzzBits (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'stringstring'" - }, - { - "explain": " Literal Float64_0.5" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001645178, - "rows_read": 16, - "bytes_read": 644 - } -} diff --git a/parser/testdata/01585_use_index_for_global_in/ast.json b/parser/testdata/01585_use_index_for_global_in/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01585_use_index_for_global_in/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01585_use_index_for_global_in_with_null/ast.json b/parser/testdata/01585_use_index_for_global_in_with_null/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01585_use_index_for_global_in_with_null/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01586_columns_pruning/ast.json b/parser/testdata/01586_columns_pruning/ast.json deleted file mode 100644 index 30118fc95d..0000000000 --- a/parser/testdata/01586_columns_pruning/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001407084, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01586_replicated_mutations_empty_partition/ast.json b/parser/testdata/01586_replicated_mutations_empty_partition/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01586_replicated_mutations_empty_partition/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01586_storage_join_low_cardinality_key/ast.json b/parser/testdata/01586_storage_join_low_cardinality_key/ast.json deleted file mode 100644 index eeaa01f3b3..0000000000 --- a/parser/testdata/01586_storage_join_low_cardinality_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery low_card (children 1)" - }, - { - "explain": " Identifier low_card" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00125572, - "rows_read": 2, - "bytes_read": 69 - } -} diff --git a/parser/testdata/01590_countSubstrings/ast.json b/parser/testdata/01590_countSubstrings/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01590_countSubstrings/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01591_window_functions/ast.json b/parser/testdata/01591_window_functions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01591_window_functions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01592_length_map/ast.json b/parser/testdata/01592_length_map/ast.json deleted file mode 100644 index 8b6cc31210..0000000000 --- a/parser/testdata/01592_length_map/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function length (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function map (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_4" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.00137191, - "rows_read": 12, - "bytes_read": 438 - } -} diff --git a/parser/testdata/01592_long_window_functions1/ast.json b/parser/testdata/01592_long_window_functions1/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01592_long_window_functions1/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01592_toUnixTimestamp_Date/ast.json b/parser/testdata/01592_toUnixTimestamp_Date/ast.json deleted file mode 100644 index 8571bd91d1..0000000000 --- a/parser/testdata/01592_toUnixTimestamp_Date/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUnixTimestamp (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function makeDate (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal UInt64_2023" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Literal UInt64_10" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001351316, - "rows_read": 11, - "bytes_read": 424 - } -} diff --git a/parser/testdata/01592_window_functions/ast.json b/parser/testdata/01592_window_functions/ast.json deleted file mode 100644 index 164256c4ff..0000000000 --- a/parser/testdata/01592_window_functions/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery product_groups (children 1)" - }, - { - "explain": " Identifier product_groups" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.0012722, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01593_functions_in_order_by/ast.json b/parser/testdata/01593_functions_in_order_by/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01593_functions_in_order_by/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01593_insert_settings/ast.json b/parser/testdata/01593_insert_settings/ast.json deleted file mode 100644 index 7af190389c..0000000000 --- a/parser/testdata/01593_insert_settings/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data_01593 (children 1)" - }, - { - "explain": " Identifier data_01593" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001401834, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01594_storage_join_uuid/ast.json b/parser/testdata/01594_storage_join_uuid/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01594_storage_join_uuid/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01595_countMatches/ast.json b/parser/testdata/01595_countMatches/ast.json deleted file mode 100644 index c3ad8ecba2..0000000000 --- a/parser/testdata/01595_countMatches/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00093212, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01596_full_join_chertus/ast.json b/parser/testdata/01596_full_join_chertus/ast.json deleted file mode 100644 index 33444e7ee6..0000000000 --- a/parser/testdata/01596_full_join_chertus/ast.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier js1.k" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier js2.k" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier js1.s" - }, - { - "explain": " Function toTypeName (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier js2.s" - } - ], - - "rows": 24, - - "statistics": - { - "elapsed": 0.001103349, - "rows_read": 24, - "bytes_read": 969 - } -} diff --git a/parser/testdata/01596_null_as_default_nullable/ast.json b/parser/testdata/01596_null_as_default_nullable/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01596_null_as_default_nullable/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01596_setting_limit_offset/ast.json b/parser/testdata/01596_setting_limit_offset/ast.json deleted file mode 100644 index 3c881c4c4f..0000000000 --- a/parser/testdata/01596_setting_limit_offset/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001247221, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01598_memory_limit_zeros/ast.json b/parser/testdata/01598_memory_limit_zeros/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01598_memory_limit_zeros/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01600_encode_XML/ast.json b/parser/testdata/01600_encode_XML/ast.json deleted file mode 100644 index bbdf6cfb83..0000000000 --- a/parser/testdata/01600_encode_XML/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function encodeXMLComponent (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'Hello, \"world\"!'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001496642, - "rows_read": 7, - "bytes_read": 280 - } -} diff --git a/parser/testdata/01600_min_max_compress_block_size/ast.json b/parser/testdata/01600_min_max_compress_block_size/ast.json deleted file mode 100644 index 91b7765059..0000000000 --- a/parser/testdata/01600_min_max_compress_block_size/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ms (children 1)" - }, - { - "explain": " Identifier ms" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001532975, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01600_multiple_left_join_with_aliases/ast.json b/parser/testdata/01600_multiple_left_join_with_aliases/ast.json deleted file mode 100644 index 0fb404353e..0000000000 --- a/parser/testdata/01600_multiple_left_join_with_aliases/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery base (children 1)" - }, - { - "explain": " Identifier base" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001344116, - "rows_read": 2, - "bytes_read": 61 - } -} diff --git a/parser/testdata/01600_remerge_sort_lowered_memory_bytes_ratio/ast.json b/parser/testdata/01600_remerge_sort_lowered_memory_bytes_ratio/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01600_remerge_sort_lowered_memory_bytes_ratio/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01600_select_in_different_types/ast.json b/parser/testdata/01600_select_in_different_types/ast.json deleted file mode 100644 index 719abfa085..0000000000 --- a/parser/testdata/01600_select_in_different_types/ast.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 13, - - "statistics": - { - "elapsed": 0.001331044, - "rows_read": 13, - "bytes_read": 502 - } -} diff --git a/parser/testdata/01601_accurate_cast/ast.json b/parser/testdata/01601_accurate_cast/ast.json deleted file mode 100644 index 8c100f56f6..0000000000 --- a/parser/testdata/01601_accurate_cast/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function accurateCast (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Literal 'UInt8'" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.001432485, - "rows_read": 8, - "bytes_read": 294 - } -} diff --git a/parser/testdata/01601_detach_permanently/ast.json b/parser/testdata/01601_detach_permanently/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01601_detach_permanently/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01602_array_aggregation/ast.json b/parser/testdata/01602_array_aggregation/ast.json deleted file mode 100644 index 64fc5b9366..0000000000 --- a/parser/testdata/01602_array_aggregation/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'Array min '" - }, - { - "explain": " Function arrayMin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 6)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Literal UInt64_4" - }, - { - "explain": " Literal UInt64_5" - }, - { - "explain": " Literal UInt64_6" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.00099064, - "rows_read": 15, - "bytes_read": 538 - } -} diff --git a/parser/testdata/01602_insert_into_table_function_cluster/ast.json b/parser/testdata/01602_insert_into_table_function_cluster/ast.json deleted file mode 100644 index b0982fbad3..0000000000 --- a/parser/testdata/01602_insert_into_table_function_cluster/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery x (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001785872, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01602_modified_julian_day_msan/ast.json b/parser/testdata/01602_modified_julian_day_msan/ast.json deleted file mode 100644 index 02a4cdadb5..0000000000 --- a/parser/testdata/01602_modified_julian_day_msan/ast.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tryBase64Decode (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Subquery (alias n) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function countSubstrings (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toModifiedJulianDayOrNull (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '\\0'" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Subquery (alias srocpnuv) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function regionIn (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'l. '" - } - ], - - "rows": 25, - - "statistics": - { - "elapsed": 0.001072004, - "rows_read": 25, - "bytes_read": 1105 - } -} diff --git a/parser/testdata/01602_runningConcurrency/ast.json b/parser/testdata/01602_runningConcurrency/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01602_runningConcurrency/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01602_show_create_view/ast.json b/parser/testdata/01602_show_create_view/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01602_show_create_view/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01602_temporary_table_in_system_tables/ast.json b/parser/testdata/01602_temporary_table_in_system_tables/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01602_temporary_table_in_system_tables/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01603_decimal_mult_float/ast.json b/parser/testdata/01603_decimal_mult_float/ast.json deleted file mode 100644 index e9c2a93fb9..0000000000 --- a/parser/testdata/01603_decimal_mult_float/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001502311, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01603_insert_select_too_many_parts/ast.json b/parser/testdata/01603_insert_select_too_many_parts/ast.json deleted file mode 100644 index b2d2019f21..0000000000 --- a/parser/testdata/01603_insert_select_too_many_parts/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery too_many_parts (children 1)" - }, - { - "explain": " Identifier too_many_parts" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001554319, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01603_read_with_backoff_bug/ast.json b/parser/testdata/01603_read_with_backoff_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01603_read_with_backoff_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01603_remove_column_ttl/ast.json b/parser/testdata/01603_remove_column_ttl/ast.json deleted file mode 100644 index 05bceba592..0000000000 --- a/parser/testdata/01603_remove_column_ttl/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_with_column_ttl (children 1)" - }, - { - "explain": " Identifier table_with_column_ttl" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00155359, - "rows_read": 2, - "bytes_read": 94 - } -} diff --git a/parser/testdata/01603_rename_overwrite_bug/ast.json b/parser/testdata/01603_rename_overwrite_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01603_rename_overwrite_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01604_explain_ast_of_nonselect_query/ast.json b/parser/testdata/01604_explain_ast_of_nonselect_query/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01604_explain_ast_of_nonselect_query/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01605_adaptive_granularity_block_borders/ast.json b/parser/testdata/01605_adaptive_granularity_block_borders/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01605_adaptive_granularity_block_borders/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01605_dictinct_two_level/ast.json b/parser/testdata/01605_dictinct_two_level/ast.json deleted file mode 100644 index f1e8ddb345..0000000000 --- a/parser/testdata/01605_dictinct_two_level/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00194437, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01605_drop_settings_profile_while_assigned/ast.json b/parser/testdata/01605_drop_settings_profile_while_assigned/ast.json deleted file mode 100644 index 6a763b060d..0000000000 --- a/parser/testdata/01605_drop_settings_profile_while_assigned/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateUserQuery" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001099865, - "rows_read": 1, - "bytes_read": 23 - } -} diff --git a/parser/testdata/01605_key_condition_enum_int/ast.json b/parser/testdata/01605_key_condition_enum_int/ast.json deleted file mode 100644 index 2f22419bca..0000000000 --- a/parser/testdata/01605_key_condition_enum_int/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery enum (children 1)" - }, - { - "explain": " Identifier enum" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001356197, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01605_skip_idx_compact_parts/ast.json b/parser/testdata/01605_skip_idx_compact_parts/ast.json deleted file mode 100644 index 85e40d2543..0000000000 --- a/parser/testdata/01605_skip_idx_compact_parts/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery skip_idx_comp_parts (children 1)" - }, - { - "explain": " Identifier skip_idx_comp_parts" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001687182, - "rows_read": 2, - "bytes_read": 90 - } -} diff --git a/parser/testdata/01606_merge_from_wide_to_compact/ast.json b/parser/testdata/01606_merge_from_wide_to_compact/ast.json deleted file mode 100644 index 25f2a9c168..0000000000 --- a/parser/testdata/01606_merge_from_wide_to_compact/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery wide_to_comp (children 1)" - }, - { - "explain": " Identifier wide_to_comp" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001226368, - "rows_read": 2, - "bytes_read": 76 - } -} diff --git a/parser/testdata/01611_constant_folding_subqueries/ast.json b/parser/testdata/01611_constant_folding_subqueries/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01611_constant_folding_subqueries/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01611_string_to_low_cardinality_key_alter/ast.json b/parser/testdata/01611_string_to_low_cardinality_key_alter/ast.json deleted file mode 100644 index c32c57031d..0000000000 --- a/parser/testdata/01611_string_to_low_cardinality_key_alter/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery table_with_lc_key (children 1)" - }, - { - "explain": " Identifier table_with_lc_key" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001718771, - "rows_read": 2, - "bytes_read": 86 - } -} diff --git a/parser/testdata/01614_with_fill_with_limit/ast.json b/parser/testdata/01614_with_fill_with_limit/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01614_with_fill_with_limit/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01615_random_one_shard_insertion/ast.json b/parser/testdata/01615_random_one_shard_insertion/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01615_random_one_shard_insertion/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01615_two_args_function_index_fix/ast.json b/parser/testdata/01615_two_args_function_index_fix/ast.json deleted file mode 100644 index 4d47ded06e..0000000000 --- a/parser/testdata/01615_two_args_function_index_fix/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery bad_date_time (children 1)" - }, - { - "explain": " Identifier bad_date_time" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001081925, - "rows_read": 2, - "bytes_read": 78 - } -} diff --git a/parser/testdata/01616_untuple_access_field/ast.json b/parser/testdata/01616_untuple_access_field/ast.json deleted file mode 100644 index 5aece0b315..0000000000 --- a/parser/testdata/01616_untuple_access_field/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function untuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Tuple_(UInt64_1, UInt64_2)" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001307773, - "rows_read": 16, - "bytes_read": 666 - } -} diff --git a/parser/testdata/01620_fix_simple_state_arg_type/ast.json b/parser/testdata/01620_fix_simple_state_arg_type/ast.json deleted file mode 100644 index 8575d4065a..0000000000 --- a/parser/testdata/01620_fix_simple_state_arg_type/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ay (children 1)" - }, - { - "explain": " Identifier ay" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001274471, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01621_bar_nan_arguments/ast.json b/parser/testdata/01621_bar_nan_arguments/ast.json deleted file mode 100644 index 45e6287acf..0000000000 --- a/parser/testdata/01621_bar_nan_arguments/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bar (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function minus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function greatCircleAngle (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal UInt64_65537" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_65535" - }, - { - "explain": " Literal UInt64_1048576" - }, - { - "explain": " Literal UInt64_1048577" - }, - { - "explain": " Literal Float64_nan" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.001382625, - "rows_read": 21, - "bytes_read": 824 - } -} diff --git a/parser/testdata/01621_decode_XML/ast.json b/parser/testdata/01621_decode_XML/ast.json deleted file mode 100644 index 33798cf37c..0000000000 --- a/parser/testdata/01621_decode_XML/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function decodeXMLComponent (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'Hello, "world"!'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001635438, - "rows_read": 7, - "bytes_read": 290 - } -} diff --git a/parser/testdata/01621_sort_after_join_pipeline_stuck/ast.json b/parser/testdata/01621_sort_after_join_pipeline_stuck/ast.json deleted file mode 100644 index 39d79ca9a1..0000000000 --- a/parser/testdata/01621_sort_after_join_pipeline_stuck/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001605932, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01621_summap_check_types/ast.json b/parser/testdata/01621_summap_check_types/ast.json deleted file mode 100644 index 098a9fe0c7..0000000000 --- a/parser/testdata/01621_summap_check_types/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function initializeAggregation (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal 'sumMap'" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - }, - { - "explain": " Literal Array_[UInt64_1, NULL]" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001580535, - "rows_read": 10, - "bytes_read": 414 - } -} diff --git a/parser/testdata/01622_byte_size/ast.json b/parser/testdata/01622_byte_size/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01622_byte_size/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01622_codec_zstd_long/ast.json b/parser/testdata/01622_codec_zstd_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01622_codec_zstd_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01622_constraints_simple_optimization/ast.json b/parser/testdata/01622_constraints_simple_optimization/ast.json deleted file mode 100644 index 48707c6c2e..0000000000 --- a/parser/testdata/01622_constraints_simple_optimization/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery constraint_test_assumption (children 1)" - }, - { - "explain": " Identifier constraint_test_assumption" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001374778, - "rows_read": 2, - "bytes_read": 104 - } -} diff --git a/parser/testdata/01622_constraints_where_optimization/ast.json b/parser/testdata/01622_constraints_where_optimization/ast.json deleted file mode 100644 index 46f148097e..0000000000 --- a/parser/testdata/01622_constraints_where_optimization/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001169336, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01622_defaults_for_file_engine/ast.json b/parser/testdata/01622_defaults_for_file_engine/ast.json deleted file mode 100644 index 806af8ba51..0000000000 --- a/parser/testdata/01622_defaults_for_file_engine/ast.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "InsertQuery (children 1)" - }, - { - "explain": " Function file (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Identifier data1622.json" - }, - { - "explain": " Identifier TSV" - }, - { - "explain": " Identifier value String" - } - ], - - "rows": 6, - - "statistics": - { - "elapsed": 0.001168101, - "rows_read": 6, - "bytes_read": 200 - } -} diff --git a/parser/testdata/01622_multiple_ttls/ast.json b/parser/testdata/01622_multiple_ttls/ast.json deleted file mode 100644 index b716add3e5..0000000000 --- a/parser/testdata/01622_multiple_ttls/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'TTL WHERE'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001721574, - "rows_read": 5, - "bytes_read": 180 - } -} diff --git a/parser/testdata/01623_byte_size_const/ast.json b/parser/testdata/01623_byte_size_const/ast.json deleted file mode 100644 index fb97601774..0000000000 --- a/parser/testdata/01623_byte_size_const/ast.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function byteSize (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_123" - }, - { - "explain": " Literal Float64_456.7" - }, - { - "explain": " Function isConstant (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - } - ], - - "rows": 11, - - "statistics": - { - "elapsed": 0.001459365, - "rows_read": 11, - "bytes_read": 418 - } -} diff --git a/parser/testdata/01623_constraints_column_swap/ast.json b/parser/testdata/01623_constraints_column_swap/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01623_constraints_column_swap/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01625_constraints_index_append/ast.json b/parser/testdata/01625_constraints_index_append/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01625_constraints_index_append/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01626_cnf_test/ast.json b/parser/testdata/01626_cnf_test/ast.json deleted file mode 100644 index 3afc900ca5..0000000000 --- a/parser/testdata/01626_cnf_test/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00142471, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01630_disallow_floating_point_as_partition_key/ast.json b/parser/testdata/01630_disallow_floating_point_as_partition_key/ast.json deleted file mode 100644 index becd10bcb7..0000000000 --- a/parser/testdata/01630_disallow_floating_point_as_partition_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test (children 1)" - }, - { - "explain": " Identifier test" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001415508, - "rows_read": 2, - "bytes_read": 60 - } -} diff --git a/parser/testdata/01630_simple_aggregate_all_functions_in_aggregating_merge_tree/ast.json b/parser/testdata/01630_simple_aggregate_all_functions_in_aggregating_merge_tree/ast.json deleted file mode 100644 index 6ff00b5486..0000000000 --- a/parser/testdata/01630_simple_aggregate_all_functions_in_aggregating_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery simple_agf_summing_mt (children 1)" - }, - { - "explain": " Identifier simple_agf_summing_mt" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001290657, - "rows_read": 2, - "bytes_read": 94 - } -} diff --git a/parser/testdata/01630_simple_aggregate_all_functions_in_summing_merge_tree/ast.json b/parser/testdata/01630_simple_aggregate_all_functions_in_summing_merge_tree/ast.json deleted file mode 100644 index a661e876f9..0000000000 --- a/parser/testdata/01630_simple_aggregate_all_functions_in_summing_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery simple_agf_aggregating_mt (children 1)" - }, - { - "explain": " Identifier simple_agf_aggregating_mt" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001609205, - "rows_read": 2, - "bytes_read": 102 - } -} diff --git a/parser/testdata/01630_simple_aggregate_function_in_summing_merge_tree/ast.json b/parser/testdata/01630_simple_aggregate_function_in_summing_merge_tree/ast.json deleted file mode 100644 index af0d3ae6c3..0000000000 --- a/parser/testdata/01630_simple_aggregate_function_in_summing_merge_tree/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery test_smt (children 1)" - }, - { - "explain": " Identifier test_smt" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001686889, - "rows_read": 2, - "bytes_read": 68 - } -} diff --git a/parser/testdata/01631_date_overflow_as_partition_key/ast.json b/parser/testdata/01631_date_overflow_as_partition_key/ast.json deleted file mode 100644 index a83c1af245..0000000000 --- a/parser/testdata/01631_date_overflow_as_partition_key/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery dt_overflow (children 1)" - }, - { - "explain": " Identifier dt_overflow" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001314411, - "rows_read": 2, - "bytes_read": 74 - } -} diff --git a/parser/testdata/01632_group_array_msan/ast.json b/parser/testdata/01632_group_array_msan/ast.json deleted file mode 100644 index 7c9a89742b..0000000000 --- a/parser/testdata/01632_group_array_msan/ast.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupArrayMerge (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Literal UInt64_1048576" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1048577" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupArrayState (alias y) (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_9223372036854775807" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1048576 (alias x)" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 35, - - "statistics": - { - "elapsed": 0.001441585, - "rows_read": 35, - "bytes_read": 1546 - } -} diff --git a/parser/testdata/01632_max_partitions_to_read/ast.json b/parser/testdata/01632_max_partitions_to_read/ast.json deleted file mode 100644 index 4f8c7370b3..0000000000 --- a/parser/testdata/01632_max_partitions_to_read/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery p (children 1)" - }, - { - "explain": " Identifier p" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001289074, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01632_nullable_string_type_convert_to_decimal_type/ast.json b/parser/testdata/01632_nullable_string_type_convert_to_decimal_type/ast.json deleted file mode 100644 index 504dd82b2a..0000000000 --- a/parser/testdata/01632_nullable_string_type_convert_to_decimal_type/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['42.1', NULL]" - }, - { - "explain": " Literal 'Nullable(Decimal(10, 2))'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001115795, - "rows_read": 10, - "bytes_read": 406 - } -} diff --git a/parser/testdata/01632_select_all_syntax/ast.json b/parser/testdata/01632_select_all_syntax/ast.json deleted file mode 100644 index 8227f946d1..0000000000 --- a/parser/testdata/01632_select_all_syntax/ast.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'a'" - } - ], - - "rows": 5, - - "statistics": - { - "elapsed": 0.001334604, - "rows_read": 5, - "bytes_read": 172 - } -} diff --git a/parser/testdata/01633_limit_fuzz/ast.json b/parser/testdata/01633_limit_fuzz/ast.json deleted file mode 100644 index 5d5f612dfd..0000000000 --- a/parser/testdata/01633_limit_fuzz/ast.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 5)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1 (alias k)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_100000" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier k" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1025" - }, - { - "explain": " Literal UInt64_1023" - }, - { - "explain": " Identifier Values" - } - ], - - "rows": 20, - - "statistics": - { - "elapsed": 0.001622923, - "rows_read": 20, - "bytes_read": 730 - } -} diff --git a/parser/testdata/01634_sum_map_nulls/ast.json b/parser/testdata/01634_sum_map_nulls/ast.json deleted file mode 100644 index 2f4ef42f6e..0000000000 --- a/parser/testdata/01634_sum_map_nulls/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function initializeAggregation (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal 'sumMap'" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_1]" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_1, UInt64_1]" - }, - { - "explain": " Literal Array_[Int64_-1, NULL, UInt64_10]" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.00128833, - "rows_read": 10, - "bytes_read": 445 - } -} diff --git a/parser/testdata/01634_summap_nullable/ast.json b/parser/testdata/01634_summap_nullable/ast.json deleted file mode 100644 index 81869d431b..0000000000 --- a/parser/testdata/01634_summap_nullable/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumMap (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal Array_['a', 'b']" - }, - { - "explain": " Literal Array_[UInt64_1, NULL]" - } - ], - - "rows": 8, - - "statistics": - { - "elapsed": 0.00138313, - "rows_read": 8, - "bytes_read": 311 - } -} diff --git a/parser/testdata/01634_uuid_fuzz/ast.json b/parser/testdata/01634_uuid_fuzz/ast.json deleted file mode 100644 index f3c4924cb3..0000000000 --- a/parser/testdata/01634_uuid_fuzz/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function toUUID (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_-1.1" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001421283, - "rows_read": 7, - "bytes_read": 263 - } -} diff --git a/parser/testdata/01635_nullable_fuzz/ast.json b/parser/testdata/01635_nullable_fuzz/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01635_nullable_fuzz/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01635_sum_map_fuzz/ast.json b/parser/testdata/01635_sum_map_fuzz/ast.json deleted file mode 100644 index c1e91d2ff2..0000000000 --- a/parser/testdata/01635_sum_map_fuzz/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function finalizeAggregation (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function initializeAggregation (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal 'sumMapState'" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2]" - }, - { - "explain": " Literal Array_[UInt64_1, NULL]" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.001467689, - "rows_read": 21, - "bytes_read": 923 - } -} diff --git a/parser/testdata/01636_nullable_fuzz2/ast.json b/parser/testdata/01636_nullable_fuzz2/ast.json deleted file mode 100644 index 501cc58c40..0000000000 --- a/parser/testdata/01636_nullable_fuzz2/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery open_events_tmp (children 1)" - }, - { - "explain": " Identifier open_events_tmp" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001613935, - "rows_read": 2, - "bytes_read": 82 - } -} diff --git a/parser/testdata/01637_nullable_fuzz3/ast.json b/parser/testdata/01637_nullable_fuzz3/ast.json deleted file mode 100644 index c27890a0e3..0000000000 --- a/parser/testdata/01637_nullable_fuzz3/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001183407, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01638_div_mod_ambiguities/ast.json b/parser/testdata/01638_div_mod_ambiguities/ast.json deleted file mode 100644 index 59342ce07e..0000000000 --- a/parser/testdata/01638_div_mod_ambiguities/ast.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier DIV (alias MOD)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1 (alias DIV)" - }, - { - "explain": " Identifier TSVWithNames" - } - ], - - "rows": 15, - - "statistics": - { - "elapsed": 0.001742116, - "rows_read": 15, - "bytes_read": 613 - } -} diff --git a/parser/testdata/01639_distributed_sync_insert_zero_rows/ast.json b/parser/testdata/01639_distributed_sync_insert_zero_rows/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01639_distributed_sync_insert_zero_rows/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01640_distributed_async_insert_compression/ast.json b/parser/testdata/01640_distributed_async_insert_compression/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01640_distributed_async_insert_compression/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01640_marks_corruption_regression/ast.json b/parser/testdata/01640_marks_corruption_regression/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01640_marks_corruption_regression/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01641_memory_tracking_insert_optimize/ast.json b/parser/testdata/01641_memory_tracking_insert_optimize/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01641_memory_tracking_insert_optimize/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01642_if_nullable_regression/ast.json b/parser/testdata/01642_if_nullable_regression/ast.json deleted file mode 100644 index 812f6bdae7..0000000000 --- a/parser/testdata/01642_if_nullable_regression/ast.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumIf (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " Identifier dummy" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function remote (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '127.0.0.{1,2}'" - }, - { - "explain": " Function view (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (alias dummy) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal 'Nullable(UInt8)'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.one" - } - ], - - "rows": 28, - - "statistics": - { - "elapsed": 0.001612209, - "rows_read": 28, - "bytes_read": 1233 - } -} diff --git a/parser/testdata/01643_merge_tree_fsync_smoke/ast.json b/parser/testdata/01643_merge_tree_fsync_smoke/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01643_merge_tree_fsync_smoke/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01643_replicated_merge_tree_fsync_smoke/ast.json b/parser/testdata/01643_replicated_merge_tree_fsync_smoke/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01643_replicated_merge_tree_fsync_smoke/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01644_distributed_async_insert_fsync_smoke/ast.json b/parser/testdata/01644_distributed_async_insert_fsync_smoke/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01644_distributed_async_insert_fsync_smoke/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01645_system_table_engines/ast.json b/parser/testdata/01645_system_table_engines/ast.json deleted file mode 100644 index 10aa0c7019..0000000000 --- a/parser/testdata/01645_system_table_engines/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 4)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.table_engines" - }, - { - "explain": " Function in (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier name" - }, - { - "explain": " Literal Tuple_('MergeTree', 'ReplicatedCollapsingMergeTree')" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " OrderByElement (children 1)" - }, - { - "explain": " Identifier name" - }, - { - "explain": " Identifier PrettyCompactNoEscapes" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001522385, - "rows_read": 17, - "bytes_read": 676 - } -} diff --git a/parser/testdata/01646_fix_window_funnel_inconistency/ast.json b/parser/testdata/01646_fix_window_funnel_inconistency/ast.json deleted file mode 100644 index 5ea63b8ca9..0000000000 --- a/parser/testdata/01646_fix_window_funnel_inconistency/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery trend (children 1)" - }, - { - "explain": " Identifier trend" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001604894, - "rows_read": 2, - "bytes_read": 62 - } -} diff --git a/parser/testdata/01646_rewrite_sum_if/ast.json b/parser/testdata/01646_rewrite_sum_if/ast.json deleted file mode 100644 index 741874ec1b..0000000000 --- a/parser/testdata/01646_rewrite_sum_if/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001586869, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01646_rewrite_sum_if_bug/ast.json b/parser/testdata/01646_rewrite_sum_if_bug/ast.json deleted file mode 100644 index acaabb90d8..0000000000 --- a/parser/testdata/01646_rewrite_sum_if_bug/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery t (children 1)" - }, - { - "explain": " Identifier t" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001673259, - "rows_read": 2, - "bytes_read": 54 - } -} diff --git a/parser/testdata/01646_system_restart_replicas_smoke/ast.json b/parser/testdata/01646_system_restart_replicas_smoke/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01646_system_restart_replicas_smoke/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01648_mutations_and_escaping/ast.json b/parser/testdata/01648_mutations_and_escaping/ast.json deleted file mode 100644 index a97687493b..0000000000 --- a/parser/testdata/01648_mutations_and_escaping/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery mutations_and_escaping_1648 (children 1)" - }, - { - "explain": " Identifier mutations_and_escaping_1648" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001288131, - "rows_read": 2, - "bytes_read": 106 - } -} diff --git a/parser/testdata/01648_normalize_query_keep_names/ast.json b/parser/testdata/01648_normalize_query_keep_names/ast.json deleted file mode 100644 index adb64d4444..0000000000 --- a/parser/testdata/01648_normalize_query_keep_names/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function normalizeQueryKeepNames (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal 'SELECT 1 AS `aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee`'" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.00124096, - "rows_read": 7, - "bytes_read": 320 - } -} diff --git a/parser/testdata/01649_with_alias_key_condition/ast.json b/parser/testdata/01649_with_alias_key_condition/ast.json deleted file mode 100644 index 23668f7f8e..0000000000 --- a/parser/testdata/01649_with_alias_key_condition/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery alias_key_condition (children 1)" - }, - { - "explain": " Identifier alias_key_condition" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00114866, - "rows_read": 2, - "bytes_read": 90 - } -} diff --git a/parser/testdata/01650_drop_part_and_deduplication_zookeeper_long/ast.json b/parser/testdata/01650_drop_part_and_deduplication_zookeeper_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01650_drop_part_and_deduplication_zookeeper_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01650_expressions_merge_bug/ast.json b/parser/testdata/01650_expressions_merge_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01650_expressions_merge_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01650_fetch_patition_with_macro_in_zk_path_long/ast.json b/parser/testdata/01650_fetch_patition_with_macro_in_zk_path_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01650_fetch_patition_with_macro_in_zk_path_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01651_bugs_from_15889/ast.json b/parser/testdata/01651_bugs_from_15889/ast.json deleted file mode 100644 index 71f1eea464..0000000000 --- a/parser/testdata/01651_bugs_from_15889/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery xp (children 1)" - }, - { - "explain": " Identifier xp" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001570167, - "rows_read": 2, - "bytes_read": 56 - } -} diff --git a/parser/testdata/01651_group_uniq_array_enum/ast.json b/parser/testdata/01651_group_uniq_array_enum/ast.json deleted file mode 100644 index 090481a1f8..0000000000 --- a/parser/testdata/01651_group_uniq_array_enum/ast.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arraySort (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function groupUniqArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function CAST (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function arrayJoin (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[UInt64_1, UInt64_2, UInt64_3, UInt64_2, UInt64_3, UInt64_3]" - }, - { - "explain": " Literal 'Enum(\\'Hello\\' = 1, \\'World\\' = 2, \\'Упячка\\' = 3)'" - } - ], - - "rows": 23, - - "statistics": - { - "elapsed": 0.001569422, - "rows_read": 23, - "bytes_read": 1086 - } -} diff --git a/parser/testdata/01651_lc_insert_tiny_log_1/ast.json b/parser/testdata/01651_lc_insert_tiny_log_1/ast.json deleted file mode 100644 index 7e00188295..0000000000 --- a/parser/testdata/01651_lc_insert_tiny_log_1/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001234829, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01651_lc_insert_tiny_log_2/ast.json b/parser/testdata/01651_lc_insert_tiny_log_2/ast.json deleted file mode 100644 index 00fab33421..0000000000 --- a/parser/testdata/01651_lc_insert_tiny_log_2/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001620891, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01651_lc_insert_tiny_log_3/ast.json b/parser/testdata/01651_lc_insert_tiny_log_3/ast.json deleted file mode 100644 index ed298e0bae..0000000000 --- a/parser/testdata/01651_lc_insert_tiny_log_3/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001410544, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01651_map_functions/ast.json b/parser/testdata/01651_map_functions/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01651_map_functions/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01652_ignore_and_low_cardinality/ast.json b/parser/testdata/01652_ignore_and_low_cardinality/ast.json deleted file mode 100644 index bff8937cc6..0000000000 --- a/parser/testdata/01652_ignore_and_low_cardinality/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001409972, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01652_ttl_old_syntax/ast.json b/parser/testdata/01652_ttl_old_syntax/ast.json deleted file mode 100644 index 207c022375..0000000000 --- a/parser/testdata/01652_ttl_old_syntax/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery ttl_old_syntax (children 1)" - }, - { - "explain": " Identifier ttl_old_syntax" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.001495537, - "rows_read": 2, - "bytes_read": 80 - } -} diff --git a/parser/testdata/01653_tuple_hamming_distance_2/ast.json b/parser/testdata/01653_tuple_hamming_distance_2/ast.json deleted file mode 100644 index faf3ef600c..0000000000 --- a/parser/testdata/01653_tuple_hamming_distance_2/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function tupleHammingDistance (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001539478, - "rows_read": 12, - "bytes_read": 473 - } -} diff --git a/parser/testdata/01654_bar_nan/ast.json b/parser/testdata/01654_bar_nan/ast.json deleted file mode 100644 index 36c581da5f..0000000000 --- a/parser/testdata/01654_bar_nan/ast.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function bar (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal Int64_-1" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " Literal Float64_nan" - } - ], - - "rows": 9, - - "statistics": - { - "elapsed": 0.001307459, - "rows_read": 9, - "bytes_read": 337 - } -} diff --git a/parser/testdata/01655_agg_if_nullable/ast.json b/parser/testdata/01655_agg_if_nullable/ast.json deleted file mode 100644 index 9ef42ca627..0000000000 --- a/parser/testdata/01655_agg_if_nullable/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sumIf (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function remote (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '127.0.0.{1,2}'" - }, - { - "explain": " Identifier system.one" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001383457, - "rows_read": 17, - "bytes_read": 673 - } -} diff --git a/parser/testdata/01655_plan_optimizations_merge_filters/ast.json b/parser/testdata/01655_plan_optimizations_merge_filters/ast.json deleted file mode 100644 index 8e527278bc..0000000000 --- a/parser/testdata/01655_plan_optimizations_merge_filters/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.00141022, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01655_quarter_modificator_for_formatDateTime/ast.json b/parser/testdata/01655_quarter_modificator_for_formatDateTime/ast.json deleted file mode 100644 index 4b338ae82f..0000000000 --- a/parser/testdata/01655_quarter_modificator_for_formatDateTime/ast.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function formatDateTime (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2010-01-04'" - }, - { - "explain": " Literal '%Q'" - } - ], - - "rows": 10, - - "statistics": - { - "elapsed": 0.001599909, - "rows_read": 10, - "bytes_read": 383 - } -} diff --git a/parser/testdata/01655_sleep_infinite_float/ast.json b/parser/testdata/01655_sleep_infinite_float/ast.json deleted file mode 100644 index b6b7e134ec..0000000000 --- a/parser/testdata/01655_sleep_infinite_float/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sleep (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Float64_nan" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001133982, - "rows_read": 7, - "bytes_read": 261 - } -} diff --git a/parser/testdata/01655_test_isnull_mysql_dialect/ast.json b/parser/testdata/01655_test_isnull_mysql_dialect/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01655_test_isnull_mysql_dialect/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01655_window_functions_bug/ast.json b/parser/testdata/01655_window_functions_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01655_window_functions_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01655_window_functions_cume_dist/ast.json b/parser/testdata/01655_window_functions_cume_dist/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01655_window_functions_cume_dist/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01655_window_functions_null/ast.json b/parser/testdata/01655_window_functions_null/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01655_window_functions_null/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01656_ipv4_bad_formatting/ast.json b/parser/testdata/01656_ipv4_bad_formatting/ast.json deleted file mode 100644 index 08fd6a27d1..0000000000 --- a/parser/testdata/01656_ipv4_bad_formatting/ast.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function arrayJoin (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_['1.1.1.1', '255.255.255.255']" - }, - { - "explain": " Function toIPv4 (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Function toUInt32 (alias z) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Identifier PrettyCompactNoEscapes" - } - ], - - "rows": 14, - - "statistics": - { - "elapsed": 0.001502727, - "rows_read": 14, - "bytes_read": 576 - } -} diff --git a/parser/testdata/01656_join_defaul_enum/ast.json b/parser/testdata/01656_join_defaul_enum/ast.json deleted file mode 100644 index eaaf072cad..0000000000 --- a/parser/testdata/01656_join_defaul_enum/ast.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "CreateQuery table_key (children 3)" - }, - { - "explain": " Identifier table_key" - }, - { - "explain": " Columns definition (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " ColumnDeclaration keycol (children 1)" - }, - { - "explain": " DataType UInt16" - }, - { - "explain": " Storage definition (children 3)" - }, - { - "explain": " Function MergeTree (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Function tuple (children 1)" - }, - { - "explain": " ExpressionList" - }, - { - "explain": " Identifier keycol" - } - ], - - "rows": 12, - - "statistics": - { - "elapsed": 0.001558234, - "rows_read": 12, - "bytes_read": 418 - } -} diff --git a/parser/testdata/01656_sequence_next_node_distinct/ast.json b/parser/testdata/01656_sequence_next_node_distinct/ast.json deleted file mode 100644 index d923824a56..0000000000 --- a/parser/testdata/01656_sequence_next_node_distinct/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001352778, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01656_sequence_next_node_long/ast.json b/parser/testdata/01656_sequence_next_node_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01656_sequence_next_node_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01656_test_hex_mysql_dialect/ast.json b/parser/testdata/01656_test_hex_mysql_dialect/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01656_test_hex_mysql_dialect/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01656_test_query_log_factories_info/ast.json b/parser/testdata/01656_test_query_log_factories_info/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01656_test_query_log_factories_info/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01657_array_element_ubsan/ast.json b/parser/testdata/01657_array_element_ubsan/ast.json deleted file mode 100644 index d263dd3582..0000000000 --- a/parser/testdata/01657_array_element_ubsan/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arrayElement (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_10000000000" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001367609, - "rows_read": 16, - "bytes_read": 643 - } -} diff --git a/parser/testdata/01657_test_toHour_mysql_compatibility/ast.json b/parser/testdata/01657_test_toHour_mysql_compatibility/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01657_test_toHour_mysql_compatibility/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01658_test_base64Encode_mysql_compatibility/ast.json b/parser/testdata/01658_test_base64Encode_mysql_compatibility/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01658_test_base64Encode_mysql_compatibility/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01658_values_ubsan/ast.json b/parser/testdata/01658_values_ubsan/ast.json deleted file mode 100644 index dc0c6b9f7f..0000000000 --- a/parser/testdata/01658_values_ubsan/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function VALUES (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'x UInt8, y UInt16'" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " Literal UInt64_2" - }, - { - "explain": " Literal 'Hello'" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001211712, - "rows_read": 16, - "bytes_read": 616 - } -} diff --git a/parser/testdata/01659_array_aggregation_ubsan/ast.json b/parser/testdata/01659_array_aggregation_ubsan/ast.json deleted file mode 100644 index 1b3e8e081f..0000000000 --- a/parser/testdata/01659_array_aggregation_ubsan/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arraySum (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal Array_[Int64_-9000000000000000000, Int64_-9000000000000000000]" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001285303, - "rows_read": 7, - "bytes_read": 315 - } -} diff --git a/parser/testdata/01659_h3_buffer_overflow/ast.json b/parser/testdata/01659_h3_buffer_overflow/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01659_h3_buffer_overflow/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01659_test_base64Decode_mysql_compatibility/ast.json b/parser/testdata/01659_test_base64Decode_mysql_compatibility/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01659_test_base64Decode_mysql_compatibility/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01660_join_or_all/ast.json b/parser/testdata/01660_join_or_all/ast.json deleted file mode 100644 index e815e7042a..0000000000 --- a/parser/testdata/01660_join_or_all/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001148045, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01660_join_or_any/ast.json b/parser/testdata/01660_join_or_any/ast.json deleted file mode 100644 index 276ddeab6a..0000000000 --- a/parser/testdata/01660_join_or_any/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001364715, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01660_join_or_inner/ast.json b/parser/testdata/01660_join_or_inner/ast.json deleted file mode 100644 index 00b5f2637f..0000000000 --- a/parser/testdata/01660_join_or_inner/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001720911, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01660_join_or_subqueries/ast.json b/parser/testdata/01660_join_or_subqueries/ast.json deleted file mode 100644 index eb185d65cf..0000000000 --- a/parser/testdata/01660_join_or_subqueries/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001945643, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01660_second_extremes_bug/ast.json b/parser/testdata/01660_second_extremes_bug/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01660_second_extremes_bug/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01660_sum_ubsan/ast.json b/parser/testdata/01660_sum_ubsan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01660_sum_ubsan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01660_system_parts_smoke/ast.json b/parser/testdata/01660_system_parts_smoke/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01660_system_parts_smoke/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01660_test_toDayOfYear_mysql_compatibility/ast.json b/parser/testdata/01660_test_toDayOfYear_mysql_compatibility/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01660_test_toDayOfYear_mysql_compatibility/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01661_arraySlice_ubsan/ast.json b/parser/testdata/01661_arraySlice_ubsan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01661_arraySlice_ubsan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01661_extract_all_groups_throw_fast/ast.json b/parser/testdata/01661_extract_all_groups_throw_fast/ast.json deleted file mode 100644 index 646ce2a198..0000000000 --- a/parser/testdata/01661_extract_all_groups_throw_fast/ast.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function repeat (alias haystack) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal 'abcdefghijklmnopqrstuvwxyz'" - }, - { - "explain": " Function multiply (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_100" - }, - { - "explain": " Function extractAllGroupsHorizontal (alias matches) (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier haystack" - }, - { - "explain": " Literal '(\\\\w)'" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1023" - } - ], - - "rows": 21, - - "statistics": - { - "elapsed": 0.00136138, - "rows_read": 21, - "bytes_read": 882 - } -} diff --git a/parser/testdata/01661_join_complex/ast.json b/parser/testdata/01661_join_complex/ast.json deleted file mode 100644 index b2c530f3d9..0000000000 --- a/parser/testdata/01661_join_complex/ast.json +++ /dev/null @@ -1,181 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias t1) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 6)" - }, - { - "explain": " Literal 'a' (alias a)" - }, - { - "explain": " Literal 'b' (alias b)" - }, - { - "explain": " Literal 'c' (alias c)" - }, - { - "explain": " Literal 'd' (alias d)" - }, - { - "explain": " Literal 'e' (alias e)" - }, - { - "explain": " Literal 'f' (alias f)" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias t2) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 6)" - }, - { - "explain": " Literal 'a' (alias a)" - }, - { - "explain": " Literal 'b' (alias b)" - }, - { - "explain": " Literal 'c' (alias c)" - }, - { - "explain": " Literal 'd' (alias d)" - }, - { - "explain": " Literal 'e' (alias e)" - }, - { - "explain": " Literal 'f' (alias f)" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " Function or (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function and (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t1.b" - }, - { - "explain": " Identifier t2.b" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t1.c" - }, - { - "explain": " Identifier t2.b" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t1.d" - }, - { - "explain": " Identifier t2.b" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t1.e" - }, - { - "explain": " Identifier t2.e" - } - ], - - "rows": 53, - - "statistics": - { - "elapsed": 0.001529627, - "rows_read": 53, - "bytes_read": 2162 - } -} diff --git a/parser/testdata/01661_test_toDayOfWeek_mysql_compatibility/ast.json b/parser/testdata/01661_test_toDayOfWeek_mysql_compatibility/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01661_test_toDayOfWeek_mysql_compatibility/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01661_week_functions_string_args/ast.json b/parser/testdata/01661_week_functions_string_args/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01661_week_functions_string_args/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01662_date_ubsan/ast.json b/parser/testdata/01662_date_ubsan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01662_date_ubsan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01662_join_mixed/ast.json b/parser/testdata/01662_join_mixed/ast.json deleted file mode 100644 index 3547761d16..0000000000 --- a/parser/testdata/01662_join_mixed/ast.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias t1) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'a' (alias a)" - }, - { - "explain": " Literal 'b' (alias b)" - }, - { - "explain": " Literal UInt64_42 (alias forty_two)" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias t2) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal 'a' (alias a)" - }, - { - "explain": " Literal 'b' (alias b)" - }, - { - "explain": " Literal UInt64_42 (alias forty_two)" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " Function or (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t1.b" - }, - { - "explain": " Identifier t2.a" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier t1.forty_two" - }, - { - "explain": " Identifier t2.forty_two" - } - ], - - "rows": 37, - - "statistics": - { - "elapsed": 0.001799226, - "rows_read": 37, - "bytes_read": 1549 - } -} diff --git a/parser/testdata/01662_test_toDayOfMonth_mysql_compatibility/ast.json b/parser/testdata/01662_test_toDayOfMonth_mysql_compatibility/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01662_test_toDayOfMonth_mysql_compatibility/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01663_aes_msan/ast.json b/parser/testdata/01663_aes_msan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01663_aes_msan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01663_quantile_weighted_overflow/ast.json b/parser/testdata/01663_quantile_weighted_overflow/ast.json deleted file mode 100644 index e1942389f0..0000000000 --- a/parser/testdata/01663_quantile_weighted_overflow/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function quantileExactWeighted (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_9223372036854775807" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_6" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.001253013, - "rows_read": 16, - "bytes_read": 645 - } -} diff --git a/parser/testdata/01663_test_toDate_mysql_compatibility/ast.json b/parser/testdata/01663_test_toDate_mysql_compatibility/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01663_test_toDate_mysql_compatibility/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01664_array_slice_ubsan/ast.json b/parser/testdata/01664_array_slice_ubsan/ast.json deleted file mode 100644 index b7d082306a..0000000000 --- a/parser/testdata/01664_array_slice_ubsan/ast.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function arraySlice (alias y) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function groupArray (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '6553.5'" - }, - { - "explain": " Function uniqState (alias x) (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - } - ], - - "rows": 31, - - "statistics": - { - "elapsed": 0.001308735, - "rows_read": 31, - "bytes_read": 1330 - } -} diff --git a/parser/testdata/01664_decimal_ubsan/ast.json b/parser/testdata/01664_decimal_ubsan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01664_decimal_ubsan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01664_ntoa_aton_mysql_compatibility/ast.json b/parser/testdata/01664_ntoa_aton_mysql_compatibility/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01664_ntoa_aton_mysql_compatibility/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01665_merge_tree_min_for_concurrent_read/ast.json b/parser/testdata/01665_merge_tree_min_for_concurrent_read/ast.json deleted file mode 100644 index 1bcaf86b07..0000000000 --- a/parser/testdata/01665_merge_tree_min_for_concurrent_read/ast.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "DropQuery data_01655 (children 1)" - }, - { - "explain": " Identifier data_01655" - } - ], - - "rows": 2, - - "statistics": - { - "elapsed": 0.00111047, - "rows_read": 2, - "bytes_read": 72 - } -} diff --git a/parser/testdata/01665_running_difference_ubsan/ast.json b/parser/testdata/01665_running_difference_ubsan/ast.json deleted file mode 100644 index 44286e2b5f..0000000000 --- a/parser/testdata/01665_running_difference_ubsan/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001036336, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01665_substring_ubsan/ast.json b/parser/testdata/01665_substring_ubsan/ast.json deleted file mode 100644 index 203b0809ce..0000000000 --- a/parser/testdata/01665_substring_ubsan/ast.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function substringUTF8 (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function materialize (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_7" - } - ], - - "rows": 16, - - "statistics": - { - "elapsed": 0.00153737, - "rows_read": 16, - "bytes_read": 651 - } -} diff --git a/parser/testdata/01666_blns_long/ast.json b/parser/testdata/01666_blns_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01666_blns_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01666_date_lut_buffer_overflow/ast.json b/parser/testdata/01666_date_lut_buffer_overflow/ast.json deleted file mode 100644 index f67ff85d29..0000000000 --- a/parser/testdata/01666_date_lut_buffer_overflow/ast.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function plus (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function toDate (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '2105-12-31'" - }, - { - "explain": " Function toIntervalMonth (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_25000" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 18, - - "statistics": - { - "elapsed": 0.001239082, - "rows_read": 18, - "bytes_read": 707 - } -} diff --git a/parser/testdata/01666_gcd_ubsan/ast.json b/parser/testdata/01666_gcd_ubsan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01666_gcd_ubsan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01666_great_circle_distance_ubsan/ast.json b/parser/testdata/01666_great_circle_distance_ubsan/ast.json deleted file mode 100644 index 3c4975ab38..0000000000 --- a/parser/testdata/01666_great_circle_distance_ubsan/ast.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function greatCircleAngle (children 1)" - }, - { - "explain": " ExpressionList (children 4)" - }, - { - "explain": " Literal UInt64_0" - }, - { - "explain": " Literal Int64_-9223372036854775808" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Identifier number" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_3" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 17, - - "statistics": - { - "elapsed": 0.001286494, - "rows_read": 17, - "bytes_read": 655 - } -} diff --git a/parser/testdata/01666_lcm_ubsan/ast.json b/parser/testdata/01666_lcm_ubsan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01666_lcm_ubsan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01667_aes_args_check/ast.json b/parser/testdata/01667_aes_args_check/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01667_aes_args_check/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01668_avg_weighted_ubsan/ast.json b/parser/testdata/01668_avg_weighted_ubsan/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01668_avg_weighted_ubsan/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01668_test_toMonth_mysql_dialect/ast.json b/parser/testdata/01668_test_toMonth_mysql_dialect/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01668_test_toMonth_mysql_dialect/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01669_columns_declaration_serde_long/ast.json b/parser/testdata/01669_columns_declaration_serde_long/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01669_columns_declaration_serde_long/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01669_join_or_duplicates/ast.json b/parser/testdata/01669_join_or_duplicates/ast.json deleted file mode 100644 index 74b6346cbd..0000000000 --- a/parser/testdata/01669_join_or_duplicates/ast.json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal '1 left'" - }, - { - "explain": " Asterisk" - }, - { - "explain": " TablesInSelectQuery (children 2)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias t1) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias x)" - }, - { - "explain": " Literal UInt64_2 (alias y)" - }, - { - "explain": " TablesInSelectQueryElement (children 2)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (alias t2) (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Literal UInt64_1 (alias xx)" - }, - { - "explain": " Literal UInt64_2 (alias yy)" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Function numbers (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_1" - }, - { - "explain": " TableJoin (children 1)" - }, - { - "explain": " Function or (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier x" - }, - { - "explain": " Identifier xx" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier y" - }, - { - "explain": " Identifier yy" - } - ], - - "rows": 42, - - "statistics": - { - "elapsed": 0.001146654, - "rows_read": 42, - "bytes_read": 1759 - } -} diff --git a/parser/testdata/01669_test_toYear_mysql_dialect/ast.json b/parser/testdata/01669_test_toYear_mysql_dialect/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01669_test_toYear_mysql_dialect/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01670_dictionary_create_key_expression/ast.json b/parser/testdata/01670_dictionary_create_key_expression/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01670_dictionary_create_key_expression/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01670_distributed_bytes_to_throw_insert/ast.json b/parser/testdata/01670_distributed_bytes_to_throw_insert/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01670_distributed_bytes_to_throw_insert/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01670_log_comment/ast.json b/parser/testdata/01670_log_comment/ast.json deleted file mode 100644 index a40e96f1d3..0000000000 --- a/parser/testdata/01670_log_comment/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001203796, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01670_neighbor_lc_bug/ast.json b/parser/testdata/01670_neighbor_lc_bug/ast.json deleted file mode 100644 index 2cbd3051b1..0000000000 --- a/parser/testdata/01670_neighbor_lc_bug/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001396035, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01670_sign_function/ast.json b/parser/testdata/01670_sign_function/ast.json deleted file mode 100644 index e3869353a8..0000000000 --- a/parser/testdata/01670_sign_function/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function sign (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal UInt64_0" - } - ], - - "rows": 7, - - "statistics": - { - "elapsed": 0.001232764, - "rows_read": 7, - "bytes_read": 257 - } -} diff --git a/parser/testdata/01670_test_repeat_mysql_dialect/ast.json b/parser/testdata/01670_test_repeat_mysql_dialect/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01670_test_repeat_mysql_dialect/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01671_aggregate_function_group_bitmap_data/ast.json b/parser/testdata/01671_aggregate_function_group_bitmap_data/ast.json deleted file mode 100644 index f99d7e4d50..0000000000 --- a/parser/testdata/01671_aggregate_function_group_bitmap_data/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.0011953, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01671_merge_join_and_constants/ast.json b/parser/testdata/01671_merge_join_and_constants/ast.json deleted file mode 100644 index 10479d0379..0000000000 --- a/parser/testdata/01671_merge_join_and_constants/ast.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "Set" - } - ], - - "rows": 1, - - "statistics": - { - "elapsed": 0.001311785, - "rows_read": 1, - "bytes_read": 11 - } -} diff --git a/parser/testdata/01671_test_toQuarter_mysql_dialect/ast.json b/parser/testdata/01671_test_toQuarter_mysql_dialect/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01671_test_toQuarter_mysql_dialect/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01672_actions_dag_merge_crash/ast.json b/parser/testdata/01672_actions_dag_merge_crash/ast.json deleted file mode 100644 index 0a9d9a2d6b..0000000000 --- a/parser/testdata/01672_actions_dag_merge_crash/ast.json +++ /dev/null @@ -1,244 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 2)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 3)" - }, - { - "explain": " ExpressionList (children 6)" - }, - { - "explain": " Literal Array_[NULL, '25.6', '-0.02', NULL]" - }, - { - "explain": " Literal Array_[NULL]" - }, - { - "explain": " Literal UInt64_1024" - }, - { - "explain": " Literal Array_[NULL, '10485.76', NULL, NULL]" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal '-922337203.6854775808'" - }, - { - "explain": " Function toNullable (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal Array_[NULL]" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " Subquery (children 1)" - }, - { - "explain": " SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 2)" - }, - { - "explain": " ExpressionList (children 6)" - }, - { - "explain": " Function array (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function multiIf (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal UInt64_1023" - }, - { - "explain": " Literal Float64_-inf" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal '-1'" - }, - { - "explain": " Function multiIf (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal ''" - }, - { - "explain": " Literal Array_[NULL, NULL]" - }, - { - "explain": " Function multiIf (alias s) (children 1)" - }, - { - "explain": " ExpressionList (children 3)" - }, - { - "explain": " Function equals (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Function modulo (children 1)" - }, - { - "explain": " ExpressionList (children 2)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal NULL" - }, - { - "explain": " Literal UInt64_65536" - }, - { - "explain": " Function toString (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Identifier number" - }, - { - "explain": " Literal ''" - }, - { - "explain": " TablesInSelectQuery (children 1)" - }, - { - "explain": " TablesInSelectQueryElement (children 1)" - }, - { - "explain": " TableExpression (children 1)" - }, - { - "explain": " TableIdentifier system.numbers" - }, - { - "explain": " Literal UInt64_1024" - }, - { - "explain": " Identifier Null" - } - ], - - "rows": 74, - - "statistics": - { - "elapsed": 0.002042095, - "rows_read": 74, - "bytes_read": 3230 - } -} diff --git a/parser/testdata/01672_test_toSecond_mysql_dialect/ast.json b/parser/testdata/01672_test_toSecond_mysql_dialect/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01672_test_toSecond_mysql_dialect/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01673_test_toMinute_mysql_dialect/ast.json b/parser/testdata/01673_test_toMinute_mysql_dialect/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01673_test_toMinute_mysql_dialect/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01674_executable_dictionary_implicit_key/ast.json b/parser/testdata/01674_executable_dictionary_implicit_key/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01674_executable_dictionary_implicit_key/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01674_filter_by_uint8/ast.json b/parser/testdata/01674_filter_by_uint8/ast.json deleted file mode 100644 index 490a2e17e8..0000000000 --- a/parser/testdata/01674_filter_by_uint8/ast.json +++ /dev/null @@ -1 +0,0 @@ -{"error": true} diff --git a/parser/testdata/01674_htm_xml_coarse_parse/ast.json b/parser/testdata/01674_htm_xml_coarse_parse/ast.json deleted file mode 100644 index e3ca96b4e0..0000000000 --- a/parser/testdata/01674_htm_xml_coarse_parse/ast.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "meta": - [ - { - "name": "explain", - "type": "String" - } - ], - - "data": - [ - { - "explain": "SelectWithUnionQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " SelectQuery (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Function extractTextFromHTML (children 1)" - }, - { - "explain": " ExpressionList (children 1)" - }, - { - "explain": " Literal '