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
MCOL-4030: first commit of warning removals unneed const and missing virtual dtors.
This commit is contained in:
@ -186,7 +186,7 @@ public:
|
||||
* object on the PM.
|
||||
* @return A "unique" uint32_t.
|
||||
*/
|
||||
const uint32_t getUnique32();
|
||||
uint32_t getUnique32();
|
||||
|
||||
/** @brief Returns the number of active transactions. Only useful in testing.
|
||||
*
|
||||
@ -206,8 +206,8 @@ public:
|
||||
|
||||
std::string getTxnIDFilename() const;
|
||||
|
||||
const bool checkActiveTransaction(const SID sessionId, bool& bIsDbrmUp, BRM::SIDTIDEntry& blocker);
|
||||
const bool isTransactionActive(const SID sessionId, bool& bIsDbrmUp);
|
||||
bool checkActiveTransaction(const SID sessionId, bool& bIsDbrmUp, BRM::SIDTIDEntry& blocker);
|
||||
bool isTransactionActive(const SID sessionId, bool& bIsDbrmUp);
|
||||
|
||||
private:
|
||||
BRM::DBRM dbrm;
|
||||
|
Reference in New Issue
Block a user