18#include "sql/operator/physical_operator.h"
19#include "sql/parser/parse.h"
36 return PhysicalOperatorType::INSERT;
39 RC open(
Trx *trx)
override;
43 Tuple *current_tuple()
override {
return nullptr; }
46 Table *table_ =
nullptr;
47 std::vector<Value> values_;
插入物理算子
Definition: insert_physical_operator.h:28
插入语句
Definition: insert_stmt.h:28
与LogicalOperator对应,物理算子描述执行计划将如何执行
Definition: physical_operator.h:57
事务接口
Definition: trx.h:142
元组的抽象描述
Definition: tuple.h:84
PhysicalOperatorType
物理算子类型
Definition: physical_operator.h:39