You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
chore(codestyle): mark virtual methods as override
This commit is contained in:
committed by
Leonid Fedorov
parent
ad80ab40aa
commit
0ab03c7258
@ -54,7 +54,7 @@ class MCSAnalyzeTableExecutionPlan : public CalpontExecutionPlan
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~MCSAnalyzeTableExecutionPlan() = default;
|
||||
~MCSAnalyzeTableExecutionPlan() override = default;
|
||||
|
||||
const ReturnedColumnList& returnedCols() const
|
||||
{
|
||||
@ -232,16 +232,16 @@ class MCSAnalyzeTableExecutionPlan : public CalpontExecutionPlan
|
||||
return ((fSessionID & 0x80000000) != 0);
|
||||
}
|
||||
|
||||
virtual void serialize(messageqcpp::ByteStream& bs) const;
|
||||
void serialize(messageqcpp::ByteStream& bs) const override;
|
||||
|
||||
virtual void unserialize(messageqcpp::ByteStream& bs);
|
||||
void unserialize(messageqcpp::ByteStream& bs) override;
|
||||
|
||||
// TODO: Why do we need this?
|
||||
virtual bool operator==(const CalpontExecutionPlan* t) const
|
||||
bool operator==(const CalpontExecutionPlan* t) const override
|
||||
{
|
||||
return false;
|
||||
}
|
||||
virtual bool operator!=(const CalpontExecutionPlan* t) const
|
||||
bool operator!=(const CalpontExecutionPlan* t) const override
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user