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 2016/05/20 03:59:54 UTC

incubator-hawq git commit: HAWQ-745. Fix header miss in test library on Redhat.

Repository: incubator-hawq
Updated Branches:
  refs/heads/master 92880fc88 -> 970edfee1


HAWQ-745. Fix header miss in test library on Redhat.


Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/970edfee
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/970edfee
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/970edfee

Branch: refs/heads/master
Commit: 970edfee19ff550fb22e3a115496a7edc9f29d4f
Parents: 92880fc
Author: hzhang2 <zh...@163.com>
Authored: Fri May 20 11:59:24 2016 +0800
Committer: hzhang2 <zh...@163.com>
Committed: Fri May 20 11:59:24 2016 +0800

----------------------------------------------------------------------
 src/test/feature/.gitignore       | 1 +
 src/test/feature/lib/sql-util.h   | 2 ++
 src/test/feature/lib/xml-parser.h | 1 +
 3 files changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/970edfee/src/test/feature/.gitignore
----------------------------------------------------------------------
diff --git a/src/test/feature/.gitignore b/src/test/feature/.gitignore
new file mode 100644
index 0000000..a2e6bd4
--- /dev/null
+++ b/src/test/feature/.gitignore
@@ -0,0 +1 @@
+doc/

http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/970edfee/src/test/feature/lib/sql-util.h
----------------------------------------------------------------------
diff --git a/src/test/feature/lib/sql-util.h b/src/test/feature/lib/sql-util.h
index e9455d7..b5cba5c 100644
--- a/src/test/feature/lib/sql-util.h
+++ b/src/test/feature/lib/sql-util.h
@@ -1,7 +1,9 @@
 #ifndef SRC_TEST_FEATURE_LIB_SQL_UTIL_H_
 #define SRC_TEST_FEATURE_LIB_SQL_UTIL_H_
 
+#include <memory>
 #include <string>
+#include <utility>
 
 #include "gtest/gtest.h"
 #include "psql.h"

http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/970edfee/src/test/feature/lib/xml-parser.h
----------------------------------------------------------------------
diff --git a/src/test/feature/lib/xml-parser.h b/src/test/feature/lib/xml-parser.h
index b2e3497..36a2a63 100644
--- a/src/test/feature/lib/xml-parser.h
+++ b/src/test/feature/lib/xml-parser.h
@@ -2,6 +2,7 @@
 #define SRC_TEST_FEATURE_LIB_XML_PARSER_H_
 
 
+#include <cstring>
 #include <string>
 #include <unordered_map>