1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-27 21:01:50 +03:00

MCOL-4330 dev Refresh shared memory

If the plugin is restarted after the system is running, it's possible to have stale references to shared memory. This patch deletes those references so the next time they're used, just-in-time initialization will get the latest.
This commit is contained in:
David Hall
2020-10-01 18:19:03 -05:00
parent 1f1ce5bf07
commit 951a6abe85
6 changed files with 46 additions and 11 deletions

View File

@ -70,7 +70,7 @@ using namespace oam;
namespace BRM
{
DBRM::DBRM(bool noBRMinit) throw() : fDebug(false)
DBRM::DBRM(bool noBRMinit) : fDebug(false)
{
if (!noBRMinit)
{
@ -1751,7 +1751,7 @@ unsigned DBRM::getExtentRows() throw()
}
int DBRM::getExtents(int OID, std::vector<struct EMEntry>& entries,
bool sorted, bool notFoundErr, bool incOutOfService) throw()
bool sorted, bool notFoundErr, bool incOutOfService)
{
#ifdef BRM_INFO