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/qaftest2/.svn/tmp/test704.sh.tmp
2016-01-06 14:08:59 -06:00

21 lines
433 B
Bash

#!/bin/bash
#
# Test 704. TPCH 100 extent map validation.
#
TEST=test704
STATUSTEXT="704 Query tpch100 EM validation : "
source ../scripts/extentMapValidation.sh
validateExtentMap tpch100 editem_cp.$TEST.log
result=$?
if [ $result -eq 0 ]; then
echo "$STATUSTEXT Passed" > $TEST.status
else
echo "$STATUSTEXT Failed (diff editem_cp.log.ref editem_cp.$TEST.log for diffs)" > $TEST.status
fi
cat $TEST.status