File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -343,8 +343,13 @@ impl SessionConfig {
343
343
/// It ensures the query layout remains simple and readable, relying on the underlying SQL engine to apply its own optimizations during execution.
344
344
///
345
345
/// [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;
348
353
self
349
354
}
350
355
You can’t perform that action at this time.
0 commit comments