Skip to content

Commit 7124d84

Browse files
committed
style: cargo fmt
1 parent 2ae815e commit 7124d84

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

datafusion/optimizer/src/logical_pipeline/sync_phase.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,11 @@ impl SyncAnalysisPhase {
120120
/// Checks plan invariants before and after applying rules.
121121
/// [`FunctionRewrite`]s run first each pass so that `TypeCoercion`
122122
/// operates on already-rewritten expressions.
123-
pub fn apply(&self, plan: LogicalPlan, config: &ConfigOptions) -> Result<LogicalPlan> {
123+
pub fn apply(
124+
&self,
125+
plan: LogicalPlan,
126+
config: &ConfigOptions,
127+
) -> Result<LogicalPlan> {
124128
if !self.enabled || (self.rules.is_empty() && self.function_rewrites.is_empty()) {
125129
return Ok(plan);
126130
}

0 commit comments

Comments
 (0)