insert_physical_operator.h 1.2 KB
Newer Older
羽飞's avatar
羽飞 已提交
1
/* Copyright (c) 2021 OceanBase and/or its affiliates. All rights reserved.
羽飞's avatar
羽飞 已提交
2 3 4 5 6 7 8 9 10 11
miniob is licensed under Mulan PSL v2.
You can use this software according to the terms and conditions of the Mulan PSL v2.
You may obtain a copy of Mulan PSL v2 at:
         http://license.coscl.org.cn/MulanPSL2
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
See the Mulan PSL v2 for more details. */

//
W
wangyunlai.wyl 已提交
12
// Created by WangYunlai on 2021/6/7.
羽飞's avatar
羽飞 已提交
13 14
//

W
wangyunlai.wyl 已提交
15
#pragma once
羽飞's avatar
羽飞 已提交
16

羽飞's avatar
羽飞 已提交
17
#include <vector>
羽飞's avatar
羽飞 已提交
18
#include "sql/operator/physical_operator.h"
W
wangyunlai.wyl 已提交
19 20 21 22
#include "sql/parser/parse.h"

class InsertStmt;

23 24 25 26
/**
 * @brief 插入物理算子
 * @ingroup PhysicalOperator
 */
羽飞's avatar
羽飞 已提交
27 28
class InsertPhysicalOperator : public PhysicalOperator
{
W
wangyunlai.wyl 已提交
29
public:
羽飞's avatar
羽飞 已提交
30
  InsertPhysicalOperator(Table *table, std::vector<Value> &&values);
W
wangyunlai.wyl 已提交
31

羽飞's avatar
羽飞 已提交
32
  virtual ~InsertPhysicalOperator() = default;
W
wangyunlai.wyl 已提交
33

L
Longda Feng 已提交
34 35 36 37 38
  PhysicalOperatorType type() const override
  {
    return PhysicalOperatorType::INSERT;
  }

羽飞's avatar
羽飞 已提交
39
  RC open(Trx *trx) override;
W
wangyunlai.wyl 已提交
40 41 42
  RC next() override;
  RC close() override;

羽飞's avatar
羽飞 已提交
43 44
  Tuple *current_tuple() override { return nullptr; }

W
wangyunlai.wyl 已提交
45
private:
羽飞's avatar
羽飞 已提交
46 47
  Table *table_ = nullptr;
  std::vector<Value> values_;
W
wangyunlai.wyl 已提交
48
};