From a6f877351128aab179637a3bffc4301c0fc7d139 Mon Sep 17 00:00:00 2001 From: david hill Date: Thu, 19 May 2016 09:24:39 -0500 Subject: [PATCH] change engine --- oam/install_scripts/post-mysql-install | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; }