Skip to content

Commit 9c08502

Browse files
committed
Fix
1 parent dee0f09 commit 9c08502

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

crates/executor/src/tests/sql/commands/explain.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ test_query!(
2727
explain_references_basic,
2828
"EXPLAIN SELECT name FROM testing;",
2929
setup_queries = [SETUP_QUERY],
30-
sort_all = true,
3130
snapshot_path = "explain"
3231
);
3332

crates/executor/src/tests/sql/commands/snapshots/explain/query_explain_references_basic.snap

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ info: "Setup queries: CREATE OR REPLACE TABLE testing (name VARCHAR)\nAS SELECT
66
---
77
Ok(
88
[
9-
"+---------------+----------------------------------------------------------------------------------------------------------------------------------+",
10-
"| plan_type | plan |",
11-
"+---------------+----------------------------------------------------------------------------------------------------------------------------------+",
12-
"| logical_plan | TableScan: testing projection=[name] |",
9+
"+---------------+------------------------------------------------------------------------------------------------------------------------------------------+",
10+
"| plan_type | plan |",
11+
"+---------------+------------------------------------------------------------------------------------------------------------------------------------------+",
12+
"| logical_plan | TableScan: testing projection=[name] |",
1313
"| physical_plan | DataSourceExec: file_groups={1 group: [[data/[HEX]/[UUID].parquet]]}, projection=[name], file_type=parquet |",
14-
"| | |",
15-
"+---------------+----------------------------------------------------------------------------------------------------------------------------------+",
14+
"| | |",
15+
"+---------------+------------------------------------------------------------------------------------------------------------------------------------------+",
1616
],
1717
)

0 commit comments

Comments
 (0)