1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-09-01 01:22:04 +03:00
This commit is contained in:
david hill
2017-10-20 16:40:00 -05:00
parent 5c34be958b
commit 9d0bb3174b
9 changed files with 155 additions and 26 deletions

View File

@@ -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);