yjshen commented on code in PR #2156: URL: https://github.com/apache/arrow-datafusion/pull/2156#discussion_r845769129
########## datafusion/physical-expr/src/expressions/in_list.rs: ########## @@ -32,13 +33,19 @@ use arrow::{ record_batch::RecordBatch, }; -use crate::PhysicalExpr; +use crate::{expressions, PhysicalExpr}; use arrow::array::*; use arrow::buffer::{Buffer, MutableBuffer}; use datafusion_common::ScalarValue; use datafusion_common::{DataFusionError, Result}; use datafusion_expr::ColumnarValue; +/// Size at which to use a Set rather than Vec for `IN` / `NOT IN` +/// Value chosen by the benchmark at +/// https://github.com/apache/arrow-datafusion/pull/2156#discussion_r845198369 +/// TODO: add switch codeGen in In_List Review Comment: Is this line of doc still valid? -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org