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:
@ -773,7 +773,7 @@ void BatchPrimitiveProcessor::addToJoiner(ByteStream& bs)
|
||||
// TODO: write an RGData fcn to let it interpret data within a ByteStream to avoid
|
||||
// the extra copying.
|
||||
offTheWire.deserialize(bs);
|
||||
mutex::scoped_lock lk(smallSideDataLocks[joinerNum]);
|
||||
boost::mutex::scoped_lock lk(smallSideDataLocks[joinerNum]);
|
||||
smallSide.setData(&smallSideRowData[joinerNum]);
|
||||
smallSide.append(offTheWire, startPos);
|
||||
|
||||
@ -790,7 +790,7 @@ void BatchPrimitiveProcessor::addToJoiner(ByteStream& bs)
|
||||
{
|
||||
joblist::ElementType *et = (joblist::ElementType*) bs.buf();
|
||||
|
||||
mutex::scoped_lock lk(addToJoinerLocks[0][0]);
|
||||
boost::mutex::scoped_lock lk(addToJoinerLocks[0][0]);
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
// cout << "BPP: adding <" << et[i].first << ", " << et[i].second << "> to Joiner\n";
|
||||
|
Reference in New Issue
Block a user