From 0ec13befa7052c5f49eaaa8dbf2875bf633f13be Mon Sep 17 00:00:00 2001 From: David Hill Date: Tue, 23 Oct 2018 10:02:45 -0500 Subject: [PATCH] MCOL-520 --- oamapps/mcsadmin/mcsadmin.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/oamapps/mcsadmin/mcsadmin.cpp b/oamapps/mcsadmin/mcsadmin.cpp index a255f5e4b..07ec8f49c 100644 --- a/oamapps/mcsadmin/mcsadmin.cpp +++ b/oamapps/mcsadmin/mcsadmin.cpp @@ -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) {