MiniOB 1
MiniOB is one mini database, helping developers to learn how database works.
|
聚合物理算子 (Vectorized) 更多...
#include <aggregate_vec_physical_operator.h>
类 | |
class | AggregateValues |
Public 成员函数 | |
AggregateVecPhysicalOperator (vector< Expression * > &&expressions) | |
PhysicalOperatorType | type () const override |
RC | open (Trx *trx) override |
RC | next (Chunk &chunk) override |
RC | close () override |
![]() | |
virtual string | name () const |
virtual string | param () const |
bool | is_physical () const override |
bool | is_logical () const override |
virtual PhysicalOperatorType | type () const =0 |
virtual RC | open (Trx *trx)=0 |
virtual RC | next () |
virtual RC | next (Chunk &chunk) |
virtual RC | close ()=0 |
virtual Tuple * | current_tuple () |
virtual RC | tuple_schema (TupleSchema &schema) const |
void | add_child (unique_ptr< PhysicalOperator > oper) |
vector< unique_ptr< PhysicalOperator > > & | children () |
![]() | |
virtual OpType | get_op_type () const |
virtual bool | is_physical () const =0 |
virtual bool | is_logical () const =0 |
virtual uint64_t | hash () const |
virtual bool | operator== (const OperatorNode &other) const |
virtual unique_ptr< LogicalProperty > | find_log_prop (const vector< LogicalProperty * > &log_props) |
Generate the logical property of the operator node using the input logical properties. 更多... | |
virtual double | calculate_cost (LogicalProperty *prop, const vector< LogicalProperty * > &child_log_props, CostModel *cm) |
Calculates the cost of a logical operation. 更多... | |
void | add_general_child (OperatorNode *child) |
vector< OperatorNode * > & | get_general_children () |
Private 成员函数 | |
template<class STATE , typename T > | |
void | update_aggregate_state (void *state, const Column &column) |
template<class STATE , typename T > | |
void | append_to_column (void *state, Column &column) |
Private 属性 | |
vector< Expression * > | aggregate_expressions_ |
vector< Expression * > | value_expressions_ |
聚合表达式 | |
Chunk | chunk_ |
Chunk | output_chunk_ |
AggregateValues | aggr_values_ |
额外继承的成员函数 | |
![]() | |
vector< unique_ptr< PhysicalOperator > > | children_ |
![]() | |
vector< OperatorNode * > | general_children_ |
聚合物理算子 (Vectorized)
|
overridevirtual |
实现了 PhysicalOperator.
|
overridevirtual |
重载 PhysicalOperator .
|
overridevirtual |
实现了 PhysicalOperator.
|
inlineoverridevirtual |
实现了 PhysicalOperator.