advancedxy commented on code in PR #184:
URL: 
https://github.com/apache/arrow-datafusion-comet/pull/184#discussion_r1520753574


##########
core/src/execution/datafusion/planner.rs:
##########
@@ -496,7 +493,16 @@ impl PhysicalPlanner {
                     .iter()
                     .map(|x| self.create_expr(x, 
input_schema.clone()).unwrap())
                     .collect::<Vec<_>>();
-                Ok(Arc::new(InListExpr::new(value, list, expr.negated, None)))
+                // in_list doesn't handle value being dictionary type 
correctly, so we need to fall
+                // back to InListExpr if in_list fails.
+                // TODO: remove the fallback when 
https://github.com/apache/arrow-datafusion/issues/9530 is fixed

Review Comment:
   Addressed.



-- 
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]

Reply via email to