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

djwang pushed a change to branch merge-with-upstream
in repository https://gitbox.apache.org/repos/asf/cloudberry-pxf.git


    from 9a262885 docs - Updating references of ADL and Azure Data Lake to 
ABFSS and Azure Data Lake Storage Gen2 (#1128)
     new 68c54cdb Address PR feedback
     new 7df14917 Changes for compiling PXF with GPDB 6.x
     new a81df0b9 Handle fucntion call for 6.x and 7.x
     new 18056b1f Temporary add GPDB header file to Install directory Manually
     new d826a137 Fix compilation for PXF on GP7
     new 50f2341a Added post instructions in GP7 spec
     new cb599545 Code Refactor
     new ae79dd65 Fix code for GP7 and GP6 API diff
     new 794570c2 Fix compilation for GP7
     new dcffb4d2 Fix Tests for GP7
     new 6fa21e7c updated ProjectionInfo related code for GP7 and code refactor
     new 82d659f9 Update Catalog query  to get Foreign Tables
     new 78152830 Added Python dependencies for Tinc Tests
     new b099e609 Fixing Tinc tests
     new 240a95c2 Fixing Table/DB encoding comparison for GP7
     new db6cdfce fix projection calculation for GP7
     new b42eb709 Resolving conflicts
     new 22810f6d Applying master changes for pxfheaders.c and test.yml to the 
branch to avoid conflict
     new 9b8a8a6b Address PR Feedback
     new 733ab552 Add support for Cloudberry Database
     new 2b70d309 fix: refactor projection header logic for PostgreSQL 
compatibility
     new 4cf46962 Bump Spring Boot's built-in Tomcat to 9.0.72
     new 24a69b64 Add basic community files
     new 635c1493 Update README.md (#1)
     new 39c1cd8c Update asf.yaml and README.md
     new 64875eb6 added Maven, Java 8 and pip install for GPDB7 docker images 
(#860)
     new 5410b7b7 install Java 8 JDK in gp7 centos7 docker image (#862)
     new 1f5c4bad removed jsoup dependency and unused class from the automation 
code (#863)
     new a2fe875b Add JsonProtocolHandler to use HdfsFileFragmenter for 
multi-line JSON (#858)
     new 613bdcb2 docs - update jdbc driver version number (#865)
     new 4974d1fd docs - misc updates/additions to the orc write docs (#864)
     new e021d6ff docs - command block formatting fix (#866)
     new 45efced0 ci: allow existing artifacts to remain if there is no pivnet 
product (#868)
     new 26c0920e added specs for gpdb7-rhel8-test-pxf docker image (#867)
     new 42dddc46 Relax the requirement that C string length matches Java 
string length (#870)
     new 8839ece6 Fix stack overflow in add_projection_desc_httpheader_pg12
     new a43e9e2b Modify operator precedence.

The 37 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:
 .asf.yaml                                          |  74 +++++
 .github/ISSUE_TEMPLATE/bug-report.yml              |  63 +++++
 .github/ISSUE_TEMPLATE/config.yml                  |  14 +
 .github/pull_request_template.md                   |  20 ++
 CODE-OF-CONDUCT.md                                 | 149 ++++++----
 CONTRIBUTING.md                                    |  91 +++---
 Makefile                                           | 117 ++++----
 NOTICE                                             |  12 +
 README.md                                          | 226 ++++++++-------
 SECURITY.md                                        | 189 +++++--------
 automation/pom.xml                                 |   6 -
 .../general/alter/csv/expected/query01.ans         |   6 +
 .../features/general/alter/csv/sql/query01.sql     |   6 +
 .../parquet/expected/query01.ans                   |   7 +
 .../pxfwritable_export/parquet/sql/query01.sql     |   6 +
 .../without_column_projection/expected/query01.ans |   3 +
 .../without_column_projection/sql/query01.sql      |   3 +
 .../pxf/automation/features/orc/OrcReadTest.java   |   6 +
 .../features/orc/read/null_in_string/__init__.py}  |   0
 .../orc/read/null_in_string/expected/query01.ans   |   0
 .../features/orc/read/null_in_string/runTest.py    |  11 +
 .../orc/read/null_in_string/sql/query01.sql        |   0
 cli/cmd/cluster.go                                 |   5 +
 concourse/docker/pxf-dev-base/README.md            |  19 +-
 concourse/docker/pxf-dev-base/cloudbuild.yaml      |  33 ++-
 .../docker/pxf-dev-base/gpdb7/centos7/Dockerfile   |  17 +-
 .../docker/pxf-dev-base/gpdb7/rhel8/Dockerfile     |  25 +-
 .../pxf-dev-base/gpdb7/ubuntu18.04/Dockerfile      |  18 +-
 concourse/docker/rpmrebuild/rhel/Dockerfile        |  16 ++
 concourse/pipelines/cloudbuild_pipeline.yml        | 148 +++++++++-
 .../pipelines/templates/dev_build_pipeline-tpl.yml | 173 +++++++++++-
 concourse/scripts/build.bash                       |  19 +-
 concourse/scripts/get_product_files.bash           |  30 +-
 concourse/scripts/initialize_gpdb.bash             |   1 +
 concourse/scripts/pxf_common.bash                  |   5 +
 concourse/scripts/test.bash                        |  72 +++++
 concourse/tasks/build.yml                          |   2 +
 concourse/tasks/test.yml                           |   5 +-
 docs/content/jdbc_cfg.html.md.erb                  |   2 +-
 external-table/src/gpdbwritableformatter.c         |  99 +++++--
 external-table/src/libchurl.c                      |  10 +-
 external-table/src/pxfdelimited_formatter.c        |   2 +-
 external-table/src/pxffilters.c                    |   4 +-
 external-table/src/pxfheaders.c                    | 305 ++++++++++++++++++---
 external-table/src/pxfuriparser.c                  |   6 +
 external-table/src/pxfutils.c                      |   7 +-
 package/{pxf-gp7.spec => pxf-cbdb1.spec}           |  20 +-
 package/pxf-gp7.spec                               |   2 +
 server/build.gradle                                |   4 +
 .../pxf/plugins/json/JsonProtocolHandler.java      |  13 +-
 .../pxf/plugins/json/JsonProtocolHandlerTest.java  |  17 --
 .../pxf/plugins/s3/S3ProtocolHandler.java          |   6 +-
 .../pxf/plugins/s3/S3ProtocolHandlerTest.java      |  42 +--
 .../src/main/resources/pxf-profiles-default.xml    |   2 +-
 server/pxf-service/src/scripts/pxf-post-gpupgrade  |   6 +-
 server/pxf-service/src/scripts/pxf-pre-gpupgrade   |   6 +-
 version                                            |   2 +-
 57 files changed, 1545 insertions(+), 607 deletions(-)
 create mode 100644 .asf.yaml
 create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml
 create mode 100644 .github/ISSUE_TEMPLATE/config.yml
 create mode 100644 .github/pull_request_template.md
 copy automation/{src/test/resources/data/text/empty => 
tincrepo/main/pxf/features/orc/read/null_in_string/__init__.py} (100%)
 copy automation/{sqlrepo => 
tincrepo/main/pxf}/features/orc/read/null_in_string/expected/query01.ans (100%)
 create mode 100644 
automation/tincrepo/main/pxf/features/orc/read/null_in_string/runTest.py
 copy automation/{sqlrepo => 
tincrepo/main/pxf}/features/orc/read/null_in_string/sql/query01.sql (100%)
 create mode 100644 concourse/docker/rpmrebuild/rhel/Dockerfile
 copy package/{pxf-gp7.spec => pxf-cbdb1.spec} (82%)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to