We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 545f83b commit 3f00222Copy full SHA for 3f00222
1 file changed
datafusion/physical-expr/src/expressions/dynamic_filters.rs
@@ -525,7 +525,11 @@ impl PhysicalExpr for DynamicFilterPhysicalExpr {
525
self.render(f, |expr, f| expr.fmt_sql(f))
526
}
527
528
- #[allow(deprecated)]
+ #[allow(useless_deprecated, unused_attributes)]
529
+ #[deprecated(
530
+ since = "54.0.0",
531
+ note = "downcast to `DynamicFilterPhysicalExpr` and call `current()` instead"
532
+ )]
533
fn snapshot(&self) -> Result<Option<Arc<dyn PhysicalExpr>>> {
534
// Return the current expression as a snapshot.
535
Ok(Some(self.current()?))
0 commit comments