You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
16 lines
403 B
Bash
Executable File
16 lines
403 B
Bash
Executable File
cat $1/m*log | grep -v sec > mdiff1.txt
|
|
cat baseline/m*log | grep -v sec > mdiff2.txt
|
|
|
|
diff mdiff1.txt mdiff2.txt > mdiff.txt
|
|
lines=`cat mdiff.txt | wc -l`
|
|
if [ $lines -eq 0 ]
|
|
then
|
|
echo "DML/DDL Validation : Success"
|
|
rm -f mdiff1.txt
|
|
rm -f mdiff2.txt
|
|
rm -f mdiff.txt
|
|
else
|
|
echo "DML/DDL Validation : Results did not match! Check mdiff.txt for differences."
|
|
fi
|
|
|