Skip to content

Commit 45b0da4

Browse files
authored
fix(ci): flaky test (#16664)
* fix(ci): flaky test * chore: add info log for logic plan built
1 parent ea5d2d6 commit 45b0da4

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/query/sql/src/planner/planner.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

tests/sqllogictests/suites/mode/standalone/explain/clustering.test

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
statement ok
2+
set enable_parallel_multi_merge_sort = 0;
3+
14
statement ok
25
CREATE TABLE test_linear(a int, b int) cluster by(a,b) row_per_block = 2;
36

@@ -96,7 +99,7 @@ Filter
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

0 commit comments

Comments
 (0)