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/04/09 07:24:12 UTC

[hawq] branch huor updated (08b9dc2 -> b75e966)

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 08b9dc2  Build apache hawq on mac osx 10.14 platform
     add 39d8eb5  HAWQ-1690. Add common utility used by ORC foramt
     add 9701636  HAWQ-1691. Add universal plan used by ORC format
     add 46cd31b  HAWQ-1692. Add the ORC format implementation
     add c8d6571  apache hawq make dbcommon univplan storage
     new b75e966  Build apache hawq on mac osx 10.14 platform

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   (08b9dc2)
            \
             N -- N -- N   refs/heads/huor (b75e966)

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:
 GNUmakefile.in                                     |   12 +
 configure                                          |  108 +-
 configure.in                                       |   28 +-
 depends/dbcommon/.gitignore                        |    8 +
 .../dbcommon/CMake/CMakeTestCompileInt64tType.cc   |   30 +
 depends/dbcommon/CMake/FindCogapp.cmake            |   54 +
 depends/dbcommon/CMake/FindGFlags.cmake            |   48 +
 depends/dbcommon/CMake/FindGlog.cmake              |   49 +
 depends/dbcommon/CMake/FindJSON.cmake              |   38 +
 depends/dbcommon/CMake/FindSnappy.cmake            |   30 +
 .../{libyarn => dbcommon}/CMake/Functions.cmake    |    0
 depends/dbcommon/CMake/Options.cmake               |   74 +
 depends/dbcommon/CMake/Platform.cmake              |   47 +
 depends/dbcommon/CMakeLists.txt                    |   31 +
 depends/dbcommon/Makefile                          |   76 +
 depends/dbcommon/Makefile.global                   |   40 +
 depends/dbcommon/Makefile.global.in                |   40 +
 depends/dbcommon/README                            |   14 +
 depends/dbcommon/bootstrap                         |  141 +
 depends/dbcommon/src/CMakeLists.txt                |  155 ++
 .../src/dbcommon/checksum/checksum-util.cc         |   42 +
 .../dbcommon/src/dbcommon/checksum/checksum-util.h |   55 +
 depends/dbcommon/src/dbcommon/checksum/checksum.h  |   61 +
 .../dbcommon/src/dbcommon/checksum/hw-crc32c.cc    |  160 ++
 depends/dbcommon/src/dbcommon/checksum/hw-crc32c.h |   69 +
 .../dbcommon/src/dbcommon/checksum/sw-crc32c.cc    |   94 +
 depends/dbcommon/src/dbcommon/checksum/sw-crc32c.h |   45 +
 .../src/dbcommon/common/node-deserializer.cc       |   33 +
 .../src/dbcommon/common/node-deserializer.h        |   75 +
 .../dbcommon/src/dbcommon/common/node-serializer.h |   51 +
 .../src/dbcommon/common/tuple-batch-store.cc       |  108 +
 .../src/dbcommon/common/tuple-batch-store.h        |   82 +
 .../dbcommon/src/dbcommon/common/tuple-batch.cc    |  860 ++++++
 depends/dbcommon/src/dbcommon/common/tuple-batch.h |  329 +++
 depends/dbcommon/src/dbcommon/common/tuple-desc.cc |  121 +
 depends/dbcommon/src/dbcommon/common/tuple-desc.h  |   70 +
 .../src/dbcommon/common/vector-transformer.h       |  311 +++
 depends/dbcommon/src/dbcommon/common/vector.cc     |  260 ++
 depends/dbcommon/src/dbcommon/common/vector.h      |  763 ++++++
 .../src/dbcommon/common/vector/decimal-vector.cc   |  620 +++++
 .../src/dbcommon/common/vector/decimal-vector.h    |  215 ++
 .../dbcommon/common/vector/fixed-length-vector.h   |  702 +++++
 .../src/dbcommon/common/vector/interval-vector.cc  |  553 ++++
 .../src/dbcommon/common/vector/interval-vector.h   |  166 ++
 .../src/dbcommon/common/vector/list-vector.h       |  621 +++++
 .../src/dbcommon/common/vector/struct-vector.h     |  228 ++
 .../src/dbcommon/common/vector/timestamp-vector.h  |  698 +++++
 .../common/vector/variable-length-vector.cc        |   83 +
 .../common/vector/variable-length-vector.h         | 1173 ++++++++
 .../src/dbcommon/filesystem/file-system-manager.cc |  112 +
 .../src/dbcommon/filesystem/file-system-manager.h  |   72 +
 .../dbcommon/src/dbcommon/filesystem/file-system.h |  226 ++
 .../dbcommon/filesystem/hdfs/hdfs-file-system.cc   |  279 ++
 .../dbcommon/filesystem/hdfs/hdfs-file-system.h    |  160 ++
 .../src/dbcommon/filesystem/hive/fb303.thrift      |  113 +
 .../dbcommon/filesystem/hive/hive-file-system.cc   |   58 +
 .../dbcommon/filesystem/hive/hive-file-system.h    |   36 +
 .../dbcommon/filesystem/hive/hive_metastore.thrift | 1538 +++++++++++
 .../dbcommon/filesystem/local/local-file-system.cc |  499 ++++
 .../dbcommon/filesystem/local/local-file-system.h  |  191 ++
 depends/dbcommon/src/dbcommon/function/CPPLINT.cfg |    1 +
 depends/dbcommon/src/dbcommon/function/README      |    2 +
 depends/dbcommon/src/dbcommon/function/agg-func.cc | 2366 ++++++++++++++++
 depends/dbcommon/src/dbcommon/function/agg-func.h  |  323 +++
 .../src/dbcommon/function/arith-cmp-func.h         |  133 +
 .../dbcommon/src/dbcommon/function/arith-func.cc   |   86 +
 .../src/dbcommon/function/arithmetic-function.h    |  351 +++
 .../src/dbcommon/function/array-function.cc        | 1021 +++++++
 .../src/dbcommon/function/array-function.h         |   48 +
 .../src/dbcommon/function/binary-function.cc       |  299 ++
 depends/dbcommon/src/dbcommon/function/cmp-func.cc |  537 ++++
 .../src/dbcommon/function/comparison-function.h    |  170 ++
 .../src/dbcommon/function/date-function.cc         | 1292 +++++++++
 .../dbcommon/src/dbcommon/function/date-function.h |  104 +
 .../src/dbcommon/function/decimal-function.cc      |  952 +++++++
 .../src/dbcommon/function/decimal-function.h       |  110 +
 depends/dbcommon/src/dbcommon/function/func-kind.h |  355 +++
 depends/dbcommon/src/dbcommon/function/func.cc     |  584 ++++
 depends/dbcommon/src/dbcommon/function/func.h      |   91 +
 depends/dbcommon/src/dbcommon/function/function.h  |  719 +++++
 depends/dbcommon/src/dbcommon/function/invoker.cc  |   48 +
 depends/dbcommon/src/dbcommon/function/invoker.h   |   65 +
 .../src/dbcommon/function/mathematical-function.cc |  306 +++
 .../src/dbcommon/function/mathematical-function.h  |  543 ++++
 .../src/dbcommon/function/string-binary-function.h |   67 +
 .../src/dbcommon/function/string-function.cc       |  969 +++++++
 .../src/dbcommon/function/typecast-func.cc         |  662 +++++
 .../dbcommon/src/dbcommon/function/typecast-func.h |   87 +
 .../src/dbcommon/function/typecast-function.cc     |  229 ++
 .../src/dbcommon/function/typecast-function.h      |   40 +
 .../dbcommon/function/typecast-texttonum-func.cc   |  240 ++
 .../dbcommon/function/typecast-texttonum-func.h    |   37 +
 .../src/dbcommon/function/volatile-func.cc         |   56 +
 .../dbcommon/src/dbcommon/function/volatile-func.h |   30 +
 depends/dbcommon/src/dbcommon/hash/cdb-hash.h      |   95 +
 depends/dbcommon/src/dbcommon/hash/fast-hash.h     |  267 ++
 depends/dbcommon/src/dbcommon/hash/hash-keys.cc    |   62 +
 depends/dbcommon/src/dbcommon/hash/hash-keys.h     |  357 +++
 .../src/dbcommon/hash/native-hash-table.cc         |   97 +
 .../dbcommon/src/dbcommon/hash/native-hash-table.h |  472 ++++
 .../src/dbcommon/hash/tuple-batch-hasher.h         |  168 ++
 depends/dbcommon/src/dbcommon/log/debug-logger.cc  |   83 +
 depends/dbcommon/src/dbcommon/log/debug-logger.h   |  120 +
 depends/dbcommon/src/dbcommon/log/error-code.h     |  444 +++
 depends/dbcommon/src/dbcommon/log/exception.h      |   54 +
 depends/dbcommon/src/dbcommon/log/logger.cc        |   47 +
 depends/dbcommon/src/dbcommon/log/logger.h         |  154 ++
 depends/dbcommon/src/dbcommon/log/stack-printer.cc |  663 +++++
 depends/dbcommon/src/dbcommon/log/stack-printer.h  |   35 +
 .../dbcommon/network/socket-tcp-message-client.cc  |  124 +
 .../dbcommon/network/socket-tcp-message-client.h   |   45 +
 .../dbcommon/network/socket-tcp-message-common.cc  |  307 +++
 .../dbcommon/network/socket-tcp-message-common.h   |  197 ++
 .../dbcommon/network/socket-tcp-message-server.cc  |  193 ++
 .../dbcommon/network/socket-tcp-message-server.h   |   90 +
 .../network/socket-tcp-message-serverhandler.h     |   58 +
 .../dbcommon/src/dbcommon/network/socket-tcp.cc    |  103 +
 depends/dbcommon/src/dbcommon/network/socket-tcp.h |   35 +
 depends/dbcommon/src/dbcommon/nodes/datum.cc       |   65 +
 depends/dbcommon/src/dbcommon/nodes/datum.h        |  483 ++++
 depends/dbcommon/src/dbcommon/nodes/scalar.cc      |   46 +
 depends/dbcommon/src/dbcommon/nodes/scalar.h       |   88 +
 depends/dbcommon/src/dbcommon/nodes/select-list.cc |  175 ++
 depends/dbcommon/src/dbcommon/nodes/select-list.h  |  170 ++
 .../dbcommon/src/dbcommon/python/code_generator.py |  225 ++
 .../src/dbcommon/testutil/agg-func-utils.h         |  271 ++
 .../src/dbcommon/testutil/function-utils.cc        |  480 ++++
 .../src/dbcommon/testutil/function-utils.h         |  225 ++
 .../dbcommon/src/dbcommon/testutil/scalar-utils.h  |   62 +
 .../src/dbcommon/testutil/tuple-batch-utils.h      |  301 ++
 .../dbcommon/src/dbcommon/testutil/vector-utils.h  |  335 +++
 .../src/dbcommon/thread/err-detect-callback.h      |  133 +
 .../dbcommon/src/dbcommon/thread/thread-base.cc    |   36 +
 depends/dbcommon/src/dbcommon/thread/thread-base.h |  172 ++
 depends/dbcommon/src/dbcommon/type/CPPLINT.cfg     |    1 +
 depends/dbcommon/src/dbcommon/type/README          |    2 +
 depends/dbcommon/src/dbcommon/type/array.cc        |  198 ++
 depends/dbcommon/src/dbcommon/type/array.h         |  132 +
 depends/dbcommon/src/dbcommon/type/bool.cc         |   62 +
 depends/dbcommon/src/dbcommon/type/bool.h          |   63 +
 depends/dbcommon/src/dbcommon/type/date.cc         |  420 +++
 depends/dbcommon/src/dbcommon/type/date.h          |  909 +++++++
 depends/dbcommon/src/dbcommon/type/decimal.cc      |  665 +++++
 depends/dbcommon/src/dbcommon/type/decimal.h       |  638 +++++
 depends/dbcommon/src/dbcommon/type/float.h         |  137 +
 depends/dbcommon/src/dbcommon/type/integer.h       |  143 +
 depends/dbcommon/src/dbcommon/type/interval.h      |  261 ++
 depends/dbcommon/src/dbcommon/type/magma-tid.h     |  105 +
 depends/dbcommon/src/dbcommon/type/type-kind.h     |  118 +
 depends/dbcommon/src/dbcommon/type/type-modifier.h |   66 +
 depends/dbcommon/src/dbcommon/type/type-util.cc    |  225 ++
 depends/dbcommon/src/dbcommon/type/type-util.h     |  137 +
 depends/dbcommon/src/dbcommon/type/typebase.cc     |  178 ++
 depends/dbcommon/src/dbcommon/type/typebase.h      |  280 ++
 depends/dbcommon/src/dbcommon/type/varlen.cc       |  182 ++
 depends/dbcommon/src/dbcommon/type/varlen.h        |  150 +
 depends/dbcommon/src/dbcommon/utils/async-queue.h  |  340 +++
 .../src/dbcommon/utils/block-memory-buffer.h       |  176 ++
 depends/dbcommon/src/dbcommon/utils/bool-buffer.cc |  351 +++
 depends/dbcommon/src/dbcommon/utils/bool-buffer.h  |  225 ++
 depends/dbcommon/src/dbcommon/utils/byte-buffer.h  |  265 ++
 .../dbcommon/src/dbcommon/utils/comp/compressor.h  |   64 +
 .../src/dbcommon/utils/comp/lz4-compressor.cc      |   94 +
 .../src/dbcommon/utils/comp/lz4-compressor.h       |   51 +
 .../src/dbcommon/utils/comp/snappy-compressor.cc   |   28 +
 .../src/dbcommon/utils/comp/snappy-compressor.h    |   90 +
 .../src/dbcommon/utils/comp/zlib-compressor.cc     |   81 +
 .../src/dbcommon/utils/comp/zlib-compressor.h      |   57 +
 depends/dbcommon/src/dbcommon/utils/cutils.cc      |   71 +
 depends/dbcommon/src/dbcommon/utils/cutils.h       |   63 +
 depends/dbcommon/src/dbcommon/utils/file-info.h    |   41 +
 .../src/dbcommon/utils/flat-memory-buffer.h        |  207 ++
 depends/dbcommon/src/dbcommon/utils/global.cc      |   23 +
 depends/dbcommon/src/dbcommon/utils/global.h       |   29 +
 depends/dbcommon/src/dbcommon/utils/instrument.cc  |   80 +
 depends/dbcommon/src/dbcommon/utils/instrument.h   |   66 +
 depends/dbcommon/src/dbcommon/utils/int-util.h     |  357 +++
 .../src/dbcommon/utils/join-tuple-buffer.cc        |  488 ++++
 .../src/dbcommon/utils/join-tuple-buffer.h         |  130 +
 depends/dbcommon/src/dbcommon/utils/lock.cc        |  220 ++
 depends/dbcommon/src/dbcommon/utils/lock.h         |  116 +
 depends/dbcommon/src/dbcommon/utils/macro.h        |   44 +
 .../dbcommon/src/dbcommon/utils/mb/mb-converter.cc |  246 ++
 .../dbcommon/src/dbcommon/utils/mb/mb-converter.h  |  116 +
 depends/dbcommon/src/dbcommon/utils/memory-pool.cc |   28 +
 depends/dbcommon/src/dbcommon/utils/memory-pool.h  |  208 ++
 depends/dbcommon/src/dbcommon/utils/net-client.h   |   46 +
 .../dbcommon/src/dbcommon/utils/object-counter.cc  |   35 +
 .../dbcommon/src/dbcommon/utils/object-counter.h   |   54 +
 depends/dbcommon/src/dbcommon/utils/parameters.h   |  130 +
 depends/dbcommon/src/dbcommon/utils/string-util.cc |  231 ++
 depends/dbcommon/src/dbcommon/utils/string-util.h  |  277 ++
 depends/dbcommon/src/dbcommon/utils/sys-info.h     |   51 +
 depends/dbcommon/src/dbcommon/utils/time-util.h    |   62 +
 .../dbcommon/src/dbcommon/utils/timezone-util.cc   |  458 ++++
 .../dbcommon/src/dbcommon/utils/timezone-util.h    |  527 ++++
 depends/dbcommon/src/dbcommon/utils/url.cc         |  125 +
 depends/dbcommon/src/dbcommon/utils/url.h          |   89 +
 depends/dbcommon/test/CMakeLists.txt               |   34 +
 .../{libyarn => dbcommon}/test/data/checksum1.in   |    0
 .../{libyarn => dbcommon}/test/data/checksum2.in   |    0
 .../dbcommon/test/parallel/parallel-launcher.py    |  153 ++
 depends/dbcommon/test/unit/CMakeLists.txt          |   30 +
 .../dbcommon/test/unit/checksum/test-checksum.cc   |  134 +
 .../dbcommon/test/unit/common/test-async-queue.cc  |   82 +
 depends/dbcommon/test/unit/common/test-function.cc |   54 +
 .../unit/common/test-tuple-batch-copy-control.cc   |   69 +
 .../test/unit/common/test-tuple-batch-store.cc     |   55 +
 .../dbcommon/test/unit/common/test-tuple-batch.cc  |  684 +++++
 .../test/unit/common/test-vector-copy-control.cc   |  624 +++++
 depends/dbcommon/test/unit/common/test-vector.cc   |  731 +++++
 .../test/unit/filesystem/test-file-system.cc       |   93 +
 depends/dbcommon/test/unit/function/CPPLINT.cfg    |    1 +
 .../unit/function/test-agg-func-has-no-group-by.cc |  876 ++++++
 .../unit/function/test-agg-func-small-scale.cc     |  704 +++++
 .../dbcommon/test/unit/function/test-agg-func.cc   |  749 +++++
 .../dbcommon/test/unit/function/test-array-func.cc |  377 +++
 .../test/unit/function/test-binary-cmp-function.cc |  429 +++
 .../test/unit/function/test-binary-function.cc     |   41 +
 .../unit/function/test-codegen-arith-functions.cc  |  617 +++++
 .../unit/function/test-codegen-cmp-functions.cc    |  413 +++
 .../function/test-codegen-typecast-functions.cc    |  261 ++
 .../test/unit/function/test-date-function.cc       |  449 +++
 .../test/unit/function/test-decimal-function.cc    |  420 +++
 .../unit/function/test-mathematical-function.cc    | 1039 +++++++
 .../test/unit/function/test-string-cmp-function.cc |  427 +++
 .../test/unit/function/test-string-function.cc     | 1579 +++++++++++
 .../test/unit/function/test-timestamp-function.cc  |  543 ++++
 .../test/unit/function/test-typecast-function.cc   |  295 ++
 .../unit/function/test-typecast-texttonum-func.cc  |  107 +
 .../dbcommon/test/unit/log/test-debug-logger.cc    |   41 +
 .../unit/network/test-socket-tcp-message-comm.cc   |  105 +
 depends/dbcommon/test/unit/nodes/test-datum.cc     |  195 ++
 .../dbcommon/test/unit/nodes/test-select-list.cc   |  168 ++
 depends/dbcommon/test/unit/test-hash-table.cc      |  231 ++
 .../test/unit/thread/test-err-detect-callback.cc   |  120 +
 depends/dbcommon/test/unit/type/test-type.cc       |  454 ++++
 depends/dbcommon/test/unit/unit-test-main.cc       |   34 +
 .../dbcommon/test/unit/utils/test-bool-buffer.cc   |  272 ++
 .../dbcommon/test/unit/utils/test-byte-buffer.cc   |   89 +
 depends/dbcommon/test/unit/utils/test-cutils.cc    |   50 +
 depends/dbcommon/test/unit/utils/test-int-util.cc  |   88 +
 .../test/unit/utils/test-join-tuple-buffer.cc      |  236 ++
 depends/dbcommon/test/unit/utils/test-lock.cc      |  180 ++
 .../dbcommon/test/unit/utils/test-lz4-compress.cc  |   57 +
 .../dbcommon/test/unit/utils/test-mb-converter.cc  |   49 +
 .../dbcommon/test/unit/utils/test-string-util.cc   |   41 +
 depends/dbcommon/test/unit/utils/test-url.cc       |  112 +
 depends/storage/.gitignore                         |    8 +
 .../storage/CMake/CMakeTestCompileInt64tType.cc    |   30 +
 depends/storage/CMake/FindCogapp.cmake             |   50 +
 depends/storage/CMake/FindGFlags.cmake             |   48 +
 depends/storage/CMake/FindGlog.cmake               |   49 +
 depends/storage/CMake/FindJSON.cmake               |   38 +
 depends/storage/CMake/FindSnappy.cmake             |   30 +
 depends/storage/CMake/FindZLIB.cmake               |   48 +
 depends/{libyarn => storage}/CMake/Functions.cmake |    0
 depends/storage/CMake/Options.cmake                |   74 +
 depends/storage/CMake/Platform.cmake               |   47 +
 depends/storage/CMakeLists.txt                     |   31 +
 depends/storage/Makefile                           |   76 +
 depends/storage/Makefile.global                    |   40 +
 depends/storage/Makefile.global.in                 |   40 +
 depends/storage/README                             |   15 +
 depends/storage/bootstrap                          |  141 +
 depends/storage/src/CMakeLists.txt                 |   89 +
 .../dummy.py => depends/storage/src/storage/README |    0
 depends/storage/src/storage/common/bloom-filter.h  |  189 ++
 depends/storage/src/storage/common/string.h        |   95 +
 .../src/storage/cwrapper/hdfs-file-system-c.cc     |  486 ++++
 .../src/storage/cwrapper/hdfs-file-system-c.h      |  126 +
 .../storage/src/storage/cwrapper/orc-format-c.cc   |  638 +++++
 .../storage/src/storage/cwrapper/orc-format-c.h    |   81 +
 depends/storage/src/storage/format/format.cc       |   94 +
 depends/storage/src/storage/format/format.h        |  223 ++
 depends/storage/src/storage/format/orc/README      |  320 +++
 depends/storage/src/storage/format/orc/byte-rle.cc |  476 ++++
 depends/storage/src/storage/format/orc/byte-rle.h  |  237 ++
 .../src/storage/format/orc/column-printer.cc       |  613 +++++
 .../src/storage/format/orc/column-printer.h        |  280 ++
 .../storage/src/storage/format/orc/data-buffer.cc  |   67 +
 .../storage/src/storage/format/orc/data-buffer.h   |   62 +
 .../storage/src/storage/format/orc/exceptions.cc   |   58 +
 .../storage/src/storage/format/orc/exceptions.h    |   51 +
 .../storage/src/storage/format/orc/file-version.h  |   56 +
 .../storage/src/storage/format/orc/input-stream.cc |   40 +
 .../storage/src/storage/format/orc/input-stream.h  |  112 +
 depends/storage/src/storage/format/orc/int128.cc   |  480 ++++
 depends/storage/src/storage/format/orc/int128.h    |  304 +++
 .../src/storage/format/orc/lzo-decompressor.cc     |  396 +++
 .../src/storage/format/orc/lzo-decompressor.h      |   35 +
 .../src/storage/format/orc/orc-format-reader.cc    |  278 ++
 .../src/storage/format/orc/orc-format-reader.h     |   77 +
 .../src/storage/format/orc/orc-format-writer.cc    |  208 ++
 .../src/storage/format/orc/orc-format-writer.h     |   64 +
 .../storage/src/storage/format/orc/orc-format.cc   |  129 +
 .../storage/src/storage/format/orc/orc-format.h    |  113 +
 .../src/storage/format/orc/orc-predicates.cc       |  281 ++
 .../src/storage/format/orc/orc-predicates.h        |   71 +
 .../src/storage/format/orc/orc-proto-definition.cc |  221 ++
 .../src/storage/format/orc/orc-proto-definition.h  | 1131 ++++++++
 .../storage/src/storage/format/orc/orc_proto.proto |  277 ++
 .../src/storage/format/orc/output-stream.cc        |   33 +
 .../storage/src/storage/format/orc/output-stream.h |  135 +
 depends/storage/src/storage/format/orc/reader.cc   | 2424 +++++++++++++++++
 depends/storage/src/storage/format/orc/reader.h    | 1071 ++++++++
 depends/storage/src/storage/format/orc/rle-v0.h    |  137 +
 depends/storage/src/storage/format/orc/rle-v1.h    |  371 +++
 depends/storage/src/storage/format/orc/rle-v2.h    | 1768 ++++++++++++
 depends/storage/src/storage/format/orc/rle.cc      |  139 +
 depends/storage/src/storage/format/orc/rle.h       |  596 ++++
 .../storage/format/orc/seekable-input-stream.cc    |  624 +++++
 .../src/storage/format/orc/seekable-input-stream.h |  378 +++
 .../storage/format/orc/seekable-output-stream.cc   |   46 +
 .../storage/format/orc/seekable-output-stream.h    |  261 ++
 .../src/storage/format/orc/string-dictionary.cc    |   60 +
 .../src/storage/format/orc/string-dictionary.h     |   62 +
 depends/storage/src/storage/format/orc/timezone.cc |  458 ++++
 depends/storage/src/storage/format/orc/timezone.h  |  502 ++++
 .../storage/src/storage/format/orc/type-impl.cc    |  507 ++++
 depends/storage/src/storage/format/orc/type-impl.h |  109 +
 depends/storage/src/storage/format/orc/type.h      |  105 +
 depends/storage/src/storage/format/orc/vector.cc   |  453 ++++
 depends/storage/src/storage/format/orc/vector.h    |  704 +++++
 depends/storage/src/storage/format/orc/writer.cc   |  288 ++
 depends/storage/src/storage/format/orc/writer.h    | 1516 +++++++++++
 .../format/orc/writer/binary-column-writer.cc      |  101 +
 .../format/orc/writer/decimal-column-writer.cc     |  295 ++
 .../format/orc/writer/string-column-writer.cc      |  232 ++
 depends/storage/src/storage/testutil/file-utils.h  |   54 +
 depends/storage/src/storage/testutil/format-util.h |  288 ++
 depends/storage/test/CMakeLists.txt                |   32 +
 depends/storage/test/data/hawq-write-orc.sql       |    3 +
 .../storage/test/data/sampledata                   |    0
 depends/storage/test/data/spark-read-orc.sql       |    3 +
 depends/storage/test/parallel/parallel-launcher.py |  153 ++
 depends/storage/test/unit/CMakeLists.txt           |   23 +
 .../storage/test/unit/common/test-bloom-filter.cc  |  118 +
 .../test/unit/format/test-filter-pushdown.cc       |  613 +++++
 .../test/unit/format/test-orc-byte-rle-encoder.cc  |  165 ++
 .../storage/test/unit/format/test-orc-byte-rle.cc  | 1445 ++++++++++
 .../storage/test/unit/format/test-orc-format.cc    |  529 ++++
 .../storage/test/unit/format/test-orc-int128.cc    |  620 +++++
 .../test/unit/format/test-orc-proto-definition.cc  |  351 +++
 depends/storage/test/unit/format/test-orc-rle.cc   | 2863 ++++++++++++++++++++
 .../storage/test/unit/format/test-orc-vector.cc    |  194 ++
 .../test/unit/format/test-string-dictionary.cc     |   74 +
 depends/storage/test/unit/unit-test-main.cc        |   32 +
 depends/univplan/.gitignore                        |    8 +
 .../univplan/CMake/CMakeTestCompileInt64tType.cc   |   30 +
 depends/univplan/CMake/FindCogapp.cmake            |   50 +
 depends/univplan/CMake/FindGFlags.cmake            |   48 +
 depends/univplan/CMake/FindGlog.cmake              |   49 +
 depends/univplan/CMake/FindJSON.cmake              |   38 +
 depends/univplan/CMake/FindSnappy.cmake            |   30 +
 .../{libyarn => univplan}/CMake/Functions.cmake    |    0
 depends/univplan/CMake/Options.cmake               |   74 +
 depends/univplan/CMake/Platform.cmake              |   47 +
 depends/univplan/CMakeLists.txt                    |   31 +
 depends/univplan/Makefile                          |   76 +
 depends/univplan/Makefile.global                   |   40 +
 depends/univplan/Makefile.global.in                |   40 +
 .../test/dummy.py => depends/univplan/README       |    0
 depends/univplan/bootstrap                         |  141 +
 depends/univplan/src/CMakeLists.txt                |   78 +
 depends/univplan/src/univplan/common/expression.cc |  742 +++++
 depends/univplan/src/univplan/common/expression.h  |  350 +++
 .../univplan/src/univplan/common/plannode-util.h   |  336 +++
 .../univplan/src/univplan/common/plannode-walker.h |  138 +
 depends/univplan/src/univplan/common/stagize.cc    |  212 ++
 depends/univplan/src/univplan/common/stagize.h     |   54 +
 depends/univplan/src/univplan/common/statistics.h  |   71 +
 .../univplan/src/univplan/common/subplan-util.cc   |  151 ++
 .../univplan/src/univplan/common/subplan-util.h    |   46 +
 .../univplan/src/univplan/common/univplan-type.h   |  145 +
 depends/univplan/src/univplan/common/var-util.cc   |  111 +
 depends/univplan/src/univplan/common/var-util.h    |   40 +
 .../univplan/src/univplan/cwrapper/univplan-c.cc   | 1172 ++++++++
 .../univplan/src/univplan/cwrapper/univplan-c.h    |  352 +++
 .../src/univplan/minmax/minmax-predicates.cc       |  596 ++++
 .../src/univplan/minmax/minmax-predicates.h        |  604 +++++
 .../univplan/proto/universal-plan-catalog.proto    |   62 +
 .../src/univplan/proto/universal-plan-expr.proto   |  216 ++
 .../src/univplan/proto/universal-plan.proto        |  415 +++
 .../src/univplan/testutil/univplan-proto-util.cc   |  519 ++++
 .../src/univplan/testutil/univplan-proto-util.h    |  276 ++
 .../univplanbuilder/univplanbuilder-agg.cc         |   57 +
 .../univplan/univplanbuilder/univplanbuilder-agg.h |   51 +
 .../univplanbuilder/univplanbuilder-append.cc      |   53 +
 .../univplanbuilder/univplanbuilder-append.h       |   48 +
 .../univplanbuilder/univplanbuilder-column.h       |   54 +
 .../univplanbuilder/univplanbuilder-connector.h    |   98 +
 .../univplanbuilder/univplanbuilder-expr-node.h    |  736 +++++
 .../univplanbuilder/univplanbuilder-expr-poly.h    |   54 +
 .../univplanbuilder/univplanbuilder-expr-tree.h    |  105 +
 .../univplanbuilder-ext-gs-filter.cc               |   55 +
 .../univplanbuilder-ext-gs-filter.h                |   51 +
 .../univplanbuilder/univplanbuilder-ext-gs-proj.cc |   57 +
 .../univplanbuilder/univplanbuilder-ext-gs-proj.h  |   51 +
 .../univplanbuilder/univplanbuilder-ext-gs-scan.cc |  103 +
 .../univplanbuilder/univplanbuilder-ext-gs-scan.h  |   62 +
 .../univplanbuilder/univplanbuilder-hash.h         |   64 +
 .../univplanbuilder/univplanbuilder-hashjoin.h     |   79 +
 .../univplanbuilder/univplanbuilder-insert.cc      |   50 +
 .../univplanbuilder/univplanbuilder-insert.h       |   48 +
 .../univplanbuilder/univplanbuilder-limit.cc       |   57 +
 .../univplanbuilder/univplanbuilder-limit.h        |   52 +
 .../univplanbuilder/univplanbuilder-listener.h     |   48 +
 .../univplanbuilder/univplanbuilder-material.h     |   94 +
 .../univplanbuilder/univplanbuilder-mergejoin.h    |   74 +
 .../univplanbuilder/univplanbuilder-nestloop.h     |   68 +
 .../univplanbuilder/univplanbuilder-node.cc        |   73 +
 .../univplanbuilder/univplanbuilder-node.h         |   71 +
 .../univplanbuilder/univplanbuilder-paraminfo.h    |   59 +
 .../univplanbuilder-plan-node-poly.h               |   60 +
 .../univplanbuilder/univplanbuilder-plan.cc        |  153 ++
 .../univplanbuilder/univplanbuilder-plan.h         |   86 +
 .../univplanbuilder-range-tbl-entry.h              |   52 +
 .../univplanbuilder/univplanbuilder-receiver.h     |   51 +
 .../univplanbuilder/univplanbuilder-result.h       |   67 +
 .../univplanbuilder/univplanbuilder-scan-seq.cc    |   70 +
 .../univplanbuilder/univplanbuilder-scan-seq.h     |   56 +
 .../univplanbuilder/univplanbuilder-scan-task.h    |   94 +
 .../univplanbuilder-shareinput-scan.h              |   70 +
 .../univplanbuilder/univplanbuilder-sink.h         |  252 ++
 .../univplanbuilder/univplanbuilder-sort.cc        |   65 +
 .../univplanbuilder/univplanbuilder-sort.h         |   54 +
 .../univplanbuilder-subquery-scan.h                |   67 +
 .../univplanbuilder/univplanbuilder-table.h        |   67 +
 .../univplanbuilder/univplanbuilder-target-entry.h |   67 +
 .../univplanbuilder/univplanbuilder-unique.cc      |   57 +
 .../univplanbuilder/univplanbuilder-unique.h       |   51 +
 .../univplan/univplanbuilder/univplanbuilder.cc    |   92 +
 .../src/univplan/univplanbuilder/univplanbuilder.h |   68 +
 depends/univplan/test/CMakeLists.txt               |   33 +
 depends/univplan/test/data/TestAgg                 |  260 ++
 depends/univplan/test/data/TestCompletedPlanAfter  |  849 ++++++
 depends/univplan/test/data/TestCompletedPlanBefore |  628 +++++
 depends/univplan/test/data/TestLimitCount          |  228 ++
 depends/univplan/test/data/TestLimitCountOffset    |  246 ++
 depends/univplan/test/data/TestLimitOffset         |  212 ++
 depends/univplan/test/data/TestNullTest            |  136 +
 depends/univplan/test/data/TestQualListAndExpr     |  259 ++
 depends/univplan/test/data/TestSort                |   99 +
 depends/univplan/test/data/TestStagizeAfter        |  167 ++
 depends/univplan/test/data/TestStagizeBefore       |  100 +
 .../univplan/test/data/TestUnivPlanProtoGenerate   |  130 +
 .../univplan/test/parallel/parallel-launcher.py    |  153 ++
 depends/univplan/test/unit/CMakeLists.txt          |   14 +
 depends/univplan/test/unit/test-basic-univplan.cc  |  259 ++
 .../univplan/test/unit/test-minmax-cotasklist.cc   |  259 ++
 .../univplan/test/unit/test-univplan-cwrapper.cc   |   90 +
 depends/univplan/test/unit/test-univplan.h         |   67 +
 depends/univplan/test/unit/unit-test-main.cc       |   32 +
 454 files changed, 105353 insertions(+), 4 deletions(-)
 create mode 100644 depends/dbcommon/.gitignore
 create mode 100644 depends/dbcommon/CMake/CMakeTestCompileInt64tType.cc
 create mode 100644 depends/dbcommon/CMake/FindCogapp.cmake
 create mode 100644 depends/dbcommon/CMake/FindGFlags.cmake
 create mode 100644 depends/dbcommon/CMake/FindGlog.cmake
 create mode 100644 depends/dbcommon/CMake/FindJSON.cmake
 create mode 100644 depends/dbcommon/CMake/FindSnappy.cmake
 copy depends/{libyarn => dbcommon}/CMake/Functions.cmake (100%)
 create mode 100644 depends/dbcommon/CMake/Options.cmake
 create mode 100644 depends/dbcommon/CMake/Platform.cmake
 create mode 100644 depends/dbcommon/CMakeLists.txt
 create mode 100644 depends/dbcommon/Makefile
 create mode 100644 depends/dbcommon/Makefile.global
 create mode 100644 depends/dbcommon/Makefile.global.in
 create mode 100644 depends/dbcommon/README
 create mode 100755 depends/dbcommon/bootstrap
 create mode 100644 depends/dbcommon/src/CMakeLists.txt
 create mode 100644 depends/dbcommon/src/dbcommon/checksum/checksum-util.cc
 create mode 100644 depends/dbcommon/src/dbcommon/checksum/checksum-util.h
 create mode 100644 depends/dbcommon/src/dbcommon/checksum/checksum.h
 create mode 100644 depends/dbcommon/src/dbcommon/checksum/hw-crc32c.cc
 create mode 100644 depends/dbcommon/src/dbcommon/checksum/hw-crc32c.h
 create mode 100644 depends/dbcommon/src/dbcommon/checksum/sw-crc32c.cc
 create mode 100644 depends/dbcommon/src/dbcommon/checksum/sw-crc32c.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/node-deserializer.cc
 create mode 100644 depends/dbcommon/src/dbcommon/common/node-deserializer.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/node-serializer.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/tuple-batch-store.cc
 create mode 100644 depends/dbcommon/src/dbcommon/common/tuple-batch-store.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/tuple-batch.cc
 create mode 100644 depends/dbcommon/src/dbcommon/common/tuple-batch.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/tuple-desc.cc
 create mode 100644 depends/dbcommon/src/dbcommon/common/tuple-desc.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector-transformer.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector.cc
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector/decimal-vector.cc
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector/decimal-vector.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector/fixed-length-vector.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector/interval-vector.cc
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector/interval-vector.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector/list-vector.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector/struct-vector.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector/timestamp-vector.h
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector/variable-length-vector.cc
 create mode 100644 depends/dbcommon/src/dbcommon/common/vector/variable-length-vector.h
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/file-system-manager.cc
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/file-system-manager.h
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/file-system.h
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/hdfs/hdfs-file-system.cc
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/hdfs/hdfs-file-system.h
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/hive/fb303.thrift
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/hive/hive-file-system.cc
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/hive/hive-file-system.h
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/hive/hive_metastore.thrift
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/local/local-file-system.cc
 create mode 100644 depends/dbcommon/src/dbcommon/filesystem/local/local-file-system.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/CPPLINT.cfg
 create mode 100644 depends/dbcommon/src/dbcommon/function/README
 create mode 100644 depends/dbcommon/src/dbcommon/function/agg-func.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/agg-func.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/arith-cmp-func.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/arith-func.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/arithmetic-function.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/array-function.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/array-function.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/binary-function.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/cmp-func.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/comparison-function.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/date-function.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/date-function.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/decimal-function.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/decimal-function.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/func-kind.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/func.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/func.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/function.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/invoker.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/invoker.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/mathematical-function.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/mathematical-function.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/string-binary-function.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/string-function.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/typecast-func.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/typecast-func.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/typecast-function.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/typecast-function.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/typecast-texttonum-func.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/typecast-texttonum-func.h
 create mode 100644 depends/dbcommon/src/dbcommon/function/volatile-func.cc
 create mode 100644 depends/dbcommon/src/dbcommon/function/volatile-func.h
 create mode 100644 depends/dbcommon/src/dbcommon/hash/cdb-hash.h
 create mode 100644 depends/dbcommon/src/dbcommon/hash/fast-hash.h
 create mode 100644 depends/dbcommon/src/dbcommon/hash/hash-keys.cc
 create mode 100644 depends/dbcommon/src/dbcommon/hash/hash-keys.h
 create mode 100644 depends/dbcommon/src/dbcommon/hash/native-hash-table.cc
 create mode 100644 depends/dbcommon/src/dbcommon/hash/native-hash-table.h
 create mode 100644 depends/dbcommon/src/dbcommon/hash/tuple-batch-hasher.h
 create mode 100644 depends/dbcommon/src/dbcommon/log/debug-logger.cc
 create mode 100644 depends/dbcommon/src/dbcommon/log/debug-logger.h
 create mode 100644 depends/dbcommon/src/dbcommon/log/error-code.h
 create mode 100644 depends/dbcommon/src/dbcommon/log/exception.h
 create mode 100644 depends/dbcommon/src/dbcommon/log/logger.cc
 create mode 100644 depends/dbcommon/src/dbcommon/log/logger.h
 create mode 100644 depends/dbcommon/src/dbcommon/log/stack-printer.cc
 create mode 100644 depends/dbcommon/src/dbcommon/log/stack-printer.h
 create mode 100644 depends/dbcommon/src/dbcommon/network/socket-tcp-message-client.cc
 create mode 100644 depends/dbcommon/src/dbcommon/network/socket-tcp-message-client.h
 create mode 100644 depends/dbcommon/src/dbcommon/network/socket-tcp-message-common.cc
 create mode 100644 depends/dbcommon/src/dbcommon/network/socket-tcp-message-common.h
 create mode 100644 depends/dbcommon/src/dbcommon/network/socket-tcp-message-server.cc
 create mode 100644 depends/dbcommon/src/dbcommon/network/socket-tcp-message-server.h
 create mode 100644 depends/dbcommon/src/dbcommon/network/socket-tcp-message-serverhandler.h
 create mode 100644 depends/dbcommon/src/dbcommon/network/socket-tcp.cc
 create mode 100644 depends/dbcommon/src/dbcommon/network/socket-tcp.h
 create mode 100644 depends/dbcommon/src/dbcommon/nodes/datum.cc
 create mode 100644 depends/dbcommon/src/dbcommon/nodes/datum.h
 create mode 100644 depends/dbcommon/src/dbcommon/nodes/scalar.cc
 create mode 100644 depends/dbcommon/src/dbcommon/nodes/scalar.h
 create mode 100644 depends/dbcommon/src/dbcommon/nodes/select-list.cc
 create mode 100644 depends/dbcommon/src/dbcommon/nodes/select-list.h
 create mode 100644 depends/dbcommon/src/dbcommon/python/code_generator.py
 create mode 100644 depends/dbcommon/src/dbcommon/testutil/agg-func-utils.h
 create mode 100644 depends/dbcommon/src/dbcommon/testutil/function-utils.cc
 create mode 100644 depends/dbcommon/src/dbcommon/testutil/function-utils.h
 create mode 100644 depends/dbcommon/src/dbcommon/testutil/scalar-utils.h
 create mode 100644 depends/dbcommon/src/dbcommon/testutil/tuple-batch-utils.h
 create mode 100644 depends/dbcommon/src/dbcommon/testutil/vector-utils.h
 create mode 100644 depends/dbcommon/src/dbcommon/thread/err-detect-callback.h
 create mode 100644 depends/dbcommon/src/dbcommon/thread/thread-base.cc
 create mode 100644 depends/dbcommon/src/dbcommon/thread/thread-base.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/CPPLINT.cfg
 create mode 100644 depends/dbcommon/src/dbcommon/type/README
 create mode 100644 depends/dbcommon/src/dbcommon/type/array.cc
 create mode 100644 depends/dbcommon/src/dbcommon/type/array.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/bool.cc
 create mode 100644 depends/dbcommon/src/dbcommon/type/bool.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/date.cc
 create mode 100644 depends/dbcommon/src/dbcommon/type/date.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/decimal.cc
 create mode 100644 depends/dbcommon/src/dbcommon/type/decimal.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/float.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/integer.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/interval.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/magma-tid.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/type-kind.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/type-modifier.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/type-util.cc
 create mode 100644 depends/dbcommon/src/dbcommon/type/type-util.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/typebase.cc
 create mode 100644 depends/dbcommon/src/dbcommon/type/typebase.h
 create mode 100644 depends/dbcommon/src/dbcommon/type/varlen.cc
 create mode 100644 depends/dbcommon/src/dbcommon/type/varlen.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/async-queue.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/block-memory-buffer.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/bool-buffer.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/bool-buffer.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/byte-buffer.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/comp/compressor.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/comp/lz4-compressor.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/comp/lz4-compressor.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/comp/snappy-compressor.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/comp/snappy-compressor.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/comp/zlib-compressor.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/comp/zlib-compressor.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/cutils.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/cutils.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/file-info.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/flat-memory-buffer.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/global.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/global.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/instrument.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/instrument.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/int-util.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/join-tuple-buffer.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/join-tuple-buffer.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/lock.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/lock.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/macro.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/mb/mb-converter.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/mb/mb-converter.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/memory-pool.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/memory-pool.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/net-client.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/object-counter.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/object-counter.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/parameters.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/string-util.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/string-util.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/sys-info.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/time-util.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/timezone-util.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/timezone-util.h
 create mode 100644 depends/dbcommon/src/dbcommon/utils/url.cc
 create mode 100644 depends/dbcommon/src/dbcommon/utils/url.h
 create mode 100644 depends/dbcommon/test/CMakeLists.txt
 copy depends/{libyarn => dbcommon}/test/data/checksum1.in (100%)
 copy depends/{libyarn => dbcommon}/test/data/checksum2.in (100%)
 create mode 100755 depends/dbcommon/test/parallel/parallel-launcher.py
 create mode 100644 depends/dbcommon/test/unit/CMakeLists.txt
 create mode 100644 depends/dbcommon/test/unit/checksum/test-checksum.cc
 create mode 100644 depends/dbcommon/test/unit/common/test-async-queue.cc
 create mode 100644 depends/dbcommon/test/unit/common/test-function.cc
 create mode 100644 depends/dbcommon/test/unit/common/test-tuple-batch-copy-control.cc
 create mode 100644 depends/dbcommon/test/unit/common/test-tuple-batch-store.cc
 create mode 100644 depends/dbcommon/test/unit/common/test-tuple-batch.cc
 create mode 100644 depends/dbcommon/test/unit/common/test-vector-copy-control.cc
 create mode 100644 depends/dbcommon/test/unit/common/test-vector.cc
 create mode 100644 depends/dbcommon/test/unit/filesystem/test-file-system.cc
 create mode 100644 depends/dbcommon/test/unit/function/CPPLINT.cfg
 create mode 100644 depends/dbcommon/test/unit/function/test-agg-func-has-no-group-by.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-agg-func-small-scale.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-agg-func.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-array-func.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-binary-cmp-function.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-binary-function.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-codegen-arith-functions.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-codegen-cmp-functions.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-codegen-typecast-functions.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-date-function.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-decimal-function.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-mathematical-function.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-string-cmp-function.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-string-function.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-timestamp-function.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-typecast-function.cc
 create mode 100644 depends/dbcommon/test/unit/function/test-typecast-texttonum-func.cc
 create mode 100644 depends/dbcommon/test/unit/log/test-debug-logger.cc
 create mode 100644 depends/dbcommon/test/unit/network/test-socket-tcp-message-comm.cc
 create mode 100644 depends/dbcommon/test/unit/nodes/test-datum.cc
 create mode 100644 depends/dbcommon/test/unit/nodes/test-select-list.cc
 create mode 100644 depends/dbcommon/test/unit/test-hash-table.cc
 create mode 100644 depends/dbcommon/test/unit/thread/test-err-detect-callback.cc
 create mode 100644 depends/dbcommon/test/unit/type/test-type.cc
 create mode 100644 depends/dbcommon/test/unit/unit-test-main.cc
 create mode 100644 depends/dbcommon/test/unit/utils/test-bool-buffer.cc
 create mode 100644 depends/dbcommon/test/unit/utils/test-byte-buffer.cc
 create mode 100644 depends/dbcommon/test/unit/utils/test-cutils.cc
 create mode 100644 depends/dbcommon/test/unit/utils/test-int-util.cc
 create mode 100644 depends/dbcommon/test/unit/utils/test-join-tuple-buffer.cc
 create mode 100644 depends/dbcommon/test/unit/utils/test-lock.cc
 create mode 100644 depends/dbcommon/test/unit/utils/test-lz4-compress.cc
 create mode 100644 depends/dbcommon/test/unit/utils/test-mb-converter.cc
 create mode 100644 depends/dbcommon/test/unit/utils/test-string-util.cc
 create mode 100644 depends/dbcommon/test/unit/utils/test-url.cc
 create mode 100644 depends/storage/.gitignore
 create mode 100644 depends/storage/CMake/CMakeTestCompileInt64tType.cc
 create mode 100644 depends/storage/CMake/FindCogapp.cmake
 create mode 100644 depends/storage/CMake/FindGFlags.cmake
 create mode 100644 depends/storage/CMake/FindGlog.cmake
 create mode 100644 depends/storage/CMake/FindJSON.cmake
 create mode 100644 depends/storage/CMake/FindSnappy.cmake
 create mode 100644 depends/storage/CMake/FindZLIB.cmake
 copy depends/{libyarn => storage}/CMake/Functions.cmake (100%)
 create mode 100644 depends/storage/CMake/Options.cmake
 create mode 100644 depends/storage/CMake/Platform.cmake
 create mode 100644 depends/storage/CMakeLists.txt
 create mode 100644 depends/storage/Makefile
 create mode 100644 depends/storage/Makefile.global
 create mode 100644 depends/storage/Makefile.global.in
 create mode 100644 depends/storage/README
 create mode 100755 depends/storage/bootstrap
 create mode 100644 depends/storage/src/CMakeLists.txt
 copy tools/bin/pythonSrc/unittest2-0.5.1/unittest2/test/dummy.py => depends/storage/src/storage/README (100%)
 create mode 100644 depends/storage/src/storage/common/bloom-filter.h
 create mode 100644 depends/storage/src/storage/common/string.h
 create mode 100644 depends/storage/src/storage/cwrapper/hdfs-file-system-c.cc
 create mode 100644 depends/storage/src/storage/cwrapper/hdfs-file-system-c.h
 create mode 100644 depends/storage/src/storage/cwrapper/orc-format-c.cc
 create mode 100644 depends/storage/src/storage/cwrapper/orc-format-c.h
 create mode 100644 depends/storage/src/storage/format/format.cc
 create mode 100644 depends/storage/src/storage/format/format.h
 create mode 100644 depends/storage/src/storage/format/orc/README
 create mode 100644 depends/storage/src/storage/format/orc/byte-rle.cc
 create mode 100644 depends/storage/src/storage/format/orc/byte-rle.h
 create mode 100644 depends/storage/src/storage/format/orc/column-printer.cc
 create mode 100644 depends/storage/src/storage/format/orc/column-printer.h
 create mode 100644 depends/storage/src/storage/format/orc/data-buffer.cc
 create mode 100644 depends/storage/src/storage/format/orc/data-buffer.h
 create mode 100644 depends/storage/src/storage/format/orc/exceptions.cc
 create mode 100644 depends/storage/src/storage/format/orc/exceptions.h
 create mode 100644 depends/storage/src/storage/format/orc/file-version.h
 create mode 100644 depends/storage/src/storage/format/orc/input-stream.cc
 create mode 100644 depends/storage/src/storage/format/orc/input-stream.h
 create mode 100644 depends/storage/src/storage/format/orc/int128.cc
 create mode 100644 depends/storage/src/storage/format/orc/int128.h
 create mode 100644 depends/storage/src/storage/format/orc/lzo-decompressor.cc
 create mode 100644 depends/storage/src/storage/format/orc/lzo-decompressor.h
 create mode 100644 depends/storage/src/storage/format/orc/orc-format-reader.cc
 create mode 100644 depends/storage/src/storage/format/orc/orc-format-reader.h
 create mode 100644 depends/storage/src/storage/format/orc/orc-format-writer.cc
 create mode 100644 depends/storage/src/storage/format/orc/orc-format-writer.h
 create mode 100644 depends/storage/src/storage/format/orc/orc-format.cc
 create mode 100644 depends/storage/src/storage/format/orc/orc-format.h
 create mode 100644 depends/storage/src/storage/format/orc/orc-predicates.cc
 create mode 100644 depends/storage/src/storage/format/orc/orc-predicates.h
 create mode 100644 depends/storage/src/storage/format/orc/orc-proto-definition.cc
 create mode 100644 depends/storage/src/storage/format/orc/orc-proto-definition.h
 create mode 100644 depends/storage/src/storage/format/orc/orc_proto.proto
 create mode 100644 depends/storage/src/storage/format/orc/output-stream.cc
 create mode 100644 depends/storage/src/storage/format/orc/output-stream.h
 create mode 100644 depends/storage/src/storage/format/orc/reader.cc
 create mode 100644 depends/storage/src/storage/format/orc/reader.h
 create mode 100644 depends/storage/src/storage/format/orc/rle-v0.h
 create mode 100644 depends/storage/src/storage/format/orc/rle-v1.h
 create mode 100644 depends/storage/src/storage/format/orc/rle-v2.h
 create mode 100644 depends/storage/src/storage/format/orc/rle.cc
 create mode 100644 depends/storage/src/storage/format/orc/rle.h
 create mode 100644 depends/storage/src/storage/format/orc/seekable-input-stream.cc
 create mode 100644 depends/storage/src/storage/format/orc/seekable-input-stream.h
 create mode 100644 depends/storage/src/storage/format/orc/seekable-output-stream.cc
 create mode 100644 depends/storage/src/storage/format/orc/seekable-output-stream.h
 create mode 100644 depends/storage/src/storage/format/orc/string-dictionary.cc
 create mode 100644 depends/storage/src/storage/format/orc/string-dictionary.h
 create mode 100644 depends/storage/src/storage/format/orc/timezone.cc
 create mode 100644 depends/storage/src/storage/format/orc/timezone.h
 create mode 100644 depends/storage/src/storage/format/orc/type-impl.cc
 create mode 100644 depends/storage/src/storage/format/orc/type-impl.h
 create mode 100644 depends/storage/src/storage/format/orc/type.h
 create mode 100644 depends/storage/src/storage/format/orc/vector.cc
 create mode 100644 depends/storage/src/storage/format/orc/vector.h
 create mode 100644 depends/storage/src/storage/format/orc/writer.cc
 create mode 100644 depends/storage/src/storage/format/orc/writer.h
 create mode 100644 depends/storage/src/storage/format/orc/writer/binary-column-writer.cc
 create mode 100644 depends/storage/src/storage/format/orc/writer/decimal-column-writer.cc
 create mode 100644 depends/storage/src/storage/format/orc/writer/string-column-writer.cc
 create mode 100644 depends/storage/src/storage/testutil/file-utils.h
 create mode 100644 depends/storage/src/storage/testutil/format-util.h
 create mode 100644 depends/storage/test/CMakeLists.txt
 create mode 100644 depends/storage/test/data/hawq-write-orc.sql
 copy tools/bin/pythonSrc/unittest2-0.5.1/unittest2/test/dummy.py => depends/storage/test/data/sampledata (100%)
 create mode 100644 depends/storage/test/data/spark-read-orc.sql
 create mode 100755 depends/storage/test/parallel/parallel-launcher.py
 create mode 100644 depends/storage/test/unit/CMakeLists.txt
 create mode 100644 depends/storage/test/unit/common/test-bloom-filter.cc
 create mode 100644 depends/storage/test/unit/format/test-filter-pushdown.cc
 create mode 100644 depends/storage/test/unit/format/test-orc-byte-rle-encoder.cc
 create mode 100644 depends/storage/test/unit/format/test-orc-byte-rle.cc
 create mode 100644 depends/storage/test/unit/format/test-orc-format.cc
 create mode 100644 depends/storage/test/unit/format/test-orc-int128.cc
 create mode 100644 depends/storage/test/unit/format/test-orc-proto-definition.cc
 create mode 100644 depends/storage/test/unit/format/test-orc-rle.cc
 create mode 100644 depends/storage/test/unit/format/test-orc-vector.cc
 create mode 100644 depends/storage/test/unit/format/test-string-dictionary.cc
 create mode 100644 depends/storage/test/unit/unit-test-main.cc
 create mode 100644 depends/univplan/.gitignore
 create mode 100644 depends/univplan/CMake/CMakeTestCompileInt64tType.cc
 create mode 100644 depends/univplan/CMake/FindCogapp.cmake
 create mode 100644 depends/univplan/CMake/FindGFlags.cmake
 create mode 100644 depends/univplan/CMake/FindGlog.cmake
 create mode 100644 depends/univplan/CMake/FindJSON.cmake
 create mode 100644 depends/univplan/CMake/FindSnappy.cmake
 copy depends/{libyarn => univplan}/CMake/Functions.cmake (100%)
 create mode 100644 depends/univplan/CMake/Options.cmake
 create mode 100644 depends/univplan/CMake/Platform.cmake
 create mode 100644 depends/univplan/CMakeLists.txt
 create mode 100644 depends/univplan/Makefile
 create mode 100644 depends/univplan/Makefile.global
 create mode 100644 depends/univplan/Makefile.global.in
 copy tools/bin/pythonSrc/unittest2-0.5.1/unittest2/test/dummy.py => depends/univplan/README (100%)
 create mode 100755 depends/univplan/bootstrap
 create mode 100644 depends/univplan/src/CMakeLists.txt
 create mode 100644 depends/univplan/src/univplan/common/expression.cc
 create mode 100644 depends/univplan/src/univplan/common/expression.h
 create mode 100644 depends/univplan/src/univplan/common/plannode-util.h
 create mode 100644 depends/univplan/src/univplan/common/plannode-walker.h
 create mode 100644 depends/univplan/src/univplan/common/stagize.cc
 create mode 100644 depends/univplan/src/univplan/common/stagize.h
 create mode 100644 depends/univplan/src/univplan/common/statistics.h
 create mode 100644 depends/univplan/src/univplan/common/subplan-util.cc
 create mode 100644 depends/univplan/src/univplan/common/subplan-util.h
 create mode 100644 depends/univplan/src/univplan/common/univplan-type.h
 create mode 100644 depends/univplan/src/univplan/common/var-util.cc
 create mode 100644 depends/univplan/src/univplan/common/var-util.h
 create mode 100644 depends/univplan/src/univplan/cwrapper/univplan-c.cc
 create mode 100644 depends/univplan/src/univplan/cwrapper/univplan-c.h
 create mode 100644 depends/univplan/src/univplan/minmax/minmax-predicates.cc
 create mode 100644 depends/univplan/src/univplan/minmax/minmax-predicates.h
 create mode 100644 depends/univplan/src/univplan/proto/universal-plan-catalog.proto
 create mode 100644 depends/univplan/src/univplan/proto/universal-plan-expr.proto
 create mode 100644 depends/univplan/src/univplan/proto/universal-plan.proto
 create mode 100644 depends/univplan/src/univplan/testutil/univplan-proto-util.cc
 create mode 100644 depends/univplan/src/univplan/testutil/univplan-proto-util.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-agg.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-agg.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-append.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-append.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-column.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-connector.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-expr-node.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-expr-poly.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-expr-tree.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-ext-gs-filter.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-ext-gs-filter.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-ext-gs-proj.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-ext-gs-proj.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-ext-gs-scan.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-ext-gs-scan.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-hash.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-hashjoin.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-insert.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-insert.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-limit.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-limit.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-listener.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-material.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-mergejoin.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-nestloop.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-node.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-node.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-paraminfo.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-plan-node-poly.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-plan.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-plan.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-range-tbl-entry.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-receiver.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-result.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-scan-seq.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-scan-seq.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-scan-task.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-shareinput-scan.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-sink.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-sort.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-sort.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-subquery-scan.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-table.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-target-entry.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-unique.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder-unique.h
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder.cc
 create mode 100644 depends/univplan/src/univplan/univplanbuilder/univplanbuilder.h
 create mode 100644 depends/univplan/test/CMakeLists.txt
 create mode 100644 depends/univplan/test/data/TestAgg
 create mode 100644 depends/univplan/test/data/TestCompletedPlanAfter
 create mode 100644 depends/univplan/test/data/TestCompletedPlanBefore
 create mode 100644 depends/univplan/test/data/TestLimitCount
 create mode 100644 depends/univplan/test/data/TestLimitCountOffset
 create mode 100644 depends/univplan/test/data/TestLimitOffset
 create mode 100644 depends/univplan/test/data/TestNullTest
 create mode 100644 depends/univplan/test/data/TestQualListAndExpr
 create mode 100644 depends/univplan/test/data/TestSort
 create mode 100644 depends/univplan/test/data/TestStagizeAfter
 create mode 100644 depends/univplan/test/data/TestStagizeBefore
 create mode 100644 depends/univplan/test/data/TestUnivPlanProtoGenerate
 create mode 100755 depends/univplan/test/parallel/parallel-launcher.py
 create mode 100644 depends/univplan/test/unit/CMakeLists.txt
 create mode 100644 depends/univplan/test/unit/test-basic-univplan.cc
 create mode 100644 depends/univplan/test/unit/test-minmax-cotasklist.cc
 create mode 100644 depends/univplan/test/unit/test-univplan-cwrapper.cc
 create mode 100644 depends/univplan/test/unit/test-univplan.h
 create mode 100644 depends/univplan/test/unit/unit-test-main.cc


[hawq] 01/01: Build apache hawq on mac osx 10.14 platform

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 b75e96638339f7429ab56721efe1eb0643aa264d
Author: Ruilong Huo <hu...@163.com>
AuthorDate: Sat Mar 9 13:52:33 2019 +0800

    Build apache hawq on mac osx 10.14 platform
---
 src/Makefile.global.in    |  2 +-
 src/backend/tcop/Makefile | 13 ++++++++++++-
 src/bin/gpfdist/Makefile  |  4 ++--
 3 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/src/Makefile.global.in b/src/Makefile.global.in
index 3691d79..5b9258b 100644
--- a/src/Makefile.global.in
+++ b/src/Makefile.global.in
@@ -550,7 +550,7 @@ ifeq ($(BLD_ARCH),osx106_x86)
 LIBS := $(LIBS) -framework CoreServices -framework IOKit
 endif
 
-LIBS := $(LIBS) -lyarn -lkrb5
+LIBS := $(LIBS) -lyarn -lkrb5 -lssl
 
 ##########################################################################
 #
diff --git a/src/backend/tcop/Makefile b/src/backend/tcop/Makefile
index 61b1955..79b40b0 100644
--- a/src/backend/tcop/Makefile
+++ b/src/backend/tcop/Makefile
@@ -12,7 +12,10 @@ subdir = src/backend/tcop
 top_builddir = ../../..
 include $(top_builddir)/src/Makefile.global
 
-override CPPFLAGS := -I$(top_srcdir)/src/backend/resourcemanager/include $(CPPFLAGS)
+override CPPFLAGS += -I/opt/dependency/package/include/openssl
+override CPPFLAGS += -I$(top_srcdir)/src/backend/resourcemanager/include $(CPPFLAGS)
+
+LIBS := -lssl -lcrypto
 
 OBJS= dest.o fastpath.o postgres.o pquery.o utility.o
 
@@ -21,3 +24,11 @@ override CPPFLAGS += -DWIN32_STACK_RLIMIT=$(WIN32_STACK_RLIMIT)
 endif
 
 include $(top_srcdir)/src/backend/common.mk
+
+UNAME = $(shell uname)
+ifeq (Darwin, $(UNAME))
+  INCLUDES := $(INCLUDES) -I/opt/dependency/package/include/openssl
+  LIBS := $(LIBS) -L/opt/dependency/package/lib
+# INCLUDES := $(INCLUDES) -I/usr/local/opt/openssl/include
+# LIBS := $(LIBS) -L/usr/local/opt/openssl/lib
+endif
diff --git a/src/bin/gpfdist/Makefile b/src/bin/gpfdist/Makefile
index ef20efe..9d7d8e0 100644
--- a/src/bin/gpfdist/Makefile
+++ b/src/bin/gpfdist/Makefile
@@ -46,8 +46,8 @@ LIBS     := $$($(APR_CFG) --link-ld --libs) $(LIBS)
 # workaround for 'brew link openssl --force' error on MacOS 10.12
 UNAME = $(shell uname)
 ifeq (Darwin, $(UNAME))
-	INCLUDES := $(INCLUDES) -I/usr/local/opt/openssl/include
-	LIBS := $(LIBS) -L/usr/local/opt/openssl/lib
+	INCLUDES := $(INCLUDES) -I/usr/local/Cellar/openssl/1.0.2q/include/openssl
+	LIBS := $(LIBS) -L/usr/local/Cellar/openssl/1.0.2q/lib
 endif
 
 sol10_sparc_32_CPPFLAGS = -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64