File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/query/sql/src/planner
tests/sqllogictests/suites/mode/standalone/explain Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -277,6 +277,8 @@ impl Planner {
277277 if enable_planner_cache {
278278 self . set_cache ( planner_cache_key. clone ( ) . unwrap ( ) , optimized_plan. clone ( ) ) ;
279279 }
280+
281+ info ! ( "logical plan built, time used: {:?}" , start. elapsed( ) ) ;
280282 Ok ( optimized_plan)
281283 }
282284
Original file line number Diff line number Diff line change 1+ statement ok
2+ set enable_parallel_multi_merge_sort = 0;
3+
14statement ok
25CREATE TABLE test_linear(a int, b int) cluster by(a,b) row_per_block = 2;
36
9699└── TableScan
97100 ├── table: default.default.test_hilbert
98101 ├── output columns: [a (#0), b (#1)]
99- ├── read rows: 3
102+ ├── read rows: 2
100103 ├── read size: < 1 KiB
101104 ├── partitions total: 2
102105 ├── partitions scanned: 1
You can’t perform that action at this time.
0 commit comments