mapleFU commented on code in PR #43799:
URL: https://github.com/apache/arrow/pull/43799#discussion_r1736799342
##########
cpp/src/arrow/acero/aggregate_node_test.cc:
##########
@@ -210,5 +210,36 @@ TEST(GroupByNode, NoSkipNulls) {
AssertExecBatchesEqualIgnoringOrder(out_schema, {expected_batch},
out_batches.batches);
}
+TEST(ScalarAggregateNode, AnyAll) {
+ // GH-43768: boolean_any and boolean_all with constant input should work well
+ // when min_count != 0.
+ std::shared_ptr<Schema> in_schema = schema({field("not_used", int32())});
+ std::shared_ptr<Schema> out_schema = schema({field("agg_out", boolean())});
+ std::vector<ExecBatch> batches{
+ ExecBatchFromJSON({int32()}, "[[42], [42], [42], [42]]")};
Review Comment:
It's a bit hard to build test like this since the Literal column would only
built by `Projection` here, but I've tried
Project cannot make "different" literal in this scenerio
--
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]