1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-06-13 16:01:32 +03:00

MCOL-520, missed a line to log an error in the new shm error handling.

This commit is contained in:
Patrick LeBlanc
2018-10-10 14:58:18 -05:00
parent 8a4263f594
commit 6a353b40b5

View File

@ -93,6 +93,7 @@ MasterSegmentTableImpl::MasterSegmentTableImpl(int key, int size)
catch (exception &e) {
ostringstream o;
o << "BRM caught an exception attaching to a shared memory segment (" << keyName << "): " << e.what();
log(o.str());
throw;
}
}