17#include "sql/operator/logical_operator.h"
18#include "sql/parser/parse_defs.h"
30 LogicalOperatorType type()
const override {
return LogicalOperatorType::INSERT; }
32 OpType
get_op_type()
const override {
return OpType::LOGICALINSERT; }
34 Table *table()
const {
return table_; }
35 const vector<Value> &values()
const {
return values_; }
36 vector<Value> &values() {
return values_; }
39 Table *table_ =
nullptr;
40 vector<Value> values_;
插入逻辑算子
Definition: insert_logical_operator.h:25
OpType get_op_type() const override
Definition: insert_logical_operator.h:32
逻辑算子描述当前执行计划要做什么
Definition: logical_operator.h:50