You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
Merge pull request #1004 from pleblanc1976/runtime-disable-oam
Runtime disable oam
This commit is contained in:
committed by
Patrick LeBlanc
parent
a7724ac3c7
commit
5ff131e726
@@ -76,10 +76,7 @@
|
||||
#include <thread>
|
||||
#include <condition_variable>
|
||||
|
||||
#if defined(SKIP_OAM_INIT)
|
||||
#include "dbrm.h"
|
||||
#endif
|
||||
|
||||
|
||||
namespace
|
||||
{
|
||||
@@ -1646,11 +1643,12 @@ int main(int argc, char* argv[])
|
||||
{
|
||||
}
|
||||
}
|
||||
#if defined(SKIP_OAM_INIT)
|
||||
BRM::DBRM *dbrm = new BRM::DBRM();
|
||||
dbrm->setSystemQueryReady(true);
|
||||
delete dbrm;
|
||||
#endif
|
||||
if (getenv("SKIP_OAM_INIT"))
|
||||
{
|
||||
BRM::DBRM *dbrm = new BRM::DBRM();
|
||||
dbrm->setSystemQueryReady(true);
|
||||
delete dbrm;
|
||||
}
|
||||
|
||||
threadpool::ThreadPool exeMgrThreadPool(serverThreads, 0);
|
||||
exeMgrThreadPool.setName("ExeMgrServer");
|
||||
|
Reference in New Issue
Block a user