1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-18 20:42:02 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/qaftest2/.svn/tmp/test702.sh.tmp
2016-01-06 14:08:59 -06:00

21 lines
505 B
Bash

#!/bin/bash
#
# Test 702. TPCH 100 extent map validation.
#
TEST=test702
STATUSTEXT="702 Import tpch100 EM validation : "
source ../scripts/extentMapValidation.sh
# Validate the extent map min and max values against the reference log.
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