We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ae815e commit 7124d84Copy full SHA for 7124d84
1 file changed
datafusion/optimizer/src/logical_pipeline/sync_phase.rs
@@ -120,7 +120,11 @@ impl SyncAnalysisPhase {
120
/// Checks plan invariants before and after applying rules.
121
/// [`FunctionRewrite`]s run first each pass so that `TypeCoercion`
122
/// operates on already-rewritten expressions.
123
- pub fn apply(&self, plan: LogicalPlan, config: &ConfigOptions) -> Result<LogicalPlan> {
+ pub fn apply(
124
+ &self,
125
+ plan: LogicalPlan,
126
+ config: &ConfigOptions,
127
+ ) -> Result<LogicalPlan> {
128
if !self.enabled || (self.rules.is_empty() && self.function_rewrites.is_empty()) {
129
return Ok(plan);
130
}
0 commit comments