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
compilation failure
error: reference to 'mutex' is ambiguous note: candidates are: 'class boost::mutex' note: 'class std::mutex'
This commit is contained in:
@ -1439,7 +1439,7 @@ void ExtentMap::save(const string& filename)
|
||||
/* always returns holding the EM lock, and with the EM seg mapped */
|
||||
void ExtentMap::grabEMEntryTable(OPS op)
|
||||
{
|
||||
mutex::scoped_lock lk(mutex);
|
||||
boost::mutex::scoped_lock lk(mutex);
|
||||
|
||||
if (op == READ)
|
||||
fEMShminfo = fMST.getTable_read(MasterSegmentTable::EMTable);
|
||||
@ -1496,7 +1496,7 @@ void ExtentMap::grabEMEntryTable(OPS op)
|
||||
/* always returns holding the FL lock */
|
||||
void ExtentMap::grabFreeList(OPS op)
|
||||
{
|
||||
mutex::scoped_lock lk(mutex, defer_lock);
|
||||
boost::mutex::scoped_lock lk(mutex, boost::defer_lock);
|
||||
|
||||
if (op == READ)
|
||||
{
|
||||
|
Reference in New Issue
Block a user