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
This reverts commit f916e64927
.
This commit is contained in:
@ -86,7 +86,7 @@ uint64_t StringStore::storeString(const uint8_t* data, uint32_t len)
|
||||
return numeric_limits<uint64_t>::max();
|
||||
|
||||
//@bug6065, make StringStore::storeString() thread safe
|
||||
std::unique_lock lk(fMutex, std::defer_lock);
|
||||
boost::mutex::scoped_lock lk(fMutex, boost::defer_lock);
|
||||
|
||||
if (fUseStoreStringMutex)
|
||||
lk.lock();
|
||||
@ -212,7 +212,7 @@ uint32_t UserDataStore::storeUserData(mcsv1sdk::mcsv1Context& context,
|
||||
return numeric_limits<uint32_t>::max();
|
||||
}
|
||||
|
||||
std::unique_lock lk(fMutex, std::defer_lock);
|
||||
boost::mutex::scoped_lock lk(fMutex, boost::defer_lock);
|
||||
|
||||
if (fUseUserDataMutex)
|
||||
lk.lock();
|
||||
|
Reference in New Issue
Block a user