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/03/14 02:40:37 UTC

[hawq] branch huor updated (e085e6d -> c9acd20)

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

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


 discard e085e6d  Disable orc compilation until it is available
     new c9acd20  HAWQ-1677. Disable orc compilation until it is available

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e085e6d)
            \
             N -- N -- N   refs/heads/huor (c9acd20)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:


[hawq] 01/01: HAWQ-1677. Disable orc compilation until it is available

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit c9acd2094c1c72bab690eacac4362953c8cc8b54
Author: Ruilong Huo <hu...@163.com>
AuthorDate: Sat Mar 9 18:01:43 2019 +0800

    HAWQ-1677. Disable orc compilation until it is available
---
 configure        | 2 +-
 configure.in     | 2 +-
 contrib/Makefile | 6 +++---
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/configure b/configure
index de64b1b..2a442c4 100755
--- a/configure
+++ b/configure
@@ -5861,7 +5861,7 @@ if test "${with_orc+set}" = set; then :
   esac
 
 else
-  with_orc=yes
+  with_orc=no
 
 fi
 
diff --git a/configure.in b/configure.in
index 7d1825c..10024e4 100644
--- a/configure.in
+++ b/configure.in
@@ -726,7 +726,7 @@ AC_SUBST(with_pgcrypto)
 # Optionally build with orc format in pluggable storage framework.
 #
 AC_MSG_CHECKING([whether to build orc modules])
-PGAC_ARG_BOOL(with, orc, yes, [  --with-orc         build with orc format])
+PGAC_ARG_BOOL(with, orc, no, [  --with-orc         build with orc format])
 AC_MSG_RESULT([$with_orc])
 AC_SUBST(with_orc)
 #
diff --git a/contrib/Makefile b/contrib/Makefile
index a5c87d4..8915506 100644
--- a/contrib/Makefile
+++ b/contrib/Makefile
@@ -16,9 +16,9 @@ ifeq ($(with_pgcrypto), yes)
 WANTED_DIRS += pgcrypto
 endif
 
-ifeq ($(with_orc), yes)
-WANTED_DIRS += orc
-endif
+# ifeq ($(with_orc), yes)
+# WANTED_DIRS += orc
+# endif
 
 # Missing:
 #		start-scripts	\ (does not have a makefile)