1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00
This commit is contained in:
david hill
2016-05-15 13:53:07 -05:00
parent c69f2c9d2f
commit 6a9dbf0e58
3 changed files with 8 additions and 8 deletions

View File

@ -24,24 +24,24 @@ checkForError() {
rm -f /tmp/error.check
#---------------------------------------------------------------------------
# See if engine columnstore exist
# See if engine infinidb exist
#---------------------------------------------------------------------------
echo "checking for engine columnstore..."
echo "checking for engine infinidb..."
$installdir/mysql/bin/mysql \
--defaults-file=$installdir/mysql/my.cnf \
--user=root $pwprompt \
--execute='show engines;' \
calpontsys | grep -i columnstore
calpontsys | grep -i infinidb
#
# Add compressiontype column to SYSCOLUMN if applicable
#
if [ $? -ne 0 ]; then
echo "columnstore doesn't exist"
echo "infinidb doesn't exist"
return 1
fi
echo "columnstore exist"
echo "infinidb exist"
return 0;
}