You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-08 03:42:19 +03:00
12 lines
344 B
Bash
Executable File
12 lines
344 B
Bash
Executable File
#!/bin/bash
|
|
echo "starting tpch100 stream0 test.........."
|
|
echo
|
|
sid=1
|
|
for q in 14 2 9 20 6 17 18 8 21 13 3 22 16 4 11 15 1 10 19 5 7 12; do
|
|
qq=`printf %02d $q`
|
|
/home/qa/srv/common/script/sendPlanExec.sh $sid 9 /home/qa/srv/tpchtest/sqlplan/tpch100/s0/hex/i16/tpch100_s0_${qq}.hex
|
|
((sid++))
|
|
done
|
|
echo "tpch100 Stream0 test completed."
|
|
|