You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-27 21:01:50 +03:00
Fix: grabEMIndex for loadFromBinaryBlob
This commit is contained in:
@ -1840,6 +1840,7 @@ struct EMBinaryReader
|
||||
void ExtentMap::loadFromBinaryBlob(const char* blob)
|
||||
{
|
||||
grabEMEntryTable(WRITE);
|
||||
grabEMIndex(WRITE);
|
||||
|
||||
try
|
||||
{
|
||||
@ -1847,6 +1848,7 @@ void ExtentMap::loadFromBinaryBlob(const char* blob)
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
releaseEMIndex(WRITE);
|
||||
releaseEMEntryTable(WRITE);
|
||||
throw;
|
||||
}
|
||||
|
Reference in New Issue
Block a user