This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 2615d1bd81 chore: update tpch-docker docker repository (#9204)
2615d1bd81 is described below
commit 2615d1bd81409b9ecc3e9a4683733c1d60992aa9
Author: Patrick McGleenon <[email protected]>
AuthorDate: Tue Feb 13 11:14:49 2024 +0000
chore: update tpch-docker docker repository (#9204)
DataBloom is now Scalytics. Fixes #9201
---
benchmarks/bench.sh | 4 ++--
datafusion/sqllogictest/README.md | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/benchmarks/bench.sh b/benchmarks/bench.sh
index deab8e9c4e..2ecd42920e 100755
--- a/benchmarks/bench.sh
+++ b/benchmarks/bench.sh
@@ -278,7 +278,7 @@ data_tpch() {
echo " tbl files exist ($FILE exists)."
else
echo " creating tbl files with tpch_dbgen..."
- docker run -v "${TPCH_DIR}":/data -it --rm
ghcr.io/databloom-ai/tpch-docker:main -vf -s ${SCALE_FACTOR}
+ docker run -v "${TPCH_DIR}":/data -it --rm
ghcr.io/scalytics/tpch-docker:main -vf -s ${SCALE_FACTOR}
fi
# Copy expected answers into the ./data/answers directory if it does not
already exist
@@ -288,7 +288,7 @@ data_tpch() {
else
echo " Copying answers to ${TPCH_DIR}/answers"
mkdir -p "${TPCH_DIR}/answers"
- docker run -v "${TPCH_DIR}":/data -it --entrypoint /bin/bash --rm
ghcr.io/databloom-ai/tpch-docker:main -c "cp -f
/opt/tpch/2.18.0_rc2/dbgen/answers/* /data/answers/"
+ docker run -v "${TPCH_DIR}":/data -it --entrypoint /bin/bash --rm
ghcr.io/scalytics/tpch-docker:main -c "cp -f
/opt/tpch/2.18.0_rc2/dbgen/answers/* /data/answers/"
fi
# Create 'parquet' files from tbl
diff --git a/datafusion/sqllogictest/README.md
b/datafusion/sqllogictest/README.md
index bda00a2dce..5a900cb994 100644
--- a/datafusion/sqllogictest/README.md
+++ b/datafusion/sqllogictest/README.md
@@ -163,7 +163,7 @@ root:
mkdir -p datafusion/sqllogictest/test_files/tpch/data
docker run -it \
-v "$(realpath datafusion/sqllogictest/test_files/tpch/data)":/data \
- ghcr.io/databloom-ai/tpch-docker:main -vf -s 0.1
+ ghcr.io/scalytics/tpch-docker:main -vf -s 0.1
```
Then you need to add `INCLUDE_TPCH=true` to run tpch tests: