This is an automated email from the ASF dual-hosted git repository. huor pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/hawq.git
commit 296aeb6d441d080a5843c65b084ce715f67631db Author: tuyu <[email protected]> AuthorDate: Mon May 13 17:23:04 2019 +0800 HAWQ-1718. Disable agg function unittest in dbcommon --- depends/dbcommon/test/unit/function/test-agg-func-has-no-group-by.cc | 2 +- depends/dbcommon/test/unit/function/test-agg-func-small-scale.cc | 2 +- depends/dbcommon/test/unit/function/test-agg-func.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/depends/dbcommon/test/unit/function/test-agg-func-has-no-group-by.cc b/depends/dbcommon/test/unit/function/test-agg-func-has-no-group-by.cc index f4e5d87..6ecc9e3 100644 --- a/depends/dbcommon/test/unit/function/test-agg-func-has-no-group-by.cc +++ b/depends/dbcommon/test/unit/function/test-agg-func-has-no-group-by.cc @@ -752,7 +752,7 @@ void AggFuncTest::testMinMaxHasNoGroupBy<Timestamp, TIMESTAMPID>( } } } -TEST_F(AggFuncTest, has_no_group_by_MinMax) { +TEST_F(AggFuncTest, DISABLED_has_no_group_by_MinMax) { testMinMaxHasNoGroupBy<int8_t, TINYINTID>(min_int8_smaller, true); testMinMaxHasNoGroupBy<int16_t, SMALLINTID>(min_int16_smaller, true); testMinMaxHasNoGroupBy<int32_t, INTID>(min_int32_smaller, true); diff --git a/depends/dbcommon/test/unit/function/test-agg-func-small-scale.cc b/depends/dbcommon/test/unit/function/test-agg-func-small-scale.cc index 354d256..66825b5 100644 --- a/depends/dbcommon/test/unit/function/test-agg-func-small-scale.cc +++ b/depends/dbcommon/test/unit/function/test-agg-func-small-scale.cc @@ -640,7 +640,7 @@ void AggFuncTest::testMinMaxSmallScale<Timestamp, TIMESTAMPID>( } } } -TEST_F(AggFuncTest, small_scale_MinMax) { +TEST_F(AggFuncTest, DISABLED_small_scale_MinMax) { testMinMaxSmallScale<int8_t, TINYINTID>(min_int8_smaller, true); testMinMaxSmallScale<int16_t, SMALLINTID>(min_int16_smaller, true); testMinMaxSmallScale<int32_t, INTID>(min_int32_smaller, true); diff --git a/depends/dbcommon/test/unit/function/test-agg-func.cc b/depends/dbcommon/test/unit/function/test-agg-func.cc index f4b68bc..20e88e5 100644 --- a/depends/dbcommon/test/unit/function/test-agg-func.cc +++ b/depends/dbcommon/test/unit/function/test-agg-func.cc @@ -682,7 +682,7 @@ void AggFuncTest::testMinMax<Timestamp, TIMESTAMPID>(func_type testFunc, } } } -TEST_F(AggFuncTest, MinMax) { +TEST_F(AggFuncTest, DISABLED_MinMax) { testMinMax<int8_t, TINYINTID>(min_int8_smaller, true); testMinMax<int16_t, SMALLINTID>(min_int16_smaller, true); testMinMax<int32_t, INTID>(min_int32_smaller, true);
