You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
changes
This commit is contained in:
@ -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 ma=/usr/local/MariaDB/Columnstore/bin/mcsadmin
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -680,7 +680,7 @@ int main(int argc, char *argv[])
|
||||
sm.updateSNMPD("parentOAMIPStub", parentOAMModuleIPAddr);
|
||||
}
|
||||
|
||||
string idbstartcmd = installDir + "/bin/infinidb start";
|
||||
string idbstartcmd = installDir + "/bin/columnstore start";
|
||||
if ( IserverTypeInstall != oam::INSTALL_COMBINE_DM_UM_PM ||
|
||||
performancemodulelist.size() > 1 ) {
|
||||
//
|
||||
@ -822,7 +822,7 @@ int main(int argc, char *argv[])
|
||||
//
|
||||
|
||||
//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
|
||||
mysqlSetup();
|
||||
|
Reference in New Issue
Block a user