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