You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +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:
@ -142,7 +142,7 @@ void TupleHashJoinStep::run()
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
mutex::scoped_lock lk(jlLock);
|
||||
boost::mutex::scoped_lock lk(jlLock);
|
||||
|
||||
if (runRan)
|
||||
return;
|
||||
@ -183,7 +183,7 @@ void TupleHashJoinStep::run()
|
||||
|
||||
void TupleHashJoinStep::join()
|
||||
{
|
||||
mutex::scoped_lock lk(jlLock);
|
||||
boost::mutex::scoped_lock lk(jlLock);
|
||||
|
||||
if (joinRan)
|
||||
return;
|
||||
|
Reference in New Issue
Block a user