AlenkaF commented on code in PR #40971:
URL: https://github.com/apache/arrow/pull/40971#discussion_r1560978034


##########
cpp/src/arrow/compute/kernels/vector_selection_filter_internal.cc:
##########
@@ -924,6 +924,10 @@ Result<std::shared_ptr<RecordBatch>> 
FilterRecordBatch(const RecordBatch& batch,
     return Status::Invalid("Filter inputs must all be the same length");
   }
 
+  if (filter.is_chunked_array()) {
+    return Status::Invalid("Chunked filter not supported for RecordBatches.");
+  }

Review Comment:
   My attempt: 
https://github.com/apache/arrow/pull/40971/commits/b4c730f026e0e4d534da099a7b53a242e9f93717



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