You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-17 01:02:23 +03:00
Got a basic unit test to work for IOC::read()
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
namespace storagemanager
|
||||
{
|
||||
|
||||
ScopedReadLock::ScopedReadLock(IOCoordinator *i, const std::string &k) : ioc(i), key(k)
|
||||
ScopedReadLock::ScopedReadLock(IOCoordinator *i, const std::string &k) : ioc(i), key(k), locked(false)
|
||||
{
|
||||
lock();
|
||||
}
|
||||
@@ -29,7 +29,7 @@ void ScopedReadLock::unlock()
|
||||
}
|
||||
}
|
||||
|
||||
ScopedWriteLock::ScopedWriteLock(IOCoordinator *i, const std::string &k) : ioc(i), key(k)
|
||||
ScopedWriteLock::ScopedWriteLock(IOCoordinator *i, const std::string &k) : ioc(i), key(k), locked(false)
|
||||
{
|
||||
lock();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user