1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Revert "MCOL-1624 mcssystemready() does more testing"

This reverts commit 00ce77b742.
This commit is contained in:
Andrew Hutchings
2018-11-24 21:52:33 +00:00
parent 0789136dcf
commit 61579c7177

View File

@ -2015,7 +2015,6 @@ extern "C"
Oam oam;
DBRM dbrm(true);
SystemStatus systemstatus;
WriteEngine::FileOp fileOp;
try
{
@ -2023,15 +2022,8 @@ extern "C"
if (systemstatus.SystemOpState == ACTIVE
&& dbrm.getSystemReady()
&& dbrm.getSystemQueryReady()
&& fileOp.existsOIDDir(1001))
&& dbrm.getSystemQueryReady())
{
// Test getting system catalogue data from ExeMgr
boost::shared_ptr<execplan::CalpontSystemCatalog> systemCatalogPtr =
execplan::CalpontSystemCatalog::makeCalpontSystemCatalog(0);
systemCatalogPtr->identity(execplan::CalpontSystemCatalog::FE);
systemCatalogPtr->getTableCount();
return 1;
}
}