1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/perf/test608.sh
2016-01-06 14:08:59 -06:00

46 lines
1.0 KiB
Bash
Executable File

#!/bin/sh
#
# Test 608. Mode 2 import of ssb100cM2.lineorder.
#
TEST=test608
STATUSTEXT="608 Mode 2 Import Ssb100cM2.lineorder : "
DB=ssb100cM2
if [ -z "$MYSQLCMD" ]; then
MYSQLCMD="/usr/local/Calpont/mysql/bin/mysql --defaults-file=/usr/local/Calpont/mysql/my.cnf -u root"
export MYSQLCMD
fi
if [ -z "$PGMPATH" ]; then
PGMPATH="/usr/local/Calpont/bin"
fi
if [ -z "$DATASOURCEPATH" ]; then
DATASOURCEPATH="/root/ssb"
fi
echo "$STATUSTEXT In Progress" > $TEST.status
#
# Import rows into the four dimension tables.
#
table=lineorder
sec1=`date '+%s.%N'`
$PGMPATH/cpimport $DB $table -m2 -l $table.tbl > $TEST.log
sec2=`date '+%s.%N'`
rowRate=`$MYSQLCMD $DB --skip-column-names -e "select format(600037902/($sec2-$sec1), 0);"`
#
# Populate the .status file.
#
errorCount=`grep -i error $TEST.log | wc -l`
if [ $errorCount -gt 0 ]
then
echo "$STATUSTEXT Failed (Check $TEST.log for errors)" > $TEST.status
else
echo "$STATUSTEXT Passed ($rowRate rows per second)" > $TEST.status
fi
cat $TEST.status