We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 528192e commit 6a770f0Copy full SHA for 6a770f0
crates/core/src/operations/optimize.rs
@@ -718,6 +718,8 @@ impl MergePlan {
718
})
719
.boxed(),
720
OptimizeOperations::ZOrder(zorder_columns, bins) => {
721
+ debug!("Starting zorder with the columns: {zorder_columns:?} {bins:?}");
722
+
723
#[cfg(not(feature = "datafusion"))]
724
let exec_context = Arc::new(zorder::ZOrderExecContext::new(
725
zorder_columns,
@@ -729,7 +731,6 @@ impl MergePlan {
729
731
bins.len() <= num_cpus::get(),
730
732
));
733
- debug!("Starting zorder with the columns: {zorder_columns:?} {bins:?}");
734
#[cfg(feature = "datafusion")]
735
736
0 commit comments