You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
26 lines
537 B
Bash
26 lines
537 B
Bash
#!/bin/sh
|
|
#
|
|
# Test 520. Repeats 3 million row result with increasing group by col width.
|
|
#
|
|
TEST=test520
|
|
STATUSTEXT="520 Group By Increasing Width: "
|
|
|
|
if [ -z "$MYSQLCMD" ]; then
|
|
MYSQLCMD="/usr/local/Calpont/mysql/bin/mysql --defaults-file=/usr/local/Calpont/mysql/my.cnf -u root"
|
|
export MYSQLCMD
|
|
fi
|
|
|
|
# Default the status to Failed.
|
|
echo "$STATUSTEXT Incomplete" > $TEST.status
|
|
|
|
cd $TEST
|
|
./go520.sh
|
|
cd ..
|
|
|
|
#
|
|
# Populate the .status file.
|
|
#
|
|
echo "$STATUSTEXT $(cat $TEST/status.txt)" > $TEST.status
|
|
|
|
cat $TEST.status
|