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/srvswdev11/.svn/text-base/test006.sh.svn-base
2016-01-06 14:08:59 -06:00

32 lines
562 B
Bash

#!/bin/bash
#
# Test 6. Load data infile in one session while selecting counts in another with compression off.
#
# NOTE: Runs as test106 as a repeat run with compressed tables.
TEST=test006
STATUSTEXT="006 Count while loading: "
. ../scripts/common.sh $1
$MYSQLCMD -e "set global infinidb_compression_type=0;"
# Default the status to Failed.
echo "$STATUSTEXT In Progress" > $TEST.status
cd $TEST
./go6.sh
ret=$?
cd ..
#
# Populate the .status file.
#
echo "$STATUSTEXT $(cat $TEST/status.txt)" > $TEST.status
cat $TEST.status
exit $ret