You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-09-01 01:22:04 +03:00
mcol-943
This commit is contained in:
@@ -4918,6 +4918,12 @@ int processCommand(string* arguments)
|
||||
|
||||
case 46: // enableReplication
|
||||
{
|
||||
if ( SingleServerInstall == "y" ) {
|
||||
// exit out since not on single-server install
|
||||
cout << endl << "**** enableReplication Failed : not supported on a Single-Server type installs " << endl;
|
||||
break;
|
||||
}
|
||||
|
||||
string MySQLRep;
|
||||
try {
|
||||
oam.getSystemConfig("MySQLRep", MySQLRep);
|
||||
@@ -5888,6 +5894,12 @@ int processCommand(string* arguments)
|
||||
|
||||
case 51: // disableReplication
|
||||
{
|
||||
if ( SingleServerInstall == "y" ) {
|
||||
// exit out since not on single-server install
|
||||
cout << endl << "**** disableReplication Failed : not supported on a Single-Server type installs " << endl;
|
||||
break;
|
||||
}
|
||||
|
||||
string MySQLRep;
|
||||
try {
|
||||
oam.getSystemConfig("MySQLRep", MySQLRep);
|
||||
|
Reference in New Issue
Block a user