This is an automated email from the ASF dual-hosted git repository.
ztao1987 pushed a change to branch ztao
in repository https://gitbox.apache.org/repos/asf/hawq.git.
discard 0c0c292 HAWQ-1810. set guc main_disp_connections_per_thread when init
discard 7b70cdf HAWQ-1809. Support multiple location for readable ext HDFS
table
omit 92d7020 HAWQ-1808. fix access null pointer
add 750a601 HAWQ-1808. fix access null pointer
add 5a4a061 HAWQ-1809. Support multiple location for readable ext HDFS
table
add 0ead33a HAWQ-1810. set guc main_disp_connections_per_thread when init
new c36333e HAWQ-1811. Sync with OushuDB - Phase I
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 (0c0c292)
\
N -- N -- N refs/heads/ztao (c36333e)
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 | 5 +-
contrib/hornet/Makefile | 16 +
contrib/hornet/hornet.c | 114 ++
.../load_hornet_helper_function.sql} | 195 ++-
contrib/{oushu => hornet}/orc_debug_metadata.py | 0
contrib/{oushu => hornet}/orc_debug_statistics.py | 0
contrib/magma/magma.c | 34 +-
contrib/magma/magma_install.sql | 223 ++-
contrib/magma/monitor_install.sql | 6 -
contrib/orc/orc_install.sql | 79 +-
doc/src/sgml/ref/alter_table.sgml | 5 +-
doc/src/sgml/ref/create_table.sgml | 10 +-
doc/src/sgml/ref/create_table_as.sgml | 5 +-
src/backend/access/bitmap/bitmapattutil.c | 1 +
src/backend/access/external/url_curl.c | 22 +-
src/backend/access/nbtree/nbtsort.c | 2 +-
src/backend/access/nbtree/nbtutils.c | 4 +-
src/backend/access/orc/orcam.c | 143 +-
src/backend/bootstrap/bootparse.y | 32 +-
src/backend/catalog/aoseg.c | 1 +
src/backend/catalog/heap.c | 1 +
src/backend/catalog/index.c | 24 +-
src/backend/catalog/indexing.c | 1 +
src/backend/catalog/pg_constraint.c | 13 +-
src/backend/catalog/toasting.c | 1 +
src/backend/cdb/cdbmutate.c | 2 +-
src/backend/cdb/cdbpartition.c | 2 +
src/backend/commands/indexcmds.c | 33 +-
src/backend/commands/tablecmds.c | 2 +
src/backend/commands/typecmds.c | 1 +
src/backend/executor/newExecutor.c | 7 +
src/backend/nodes/copyfuncs.c | 2 +
src/backend/nodes/equalfuncs.c | 2 +
src/backend/nodes/outfast.c | 1 +
src/backend/nodes/outfuncs.c | 4 +
src/backend/optimizer/path/indxpath.c | 4 +-
src/backend/optimizer/plan/newPlanner.c | 1764 +++++++++++---------
src/backend/optimizer/plan/planagg.c | 2 +-
src/backend/optimizer/util/plancat.c | 12 +-
src/backend/parser/gram.y | 50 +-
src/backend/parser/parse_utilcmd.c | 102 +-
src/backend/utils/Gen_hawq_funcoid_mapping.sh | 10 +-
src/backend/utils/adt/array_distance_install.sql | 17 +-
src/backend/utils/adt/ruleutils.c | 8 +-
src/backend/utils/adt/selfuncs.c | 2 +-
src/backend/utils/cache/relcache.c | 19 +-
src/backend/utils/misc/guc.c | 2 +-
src/backend/utils/sort/tuplesort.c | 2 +-
src/backend/utils/sort/tuplesort_mk.c | 2 +-
src/bin/pg_dump/pg_dump.c | 29 +-
src/bin/pg_dump/pg_dump.h | 6 +-
src/include/access/orcam.h | 60 +-
src/include/catalog/index.h | 10 +-
src/include/catalog/pg_attribute.h | 17 +-
src/include/catalog/pg_constraint.h | 1 +
src/include/catalog/pg_index.h | 20 +-
src/include/nodes/parsenodes.h | 6 +-
src/include/nodes/relation.h | 4 +-
src/include/optimizer/newPlanner.h | 12 +-
src/include/parser/kwlist.h | 1 +
src/include/utils/guc.h | 2 +
src/include/utils/rel.h | 14 +
tools/bin/upgrade.sh | 55 +-
63 files changed, 1991 insertions(+), 1235 deletions(-)
create mode 100644 contrib/hornet/Makefile
create mode 100644 contrib/hornet/hornet.c
rename contrib/{oushu/load_orc_debug_udf.sql =>
hornet/load_hornet_helper_function.sql} (52%)
rename contrib/{oushu => hornet}/orc_debug_metadata.py (100%)
rename contrib/{oushu => hornet}/orc_debug_statistics.py (100%)