17#include "sql/operator/group_by_physical_operator.h" 
   30  OpType               
get_op_type()
 const override { 
return OpType::SCALARGROUPBY; }
 
   32  RC open(
Trx *trx) 
override;
 
   36  Tuple *current_tuple() 
override;
 
   39  unique_ptr<GroupValueType> group_value_;
 
   40  bool                       emitted_ = 
false;  
 
Group By 物理算子基类
Definition: group_by_physical_operator.h:26
 
没有 group by 表达式的 group by 物理算子
Definition: scalar_group_by_physical_operator.h:24
 
OpType get_op_type() const override
Definition: scalar_group_by_physical_operator.h:30
 
事务接口
Definition: trx.h:141
 
元组的抽象描述
Definition: tuple.h:66
 
PhysicalOperatorType
物理算子类型
Definition: physical_operator.h:36