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
chore(codestyle): mark virtual methods as override
This commit is contained in:
committed by
Leonid Fedorov
parent
6001db44ab
commit
5556d818f8
@ -66,7 +66,7 @@ typedef boost::shared_ptr<BatchPrimitiveProcessor> SBPP;
|
||||
|
||||
class scalar_exception : public std::exception
|
||||
{
|
||||
const char* what() const throw()
|
||||
const char* what() const noexcept override
|
||||
{
|
||||
return "Not a scalar subquery.";
|
||||
}
|
||||
@ -231,7 +231,7 @@ class BatchPrimitiveProcessor
|
||||
/* Common space for primitive data */
|
||||
alignas(utils::MAXCOLUMNWIDTH) uint8_t blockData[BLOCK_SIZE * utils::MAXCOLUMNWIDTH];
|
||||
uint8_t blockDataAux[BLOCK_SIZE * execplan::AUX_COL_WIDTH];
|
||||
std::unique_ptr<uint8_t[], utils::AlignedDeleter> outputMsg;
|
||||
std::unique_ptr<uint8_t[], utils::AlignedDeleter> outputMsg;
|
||||
uint32_t outMsgSize;
|
||||
|
||||
std::vector<SCommand> filterSteps;
|
||||
|
Reference in New Issue
Block a user