1
0
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:
benthompson15
2020-06-23 13:51:36 -05:00
parent 410cf29ff2
commit eac7dab096
64 changed files with 169 additions and 165 deletions

View File

@ -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;