Repository: incubator-hawq Updated Branches: refs/heads/master b2df66b4c -> 691804044
HAWQ-962. Make catalog:type_sanity be able to run with other cases in parallel Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/69180404 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/69180404 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/69180404 Branch: refs/heads/master Commit: 6918040445efeef64d16eddf4a52d4f4187cfed2 Parents: b2df66b Author: Paul Guo <[email protected]> Authored: Thu Jul 28 13:33:38 2016 +0800 Committer: ivan <[email protected]> Committed: Fri Jul 29 09:45:14 2016 +0800 ---------------------------------------------------------------------- src/test/feature/catalog/test_type.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/69180404/src/test/feature/catalog/test_type.cpp ---------------------------------------------------------------------- diff --git a/src/test/feature/catalog/test_type.cpp b/src/test/feature/catalog/test_type.cpp index f8bed88..6706bec 100644 --- a/src/test/feature/catalog/test_type.cpp +++ b/src/test/feature/catalog/test_type.cpp @@ -50,6 +50,11 @@ TEST_F_FILE_TYPE(text) TEST_F_FILE_TYPE(time) -TEST_F_FILE_TYPE(type_sanity) +TEST_F(TestType, type_sanity) +{ + hawq::test::SQLUtility util(hawq::test::MODE_DATABASE); + util.execSQLFile("catalog/sql/type_sanity.sql", + "catalog/ans/type_sanity.ans"); +} TEST_F_FILE_TYPE(varchar)
