MiniOB 1
MiniOB is one mini database, helping developers to learn how database works.
|
插入逻辑算子 更多...
#include <insert_logical_operator.h>
Public 成员函数 | |
InsertLogicalOperator (Table *table, std::vector< Value > values) | |
LogicalOperatorType | type () const override |
Table * | table () const |
const std::vector< Value > & | values () const |
std::vector< Value > & | values () |
![]() | |
virtual LogicalOperatorType | type () const =0 |
void | add_child (std::unique_ptr< LogicalOperator > oper) |
std::vector< std::unique_ptr< LogicalOperator > > & | children () |
std::vector< std::unique_ptr< Expression > > & | expressions () |
Private 属性 | |
Table * | table_ = nullptr |
std::vector< Value > | values_ |
额外继承的成员函数 | |
![]() | |
std::vector< std::unique_ptr< LogicalOperator > > | children_ |
子算子 更多... | |
std::vector< std::unique_ptr< Expression > > | expressions_ |
插入逻辑算子
|
inlineoverridevirtual |
实现了 LogicalOperator.