Skip to content

Commit 45d9501

Browse files
committed
Fix Explain Analyze
1 parent 09379a9 commit 45d9501

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

  • datafusion-federation/src/analyzer

datafusion-federation/src/analyzer/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,10 @@ impl FederationAnalyzerRule {
165165
sole_provider = ScanResult::Ambiguous;
166166
Ok(TreeNodeRecursion::Stop)
167167
}
168+
Expr::ScalarFunction(ref func) => {
169+
sole_provider = ScanResult::Ambiguous;
170+
Ok(TreeNodeRecursion::Stop)
171+
}
168172
_ => Ok(TreeNodeRecursion::Continue),
169173
}
170174
})?;

0 commit comments

Comments
 (0)