lidavidm commented on a change in pull request #11640:
URL: https://github.com/apache/arrow/pull/11640#discussion_r744799827
##########
File path: cpp/src/arrow/compute/exec/plan_test.cc
##########
@@ -607,6 +607,42 @@ TEST(ExecPlanExecution, StressSourceOrderBy) {
}
}
+TEST(ExecPlanExecution, StressSourceGroupedSumStop) {
+ auto input_schema = schema({field("a", int32()), field("b", boolean())});
+ for (bool slow : {false, true}) {
+ SCOPED_TRACE(slow ? "slowed" : "unslowed");
+
+ for (bool parallel : {false, true}) {
+ SCOPED_TRACE(parallel ? "parallel" : "single threaded");
+
+ int num_batches = slow && !parallel ? 30 : 300;
Review comment:
Done (also fixed it in other tests)
--
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]