You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
chore(codestyle): mark virtual methods as override
This commit is contained in:
committed by
Leonid Fedorov
parent
ad80ab40aa
commit
0ab03c7258
@ -115,13 +115,7 @@ EMCasualPartition_struct::EMCasualPartition_struct()
|
||||
isValid = CP_INVALID;
|
||||
}
|
||||
|
||||
EMCasualPartition_struct::EMCasualPartition_struct(const int64_t lo, const int64_t hi, const int32_t seqNum,
|
||||
const char status)
|
||||
: sequenceNum(seqNum), isValid(status), loVal(lo), hiVal(hi)
|
||||
{
|
||||
}
|
||||
|
||||
EMCasualPartition_struct::EMCasualPartition_struct(const int64_t lo, const int64_t hi, const int32_t seqNum)
|
||||
EMCasualPartition_struct::EMCasualPartition_struct(int64_t lo, int64_t hi, int32_t seqNum)
|
||||
{
|
||||
loVal = lo;
|
||||
hiVal = hi;
|
||||
@ -129,8 +123,13 @@ EMCasualPartition_struct::EMCasualPartition_struct(const int64_t lo, const int64
|
||||
isValid = CP_INVALID;
|
||||
}
|
||||
|
||||
EMCasualPartition_struct::EMCasualPartition_struct(const int128_t bigLo, const int128_t bigHi,
|
||||
const int32_t seqNum)
|
||||
EMCasualPartition_struct::EMCasualPartition_struct(const int64_t lo, const int64_t hi, const int32_t seqNum,
|
||||
const char status)
|
||||
: sequenceNum(seqNum), isValid(status), loVal(lo), hiVal(hi)
|
||||
{
|
||||
}
|
||||
|
||||
EMCasualPartition_struct::EMCasualPartition_struct(const int128_t bigLo, const int128_t bigHi, int32_t seqNum)
|
||||
{
|
||||
bigLoVal = bigLo;
|
||||
bigHiVal = bigHi;
|
||||
@ -261,7 +260,7 @@ ExtentMapRBTreeImpl::ExtentMapRBTreeImpl(unsigned key, off_t size, bool readOnly
|
||||
boost::mutex FreeListImpl::fInstanceMutex;
|
||||
|
||||
/*static*/
|
||||
FreeListImpl* FreeListImpl::fInstance = 0;
|
||||
FreeListImpl* FreeListImpl::fInstance = nullptr;
|
||||
|
||||
/*static*/
|
||||
FreeListImpl* FreeListImpl::makeFreeListImpl(unsigned key, off_t size, bool readOnly)
|
||||
|
Reference in New Issue
Block a user