You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by hu...@apache.org on 2019/05/13 11:43:15 UTC

[hawq] branch master updated (39cfe43 -> c7e03d4)

This is an automated email from the ASF dual-hosted git repository.

huor pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hawq.git.


    from 39cfe43  HAWQ-1717. Fix incorrect seeding for random function
     new fa3d1b0  HAWQ-1719. Reopen unittest in hawq
     new 296aeb6  HAWQ-1718. Disable agg function unittest in dbcommon
     new c7e03d4  HAWQ-1713. Disable TestMbConverter.Canonical in hawq

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 GNUmakefile.in                                                      | 6 +++---
 .../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 +-
 depends/dbcommon/test/unit/utils/test-mb-converter.cc               | 2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)


[hawq] 01/03: HAWQ-1719. Reopen unittest in hawq

Posted by hu...@apache.org.
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 fa3d1b0eae89a30a499c573f5192f7a54985ef2c
Author: tuyu <tu...@oushu.io>
AuthorDate: Mon May 13 17:25:10 2019 +0800

    HAWQ-1719. Reopen unittest in hawq
---
 GNUmakefile.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/GNUmakefile.in b/GNUmakefile.in
index f4ecf65..cbe1f25 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -17,13 +17,13 @@ all:
 	$(MAKE) -C depends/libyarn $@
 	$(MAKE) -C depends/libyarn install
 	$(MAKE) -C depends/dbcommon $@
-	# $(MAKE) -C depends/dbcommon unittest
+	$(MAKE) -C depends/dbcommon unittest
 	$(MAKE) -C depends/dbcommon install
 	$(MAKE) -C depends/univplan $@
-	# $(MAKE) -C depends/univplan unittest
+	$(MAKE) -C depends/univplan unittest
 	$(MAKE) -C depends/univplan install
 	$(MAKE) -C depends/storage $@
-	# $(MAKE) -C depends/storage unittest
+	$(MAKE) -C depends/storage unittest
 	$(MAKE) -C depends/storage install
 	$(MAKE) -C src $@
 	$(MAKE) -C config $@


[hawq] 02/03: HAWQ-1718. Disable agg function unittest in dbcommon

Posted by hu...@apache.org.
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 <tu...@oushu.io>
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);


[hawq] 03/03: HAWQ-1713. Disable TestMbConverter.Canonical in hawq

Posted by hu...@apache.org.
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 c7e03d4081c4def78cce81dcaf3e255932635598
Author: tuyu <tu...@oushu.io>
AuthorDate: Mon May 13 17:13:44 2019 +0800

    HAWQ-1713. Disable TestMbConverter.Canonical in hawq
---
 depends/dbcommon/test/unit/utils/test-mb-converter.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/depends/dbcommon/test/unit/utils/test-mb-converter.cc b/depends/dbcommon/test/unit/utils/test-mb-converter.cc
index 944f20b..ef585d1 100644
--- a/depends/dbcommon/test/unit/utils/test-mb-converter.cc
+++ b/depends/dbcommon/test/unit/utils/test-mb-converter.cc
@@ -42,7 +42,7 @@ TEST(TestMbConverter, Basic) {
   EXPECT_EQ(utf8Str, res);
 }
 
-TEST(TestMbConverter, Canonical) {
+TEST(TestMbConverter, DISABLED_Canonical) {
   EXPECT_EQ("UTF-8", MbConverter::canonicalizeEncodingName("utf8"));
   EXPECT_EQ("UTF-8", MbConverter::canonicalizeEncodingName("UTF-8"));
   EXPECT_EQ("UTF-8", MbConverter::canonicalizeEncodingName("UTF8"));