kszucs commented on a change in pull request #7478: URL: https://github.com/apache/arrow/pull/7478#discussion_r446266184
########## File path: cpp/src/arrow/compute/kernels/aggregate_test.cc ########## @@ -399,15 +434,59 @@ class TestNumericMinMaxKernel : public ::testing::Test { }; template <typename ArrowType> -class TestFloatingMinMaxKernel : public TestNumericMinMaxKernel<ArrowType> {}; +class TestBooleanMinMaxKernel : public TestPrimitiveMinMaxKernel<ArrowType> {}; + +template <typename ArrowType> +class TestIntegerMinMaxKernel : public TestPrimitiveMinMaxKernel<ArrowType> {}; + +template <typename ArrowType> +class TestFloatingMinMaxKernel : public TestPrimitiveMinMaxKernel<ArrowType> {}; + +TYPED_TEST_SUITE(TestBooleanMinMaxKernel, BooleanArrowType); Review comment: Right. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org