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
Reformat all code to coding standard
This commit is contained in:
616
dbcon/execplan/aggregatecolumn.h
Executable file → Normal file
616
dbcon/execplan/aggregatecolumn.h
Executable file → Normal file
@ -29,14 +29,16 @@
|
||||
#include "calpontselectexecutionplan.h"
|
||||
#include "returnedcolumn.h"
|
||||
|
||||
namespace messageqcpp {
|
||||
namespace messageqcpp
|
||||
{
|
||||
class ByteStream;
|
||||
}
|
||||
|
||||
/**
|
||||
* Namespace
|
||||
*/
|
||||
namespace execplan {
|
||||
namespace execplan
|
||||
{
|
||||
|
||||
/**
|
||||
* @brief A class to represent a aggregate return column
|
||||
@ -44,333 +46,379 @@ namespace execplan {
|
||||
* This class is a specialization of class ReturnedColumn that
|
||||
* handles an aggregate function call (e.g., SUM, COUNT, MIN, MAX).
|
||||
*/
|
||||
class AggregateColumn : public ReturnedColumn {
|
||||
class AggregateColumn : public ReturnedColumn
|
||||
{
|
||||
|
||||
public:
|
||||
/**
|
||||
* AggOp enum
|
||||
*/
|
||||
enum AggOp
|
||||
{
|
||||
NOOP = 0,
|
||||
COUNT_ASTERISK,
|
||||
COUNT,
|
||||
SUM,
|
||||
AVG,
|
||||
MIN,
|
||||
MAX,
|
||||
CONSTANT,
|
||||
DISTINCT_COUNT,
|
||||
DISTINCT_SUM,
|
||||
DISTINCT_AVG,
|
||||
STDDEV_POP,
|
||||
STDDEV_SAMP,
|
||||
VAR_POP,
|
||||
VAR_SAMP,
|
||||
BIT_AND,
|
||||
BIT_OR,
|
||||
BIT_XOR,
|
||||
GROUP_CONCAT,
|
||||
UDAF
|
||||
};
|
||||
/**
|
||||
* AggOp enum
|
||||
*/
|
||||
enum AggOp
|
||||
{
|
||||
NOOP = 0,
|
||||
COUNT_ASTERISK,
|
||||
COUNT,
|
||||
SUM,
|
||||
AVG,
|
||||
MIN,
|
||||
MAX,
|
||||
CONSTANT,
|
||||
DISTINCT_COUNT,
|
||||
DISTINCT_SUM,
|
||||
DISTINCT_AVG,
|
||||
STDDEV_POP,
|
||||
STDDEV_SAMP,
|
||||
VAR_POP,
|
||||
VAR_SAMP,
|
||||
BIT_AND,
|
||||
BIT_OR,
|
||||
BIT_XOR,
|
||||
GROUP_CONCAT,
|
||||
UDAF
|
||||
};
|
||||
|
||||
/**
|
||||
* typedef
|
||||
*/
|
||||
typedef std::vector<SRCP> ColumnList;
|
||||
/*
|
||||
* Constructors
|
||||
*/
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn();
|
||||
/**
|
||||
* typedef
|
||||
*/
|
||||
typedef std::vector<SRCP> ColumnList;
|
||||
/*
|
||||
* Constructors
|
||||
*/
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn();
|
||||
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn(const uint32_t sessionID);
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn(const uint32_t sessionID);
|
||||
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn(const AggOp aggop, ReturnedColumn* parm, const uint32_t sessionID=0);
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn(const AggOp aggop, ReturnedColumn* parm, const uint32_t sessionID = 0);
|
||||
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn(const AggOp aggop, const std::string& content, const uint32_t sessionID=0);
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn(const AggOp aggop, const std::string& content, const uint32_t sessionID = 0);
|
||||
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn(const std::string& functionName, ReturnedColumn* parm, const uint32_t sessionID=0);
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn(const std::string& functionName, ReturnedColumn* parm, const uint32_t sessionID = 0);
|
||||
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn(const std::string& functionName, const std::string& content, const uint32_t sessionID=0);
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn(const std::string& functionName, const std::string& content, const uint32_t sessionID = 0);
|
||||
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn( const AggregateColumn& rhs, const uint32_t sessionID=0 );
|
||||
/**
|
||||
* ctor
|
||||
*/
|
||||
AggregateColumn( const AggregateColumn& rhs, const uint32_t sessionID = 0 );
|
||||
|
||||
/**
|
||||
* Destructors
|
||||
*/
|
||||
virtual ~AggregateColumn() { }
|
||||
/**
|
||||
* Destructors
|
||||
*/
|
||||
virtual ~AggregateColumn() { }
|
||||
|
||||
/**
|
||||
* Accessor Methods
|
||||
*/
|
||||
virtual const std::string functionName() const
|
||||
{
|
||||
return fFunctionName;
|
||||
}
|
||||
/**
|
||||
* Accessor Methods
|
||||
*/
|
||||
virtual const std::string functionName() const
|
||||
{
|
||||
return fFunctionName;
|
||||
}
|
||||
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
virtual void functionName(const std::string& functionName)
|
||||
{
|
||||
fFunctionName = functionName;
|
||||
}
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
virtual void functionName(const std::string& functionName)
|
||||
{
|
||||
fFunctionName = functionName;
|
||||
}
|
||||
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
virtual const uint8_t aggOp() const {return fAggOp;}
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
virtual void aggOp(const uint8_t aggOp) {fAggOp = aggOp;}
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
virtual const uint8_t aggOp() const
|
||||
{
|
||||
return fAggOp;
|
||||
}
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
virtual void aggOp(const uint8_t aggOp)
|
||||
{
|
||||
fAggOp = aggOp;
|
||||
}
|
||||
|
||||
/** get function parms
|
||||
*
|
||||
* set the function parms from this object
|
||||
*/
|
||||
virtual const SRCP functionParms() const
|
||||
{
|
||||
return fFunctionParms;
|
||||
}
|
||||
/** get function parms
|
||||
*
|
||||
* set the function parms from this object
|
||||
*/
|
||||
virtual const SRCP functionParms() const
|
||||
{
|
||||
return fFunctionParms;
|
||||
}
|
||||
|
||||
/** set function parms
|
||||
*
|
||||
* set the function parms for this object
|
||||
*/
|
||||
virtual void functionParms(const SRCP& functionParms)
|
||||
{
|
||||
fFunctionParms = functionParms;
|
||||
}
|
||||
/** set function parms
|
||||
*
|
||||
* set the function parms for this object
|
||||
*/
|
||||
virtual void functionParms(const SRCP& functionParms)
|
||||
{
|
||||
fFunctionParms = functionParms;
|
||||
}
|
||||
|
||||
/** return a copy of this pointer
|
||||
*
|
||||
* deep copy of this pointer and return the copy
|
||||
*/
|
||||
inline virtual AggregateColumn* clone() const
|
||||
{
|
||||
return new AggregateColumn (*this);
|
||||
}
|
||||
/** return a copy of this pointer
|
||||
*
|
||||
* deep copy of this pointer and return the copy
|
||||
*/
|
||||
inline virtual AggregateColumn* clone() const
|
||||
{
|
||||
return new AggregateColumn (*this);
|
||||
}
|
||||
|
||||
/**
|
||||
* table alias name
|
||||
*/
|
||||
virtual const std::string tableAlias() const { return fTableAlias; }
|
||||
/**
|
||||
* table alias name
|
||||
*/
|
||||
virtual void tableAlias (const std::string& tableAlias) { fTableAlias = tableAlias; }
|
||||
/**
|
||||
* table alias name
|
||||
*/
|
||||
virtual const std::string tableAlias() const
|
||||
{
|
||||
return fTableAlias;
|
||||
}
|
||||
/**
|
||||
* table alias name
|
||||
*/
|
||||
virtual void tableAlias (const std::string& tableAlias)
|
||||
{
|
||||
fTableAlias = tableAlias;
|
||||
}
|
||||
|
||||
/**
|
||||
* ASC flag
|
||||
*/
|
||||
inline virtual const bool asc() const { return fAsc; }
|
||||
/**
|
||||
* ASC flag
|
||||
*/
|
||||
inline virtual void asc(const bool asc) { fAsc = asc; }
|
||||
/**
|
||||
* ASC flag
|
||||
*/
|
||||
inline virtual const bool asc() const
|
||||
{
|
||||
return fAsc;
|
||||
}
|
||||
/**
|
||||
* ASC flag
|
||||
*/
|
||||
inline virtual void asc(const bool asc)
|
||||
{
|
||||
fAsc = asc;
|
||||
}
|
||||
|
||||
/**
|
||||
* fData: SQL representation of this object
|
||||
*/
|
||||
virtual const std::string data() const { return fData; }
|
||||
/**
|
||||
* fData: SQL representation of this object
|
||||
*/
|
||||
virtual void data(const std::string& data) { fData = data; }
|
||||
/**
|
||||
* fData: SQL representation of this object
|
||||
*/
|
||||
virtual const std::string data() const
|
||||
{
|
||||
return fData;
|
||||
}
|
||||
/**
|
||||
* fData: SQL representation of this object
|
||||
*/
|
||||
virtual void data(const std::string& data)
|
||||
{
|
||||
fData = data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Overloaded stream operator
|
||||
*/
|
||||
virtual const std::string toString() const;
|
||||
/**
|
||||
* Overloaded stream operator
|
||||
*/
|
||||
virtual const std::string toString() const;
|
||||
|
||||
/**
|
||||
* Serialize interface
|
||||
*/
|
||||
virtual void serialize(messageqcpp::ByteStream&) const;
|
||||
/**
|
||||
* Serialize interface
|
||||
*/
|
||||
virtual void unserialize(messageqcpp::ByteStream&);
|
||||
/**
|
||||
* Serialize interface
|
||||
*/
|
||||
virtual void serialize(messageqcpp::ByteStream&) const;
|
||||
/**
|
||||
* Serialize interface
|
||||
*/
|
||||
virtual void unserialize(messageqcpp::ByteStream&);
|
||||
|
||||
/** @brief Do a deep, strict (as opposed to semantic) equivalence test
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
virtual bool operator==(const TreeNode* t) const;
|
||||
/** @brief Do a deep, strict (as opposed to semantic) equivalence test
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
virtual bool operator==(const TreeNode* t) const;
|
||||
|
||||
/** @brief Do a deep, strict (as opposed to semantic) equivalence test
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
virtual bool operator==(const AggregateColumn& t) const;
|
||||
/** @brief Do a deep, strict (as opposed to semantic) equivalence test
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
virtual bool operator==(const AggregateColumn& t) const;
|
||||
|
||||
/** @brief Do a deep, strict (as opposed to semantic) equivalence test
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
virtual bool operator!=(const TreeNode* t) const;
|
||||
/** @brief Do a deep, strict (as opposed to semantic) equivalence test
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
virtual bool operator!=(const TreeNode* t) const;
|
||||
|
||||
/** @brief Do a deep, strict (as opposed to semantic) equivalence test
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
virtual bool operator!=(const AggregateColumn& t) const;
|
||||
/** @brief Do a deep, strict (as opposed to semantic) equivalence test
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
virtual bool operator!=(const AggregateColumn& t) const;
|
||||
|
||||
/** @brief push back arg to group by column list*/
|
||||
virtual void addGroupByCol(SRCP ac) {fGroupByColList.push_back(ac);}
|
||||
/** @brief push back arg to group by column list*/
|
||||
virtual void addGroupByCol(SRCP ac)
|
||||
{
|
||||
fGroupByColList.push_back(ac);
|
||||
}
|
||||
|
||||
/** @brief push back arg to project by column list*/
|
||||
virtual void addProjectCol(SRCP ac) {fProjectColList.push_back(ac);}
|
||||
/** @brief push back arg to project by column list*/
|
||||
virtual void addProjectCol(SRCP ac)
|
||||
{
|
||||
fProjectColList.push_back(ac);
|
||||
}
|
||||
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
virtual const ColumnList& groupByColList() const { return fGroupByColList;}
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
virtual const ColumnList& projectColList() const { return fProjectColList;}
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
virtual const ColumnList& groupByColList() const
|
||||
{
|
||||
return fGroupByColList;
|
||||
}
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
virtual const ColumnList& projectColList() const
|
||||
{
|
||||
return fProjectColList;
|
||||
}
|
||||
|
||||
/** @brief constant argument for aggregate with constant */
|
||||
inline const SRCP constCol() const { return fConstCol; }
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
inline void constCol(const SRCP& constCol) { fConstCol = constCol; }
|
||||
/** @brief constant argument for aggregate with constant */
|
||||
inline const SRCP constCol() const
|
||||
{
|
||||
return fConstCol;
|
||||
}
|
||||
/**
|
||||
* accessor
|
||||
*/
|
||||
inline void constCol(const SRCP& constCol)
|
||||
{
|
||||
fConstCol = constCol;
|
||||
}
|
||||
|
||||
/**
|
||||
* convert an aggregate name to an AggOp enum
|
||||
*/
|
||||
static AggOp agname2num(const std::string&);
|
||||
/**
|
||||
* convert an aggregate name to an AggOp enum
|
||||
*/
|
||||
static AggOp agname2num(const std::string&);
|
||||
|
||||
virtual bool hasAggregate();
|
||||
virtual bool hasWindowFunc() {return false;}
|
||||
virtual bool hasAggregate();
|
||||
virtual bool hasWindowFunc()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
protected:
|
||||
std::string fFunctionName; // deprecated field
|
||||
uint8_t fAggOp;
|
||||
std::string fFunctionName; // deprecated field
|
||||
uint8_t fAggOp;
|
||||
|
||||
/**
|
||||
* A ReturnedColumn objects that are the arguments to this function
|
||||
*/
|
||||
SRCP fFunctionParms;
|
||||
/**
|
||||
* A ReturnedColumn objects that are the arguments to this function
|
||||
*/
|
||||
SRCP fFunctionParms;
|
||||
|
||||
/** table alias
|
||||
* A string to represent table alias name which contains this column
|
||||
*/
|
||||
std:: string fTableAlias;
|
||||
/** table alias
|
||||
* A string to represent table alias name which contains this column
|
||||
*/
|
||||
std:: string fTableAlias;
|
||||
|
||||
/**
|
||||
* Flag to indicate asc or desc order for order by column
|
||||
*/
|
||||
bool fAsc;
|
||||
std::string fData;
|
||||
ColumnList fGroupByColList;
|
||||
ColumnList fProjectColList;
|
||||
SRCP fConstCol;
|
||||
/**
|
||||
* Flag to indicate asc or desc order for order by column
|
||||
*/
|
||||
bool fAsc;
|
||||
std::string fData;
|
||||
ColumnList fGroupByColList;
|
||||
ColumnList fProjectColList;
|
||||
SRCP fConstCol;
|
||||
|
||||
public:
|
||||
/***********************************************************
|
||||
* F&E framework *
|
||||
***********************************************************/
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual const std::string& getStrVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getStrVal();
|
||||
}
|
||||
/***********************************************************
|
||||
* F&E framework *
|
||||
***********************************************************/
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual const std::string& getStrVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getStrVal();
|
||||
}
|
||||
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual int64_t getIntVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getIntVal();
|
||||
}
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual int64_t getIntVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getIntVal();
|
||||
}
|
||||
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual uint64_t getUintVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getUintVal();
|
||||
}
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual uint64_t getUintVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getUintVal();
|
||||
}
|
||||
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual float getFloatVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getFloatVal();
|
||||
}
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual float getFloatVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getFloatVal();
|
||||
}
|
||||
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual double getDoubleVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getDoubleVal();
|
||||
}
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual double getDoubleVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getDoubleVal();
|
||||
}
|
||||
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual IDB_Decimal getDecimalVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getDecimalVal();
|
||||
}
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual int32_t getDateIntVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getDateIntVal();
|
||||
}
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual int64_t getDatetimeIntVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getDatetimeIntVal();
|
||||
}
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual IDB_Decimal getDecimalVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getDecimalVal();
|
||||
}
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual int32_t getDateIntVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getDateIntVal();
|
||||
}
|
||||
/**
|
||||
* F&E
|
||||
*/
|
||||
virtual int64_t getDatetimeIntVal(rowgroup::Row& row, bool& isNull)
|
||||
{
|
||||
evaluate(row, isNull);
|
||||
return TreeNode::getDatetimeIntVal();
|
||||
}
|
||||
|
||||
private:
|
||||
void evaluate(rowgroup::Row& row, bool& isNull);
|
||||
void evaluate(rowgroup::Row& row, bool& isNull);
|
||||
};
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user