1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +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

@ -1,4 +1,4 @@
# InfiniDB Alias Commands # MariaDB Columnstore Alias Commands
# #
alias mcsmysql='/usr/local/MariaDB/Columnstore/mysql/bin/mysql --defaults-file=/usr/local/MariaDB/Columnstore/mysql/my.cnf -u root' alias mcsmysql='/usr/local/MariaDB/Columnstore/mysql/bin/mysql --defaults-file=/usr/local/MariaDB/Columnstore/mysql/my.cnf -u root'
alias ma=/usr/local/MariaDB/Columnstore/bin/mcsadmin alias ma=/usr/local/MariaDB/Columnstore/bin/mcsadmin

View File

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

View File

@ -680,7 +680,7 @@ int main(int argc, char *argv[])
sm.updateSNMPD("parentOAMIPStub", parentOAMModuleIPAddr); sm.updateSNMPD("parentOAMIPStub", parentOAMModuleIPAddr);
} }
string idbstartcmd = installDir + "/bin/infinidb start"; string idbstartcmd = installDir + "/bin/columnstore start";
if ( IserverTypeInstall != oam::INSTALL_COMBINE_DM_UM_PM || if ( IserverTypeInstall != oam::INSTALL_COMBINE_DM_UM_PM ||
performancemodulelist.size() > 1 ) { performancemodulelist.size() > 1 ) {
// //
@ -822,7 +822,7 @@ int main(int argc, char *argv[])
// //
//run the mysql / mysqld setup scripts //run the mysql / mysqld setup scripts
cout << endl << "Running the Infinidb MySQL setup scripts" << endl << endl; cout << endl << "Running the MariaDB Columnstore MySQL setup scripts" << endl << endl;
// call the mysql setup scripts // call the mysql setup scripts
mysqlSetup(); mysqlSetup();