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
2018-10-23 10:02:45 -05:00
parent e9b9cffa45
commit 0ec13befa7

View File

@ -9190,6 +9190,22 @@ void printSystemStatus()
if ( MySQLRep == "y" )
cout << "MariaDB ColumnStore Replication Feature is enabled" << endl << endl;
//display Distributed Install feature
if ( SingleServerInstall == "n" )
{
string DistributedInstall;
try
{
oam.getSystemConfig("DistributedInstall", DistributedInstall);
if ( DistributedInstall == "y" )
cout << "MariaDB ColumnStore set for Distributed Install" << endl << endl;
else
cout << "MariaDB ColumnStore set for Non-Distributed Install" << endl << endl;
}
catch (...) {}
}
}
catch (exception& e)
{