1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +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

@ -130,7 +130,7 @@ public:
/**
* @brief lbid requested
**/
const BRM::LBID_t Lbid() const
BRM::LBID_t Lbid() const
{
return fLBID;
}
@ -146,17 +146,17 @@ public:
/**
* @brief VBBM flag of the LBID/Ver
**/
const bool Flg() const
bool Flg() const
{
return fFlg;
}
const BRM::VER_t Txn() const
BRM::VER_t Txn() const
{
return fTxn;
}
const int CompType() const
int CompType() const
{
return fCompType;
}
@ -164,7 +164,7 @@ public:
/**
* @brief number of blocks requested
**/
const uint32_t BlocksRequested() const
uint32_t BlocksRequested() const
{
return fLength;
}
@ -180,11 +180,11 @@ public:
/**
* @brief number of blocks read from disk
**/
const uint32_t BlocksRead() const
uint32_t BlocksRead() const
{
return fblksRead;
}
const uint32_t BlocksLoaded() const
uint32_t BlocksLoaded() const
{
return fblksLoaded;
}