Skip to content

Commit 5d328ba

Browse files
authored
Merge pull request #7248 from xudong963/fix_script
chore: fix `13_0000_prepare.sh` script
2 parents 617533e + b045d4d commit 5d328ba

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

tests/suites/0_stateless/13_tpch/13_0000_prepare.result

-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
tests/suites/0_stateless/13_tpch/data/
2-
tests/suites/0_stateless/13_tpch/data/supplier.tbl
3-
tests/suites/0_stateless/13_tpch/data/lineitem.tbl
4-
tests/suites/0_stateless/13_tpch/data/part.tbl
5-
tests/suites/0_stateless/13_tpch/data/partsupp.tbl
6-
tests/suites/0_stateless/13_tpch/data/orders.tbl
7-
tests/suites/0_stateless/13_tpch/data/customer.tbl
8-
tests/suites/0_stateless/13_tpch/data/nation.tbl
9-
tests/suites/0_stateless/13_tpch/data/region.tbl
101
customer
112
lineitem
123
nation

tests/suites/0_stateless/13_tpch/13_0000_prepare.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ echo "CREATE TABLE IF NOT EXISTS lineitem
102102
#download data
103103
mkdir -p ${CURDIR}/data/
104104
curl -s -o ${CURDIR}/data/tpch.tar.gz http://repo.databend.rs/dataset/stateful/tpch.tar.gz
105-
tar -zxvf ${CURDIR}/data/tpch.tar.gz -C ${CURDIR}/data
105+
tar -zxf ${CURDIR}/data/tpch.tar.gz -C ${CURDIR}/data
106106

107107
# insert data to tables
108108
for t in customer lineitem nation orders partsupp part region supplier

0 commit comments

Comments
 (0)