AlenkaF commented on code in PR #40971:
URL: https://github.com/apache/arrow/pull/40971#discussion_r1552013276
##########
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:
Yeah, my thought exactly but got stuck with shared pointers and all that and
I do not think I will get anywhere today :D Maybe tomorrow ...
--
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]