jayshrivastava commented on code in PR #22011:
URL: https://github.com/apache/datafusion/pull/22011#discussion_r3184620329


##########
datafusion/proto/src/physical_plan/mod.rs:
##########
@@ -1302,6 +1304,23 @@ impl protobuf::PhysicalPlanNode {
             agg
         };
 
+        let agg = if let Some(dynamic_filter_proto) = &hash_agg.dynamic_filter 
{
+            let dynamic_filter_expr = proto_converter.proto_to_physical_expr(
+                dynamic_filter_proto,
+                physical_schema_ref.as_ref(),
+                ctx,
+            )?;
+            if let Ok(df) = (dynamic_filter_expr as Arc<dyn Any + Send + Sync>)
+                .downcast::<DynamicFilterPhysicalExpr>()
+            {

Review Comment:
   TYFR! Sorry I missed the @ btw. Will make sure to tag you next time 😄 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to