Skip to content

Commit 715401e

Browse files
committed
Fix blink
1 parent b37cbf7 commit 715401e

2 files changed

Lines changed: 4 additions & 5 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ info: "Setup queries: CREATE OR REPLACE TABLE testing (name VARCHAR)\nAS SELECT
55
---
66
Ok(
77
[
8-
"+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+",
8+
"+---------------+------------------------------------------------------------------------------------------------------------------------------------------+",
99
"| plan_type | plan |",
10-
"+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+",
11-
"| logical_plan | TableScan: testing projection=[name] |",
10+
"+---------------+------------------------------------------------------------------------------------------------------------------------------------------+",
11+
"| logical_plan | TableScan: testing projection=[name] |",
1212
"| physical_plan | DataSourceExec: file_groups={1 group: [[data/[HEX]/[UUID].parquet]]}, projection=[name], file_type=parquet |",
1313
"| | |",
14-
"+---------------+-------------------------------------------------------------------------------------------------------------------------------------------+",
14+
"+---------------+------------------------------------------------------------------------------------------------------------------------------------------+",
1515
],
1616
)

0 commit comments

Comments
 (0)