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: Fix most of the overloaded-virtual warnings.
This commit is contained in:
@ -214,6 +214,7 @@ public:
|
||||
/**
|
||||
* fData: SQL representation of this object
|
||||
*/
|
||||
using ReturnedColumn::data;
|
||||
virtual void data(const std::string& data)
|
||||
{
|
||||
fData = data;
|
||||
@ -245,6 +246,7 @@ public:
|
||||
* Do a deep, strict (as opposed to semantic) equivalence test.
|
||||
* @return true iff every member of t is a duplicate copy of every member of this; false otherwise
|
||||
*/
|
||||
using ReturnedColumn::operator=;
|
||||
virtual bool operator==(const AggregateColumn& t) const;
|
||||
|
||||
/** @brief Do a deep, strict (as opposed to semantic) equivalence test
|
||||
@ -259,6 +261,7 @@ public:
|
||||
* Do a deep, strict (as opposed to semantic) equivalence test.
|
||||
* @return false iff every member of t is a duplicate copy of every member of this; true otherwise
|
||||
*/
|
||||
using ReturnedColumn::operator!=;
|
||||
virtual bool operator!=(const AggregateColumn& t) const;
|
||||
|
||||
/** @brief push back arg to group by column list*/
|
||||
@ -306,6 +309,7 @@ public:
|
||||
*/
|
||||
static AggOp agname2num(const std::string&);
|
||||
|
||||
using ReturnedColumn::hasAggregate;
|
||||
virtual bool hasAggregate();
|
||||
virtual bool hasWindowFunc()
|
||||
{
|
||||
|
Reference in New Issue
Block a user