You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-3251. Changed the sig of buildOidFileName as per feedback.
This commit is contained in:
@ -1359,7 +1359,7 @@ ioManager::ioManager(FileBufferMgr& fbm,
|
|||||||
go();
|
go();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ioManager::buildOidFileName(const BRM::OID_t oid, uint16_t dbRoot, const uint16_t partNum, const uint32_t segNum, char* file_name)
|
void ioManager::buildOidFileName(const BRM::OID_t oid, uint16_t dbRoot, const uint32_t partNum, const uint16_t segNum, char* file_name)
|
||||||
{
|
{
|
||||||
// when it's a request for the version buffer, the dbroot comes in as 0 for legacy reasons
|
// when it's a request for the version buffer, the dbroot comes in as 0 for legacy reasons
|
||||||
if (dbRoot == 0 && oid < 1000)
|
if (dbRoot == 0 && oid < 1000)
|
||||||
|
@ -84,8 +84,8 @@ public:
|
|||||||
|
|
||||||
void buildOidFileName(const BRM::OID_t oid,
|
void buildOidFileName(const BRM::OID_t oid,
|
||||||
uint16_t dbRoot,
|
uint16_t dbRoot,
|
||||||
const uint16_t partNum,
|
const uint32_t partNum,
|
||||||
const uint32_t segNum,
|
const uint16_t segNum,
|
||||||
char* file_name);
|
char* file_name);
|
||||||
|
|
||||||
const uint32_t getExtentRows()
|
const uint32_t getExtentRows()
|
||||||
|
Reference in New Issue
Block a user