liukun4515 commented on code in PR #2764: URL: https://github.com/apache/arrow-datafusion/pull/2764#discussion_r905644269
########## datafusion/physical-expr/src/expressions/in_list.rs: ########## @@ -300,6 +306,130 @@ fn cast_static_filter_to_set(list: &[Arc<dyn PhysicalExpr>]) -> HashSet<ScalarVa })) } +fn make_list_contains_decimal( + array: &DecimalArray, + list: Vec<ColumnarValue>, + negated: bool, +) -> BooleanArray { + let contains_null = list + .iter() + .any(|v| matches!(v, ColumnarValue::Scalar(s) if s.is_null())); + let values = list + .iter() + .flat_map(|v| match v { + ColumnarValue::Scalar(s) => match s { + Decimal128(v128op, _, _) => v128op.map(|v128| v128), Review Comment: the type of v128op is `&Option`, we just need the Some value. Just like that ``` match v128op { None => None Some(value) => Some(value) } ``` -- 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