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/srvalpha2/test812.sh
2016-01-06 14:08:59 -06:00

21 lines
505 B
Bash
Executable File

#!/bin/bash
#
# Test 812. SSB 100 extent map validation.
#
TEST=test812
STATUSTEXT="812 Import ssb100c EM validation : "
source ../scripts/extentMapValidation.sh
# Validate the extent map min and max values against the reference log.
validateExtentMap ssb100c editem_cp.test812.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