Skip to content

Add the PAX support in the configure #19

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build_automation/cloudberry/scripts/configure-cloudberry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
# - MapReduce Processing
# - Oracle Compatibility (orafce)
# - ORCA Query Optimizer
# - PAX Access Method
# - PXF External Table Access
# - Test Automation Support (tap-tests)
#
Expand Down Expand Up @@ -133,6 +134,7 @@ execute_cmd ./configure --prefix=/usr/local/cloudberry-db \
--enable-mapreduce \
--enable-orafce \
--enable-orca \
--enable-pax \
--enable-pxf \
--enable-tap-tests \
${CONFIGURE_DEBUG_OPTS} \
Expand Down
9 changes: 6 additions & 3 deletions images/docker/cbdb/build/rocky8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,12 @@ RUN dnf makecache && \
autoconf \
bison \
bzip2-devel \
cmake3 \
diffutils \
file \
flex \
gcc \
gcc-c++ \
gcc-toolset-11-gcc \
gcc-toolset-11-gcc-c++ \
gdb \
glibc-langpack-en \
glibc-locale-source \
Expand Down Expand Up @@ -134,7 +135,9 @@ RUN dnf makecache && \
libyaml-devel \
perl-IPC-Run \
protobuf-devel && \
dnf clean all && \
dnf clean all && rm -rf /var/cache/dnf/* && \
echo "source /opt/rh/gcc-toolset-11/enable" >> /etc/profile.d/gcc.sh && \
source /etc/profile.d/gcc.sh && \
cd && XERCES_LATEST_RELEASE=3.3.0 && \
wget -nv "https://archive.apache.org/dist/xerces/c/3/sources/xerces-c-${XERCES_LATEST_RELEASE}.tar.gz" && \
echo "$(curl -sL https://archive.apache.org/dist/xerces/c/3/sources/xerces-c-${XERCES_LATEST_RELEASE}.tar.gz.sha256)" | sha256sum -c - && \
Expand Down