You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-09-11 08:50:45 +03:00
26 lines
484 B
Bash
26 lines
484 B
Bash
#!/bin/sh
|
|
#
|
|
# Test 731. Monitor time of individual .sql scripts.
|
|
#
|
|
TEST=test731
|
|
STATUSTEXT="731 Time Statements : "
|
|
|
|
. ../scripts/common.sh $1
|
|
|
|
echo "$STATUSTEXT In Progress" > $TEST.status
|
|
|
|
cd $TEST
|
|
./go731.sh
|
|
results=$?
|
|
cd ..
|
|
|
|
# Report the status.
|
|
echo "$STATUSTEXT `cat $TEST/status.txt`" > $TEST.status
|
|
|
|
echo "731 Time Statements Details:" > $TEST.details
|
|
echo "" >> $TEST.details
|
|
cat $TEST/details.txt >> $TEST.details
|
|
|
|
cat $TEST.status
|
|
cat $TEST.details
|