Skip to content

Commit ef4c469

Browse files
committed
Improve formatting
1 parent 32da325 commit ef4c469

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

datafusion/execution/src/config.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,13 @@ impl SessionConfig {
343343
/// It ensures the query layout remains simple and readable, relying on the underlying SQL engine to apply its own optimizations during execution.
344344
///
345345
/// [optimize_projections_preserve_existing_projections]: datafusion_common::config::OptimizerOptions::optimize_projections_preserve_existing_projections
346-
pub fn with_optimize_projections_preserve_existing_projections(mut self, enabled: bool) -> Self {
347-
self.options.optimizer.optimize_projections_preserve_existing_projections = enabled;
346+
pub fn with_optimize_projections_preserve_existing_projections(
347+
mut self,
348+
enabled: bool,
349+
) -> Self {
350+
self.options
351+
.optimizer
352+
.optimize_projections_preserve_existing_projections = enabled;
348353
self
349354
}
350355

0 commit comments

Comments
 (0)