dharanad commented on code in PR #1179: URL: https://github.com/apache/datafusion-comet/pull/1179#discussion_r1901261435
########## native/core/src/execution/planner.rs: ########## @@ -719,6 +720,24 @@ impl PhysicalPlanner { expr.legacy_negative_index, ))) } + ExprStruct::ArrayRemove(expr) => { + let src_array_expr = + self.create_expr(expr.left.as_ref().unwrap(), Arc::clone(&input_schema))?; + let key_expr = + self.create_expr(expr.right.as_ref().unwrap(), Arc::clone(&input_schema))?; + let args = vec![Arc::clone(&src_array_expr), key_expr]; + let return_type = src_array_expr.data_type(&input_schema)?; + + let datafusion_array_remove = array_remove_all_udf(); Review Comment: Nit: This can be inlined -- 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...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org