mingmwang commented on code in PR #3969:
URL: https://github.com/apache/arrow-datafusion/pull/3969#discussion_r1006956914


##########
datafusion/physical-expr/src/expressions/in_list.rs:
##########
@@ -52,16 +54,27 @@ use datafusion_expr::ColumnarValue;
 static OPTIMIZER_INSET_THRESHOLD: usize = 30;
 
 /// InList
-#[derive(Debug)]
 pub struct InListExpr {
     expr: Arc<dyn PhysicalExpr>,
     list: Vec<Arc<dyn PhysicalExpr>>,
     negated: bool,
     set: Option<InSet>,
+    input_schema: Schema,

Review Comment:
   This is because `InListExpr::new()` method need the  schema.



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