From 03908e0f6b7e02df1ef1861dd2888fc435d97e56 Mon Sep 17 00:00:00 2001 From: Patrick Wang Date: Sun, 7 Jul 2024 04:09:48 +0000 Subject: [PATCH] renamed bytejack_rs and bytejack to boot_rs and boot --- dbms/postgres/build_repo.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dbms/postgres/build_repo.sh b/dbms/postgres/build_repo.sh index b4402a66..271f7056 100755 --- a/dbms/postgres/build_repo.sh +++ b/dbms/postgres/build_repo.sh @@ -4,7 +4,7 @@ set -euxo pipefail REPO_REAL_PARENT_DPATH="$1" -# download and make postgres from the boot repository +# Download and make postgres from the boot repository. mkdir -p "${REPO_REAL_PARENT_DPATH}" cd "${REPO_REAL_PARENT_DPATH}" git clone git@github.com:lmwnshn/boot.git --single-branch --branch vldb_2024 --depth 1 @@ -13,25 +13,25 @@ cd ./boot make clean make install-world-bin -j4 -# download and make bytejack -cd ./cmudb/extension/bytejack_rs/ +# Download and make boot. +cd ./cmudb/extension/boot_rs/ cargo build --release -cbindgen . -o target/bytejack_rs.h --lang c +cbindgen . -o target/boot_rs.h --lang c cd "${REPO_REAL_PARENT_DPATH}/boot" -cd ./cmudb/extension/bytejack/ +cd ./cmudb/extension/boot/ make clean make install -j cd "${REPO_REAL_PARENT_DPATH}/boot" -# download and make hypopg +# Download and make hypopg. git clone git@github.com:HypoPG/hypopg.git cd ./hypopg PG_CONFIG="${REPO_REAL_PARENT_DPATH}/boot/build/postgres/bin/pg_config" make install cd "${REPO_REAL_PARENT_DPATH}/boot" -# download and make pg_hint_plan -# we need -L to follow links +# Download and make pg_hint_plan. +# We need -L to follow links. curl -L https://github.com/ossc-db/pg_hint_plan/archive/refs/tags/REL15_1_5_1.tar.gz -o REL15_1_5_1.tar.gz tar -xzf REL15_1_5_1.tar.gz rm REL15_1_5_1.tar.gz