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
MCOL-3941 Ninja now builds MCS.
Generated files in utils/loggingcpp/ are now moved into bin dir.
This commit is contained in:
@ -102,6 +102,8 @@ void AutoincrementManager::resetSequence(uint32_t oid, uint64_t value)
|
||||
it->second.value = value;
|
||||
}
|
||||
|
||||
const uint32_t AutoincrementManager::lockTime = 30;
|
||||
|
||||
void AutoincrementManager::getLock(uint32_t oid)
|
||||
{
|
||||
boost::mutex::scoped_lock lk(lock);
|
||||
|
@ -54,7 +54,7 @@ public:
|
||||
EXPORT void deleteSequence(uint32_t OID);
|
||||
|
||||
private:
|
||||
static const uint32_t lockTime = 30; // 30 seconds
|
||||
static const uint32_t lockTime; // 30 seconds
|
||||
struct sequence
|
||||
{
|
||||
sequence() : value(0), overflow(0) { }
|
||||
|
Reference in New Issue
Block a user