1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-10-31 18:30:33 +03:00

MCOL-939 Moved columnstore version information to columnstoreversion.h for 1.1.X

This commit is contained in:
Roman Nozdrin
2017-12-12 22:53:33 +03:00
parent 2ed4bc2e72
commit bea47cc657
34 changed files with 53 additions and 2125 deletions

View File

@@ -27,6 +27,7 @@
#include <boost/filesystem.hpp>
#include "columnstoreversion.h"
#include "processmanager.h"
#include "installdir.h"
@@ -507,24 +508,7 @@ static void startMgrProcessThread()
log.writeLog(__LINE__, "startMgrProcessThread launched", LOG_TYPE_DEBUG);
//get calpont software version and release
SystemSoftware systemsoftware;
string softwareVersion;
string softwareRelease;
try
{
oam.getSystemSoftware(systemsoftware);
softwareVersion = systemsoftware.Version;
softwareRelease = systemsoftware.Release;
}
catch (exception& e) {
cout << endl << "ProcMon Construct Error reading getSystemSoftware = " << e.what() << endl;
exit(-1);
}
string localSoftwareInfo = softwareVersion + softwareRelease;
string localSoftwareInfo = columnstore_version + columnstore_release;
//get systemStartupOffline
string systemStartupOffline = "n";
try {