lidavidm commented on a change in pull request #12275: URL: https://github.com/apache/arrow/pull/12275#discussion_r796686678
########## File path: cpp/src/arrow/compute/exec/plan_test.cc ########## @@ -488,6 +488,39 @@ TEST(ExecPlanExecution, SourceConsumingSink) { } } +TEST(ExecPlanExecution, SourceTableConsumingSink) { + for (bool slow : {false, true}) { + SCOPED_TRACE(slow ? "slowed" : "unslowed"); + + for (bool parallel : {false, true}) { + SCOPED_TRACE(parallel ? "parallel" : "single threaded"); + ASSERT_OK_AND_ASSIGN(auto plan, ExecPlan::Make()); + + Future<> finish = Future<>::Make(); Review comment: This is unused. -- 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...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org