1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-25 20:23:16 +03:00

MCOL-787 - merged code from 1.0.10

This commit is contained in:
David Hill
2017-07-27 10:26:43 -05:00
parent 478b6ff5fa
commit f17c2e1820
2 changed files with 29 additions and 13 deletions

View File

@@ -6955,9 +6955,14 @@ void startSystemThread(oam::DeviceNetworkList Devicenetworklist)
processManager.setSystemState(rtn);
}
//run command to build system table if they don't already exist
processManager.buildSystemTables("pm1");
//run command to build system table if they don't already exist
sleep(5);
int ret = processManager.buildSystemTables("pm1");
if (ret == oam::API_SUCCESS )
log.writeLog(__LINE__, "System Catalog Successfully Built by ProcMgr", LOG_TYPE_DEBUG);
else
log.writeLog(__LINE__, "System Catalog Successfully not built by ProcMgr, ret code = " + oam.itoa(ret), LOG_TYPE_DEBUG);
// exit thread
log.writeLog(__LINE__, "startSystemThread Exit", LOG_TYPE_DEBUG);
startsystemthreadStatus = status;