pub fn is_dynamic_physical_expr(expr: &Arc<dyn PhysicalExpr>) -> bool👎Deprecated since 55.0.0:
Downcast to DynamicFilterPhysicalExpr, or use DynamicFilterTracking::classify(expr).contains_dynamic_filter() from datafusion_physical_expr
Expand description
Check if the given PhysicalExpr is dynamic.
Internally this calls snapshot_generation to check if the generation is non-zero,
any dynamic PhysicalExpr should have a non-zero generation.