create_index_stmt.h 1.4 KB
Newer Older
羽飞's avatar
羽飞 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* Copyright (c) 2021 OceanBase and/or its affiliates. All rights reserved.
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. */

//
// Created by Wangyunlai on 2023/4/25.
//

#pragma once

#include <string>

#include "sql/stmt/stmt.h"

21
struct CreateIndexSqlNode;
羽飞's avatar
羽飞 已提交
22 23 24
class Table;
class FieldMeta;

羽飞's avatar
羽飞 已提交
25 26 27 28
/**
 * @brief 创建索引的语句
 * @ingroup Statement
 */
羽飞's avatar
羽飞 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
class CreateIndexStmt : public Stmt
{
public:
  CreateIndexStmt(Table *table, const FieldMeta *field_meta, const std::string &index_name)
        : table_(table),
          field_meta_(field_meta),
          index_name_(index_name)
  {}

  virtual ~CreateIndexStmt() = default;

  StmtType type() const override { return StmtType::CREATE_INDEX; }

  Table *table() const { return table_; }
  const FieldMeta *field_meta() const { return field_meta_; }
  const std::string &index_name() const { return index_name_; }

public:
47
  static RC create(Db *db, const CreateIndexSqlNode &create_index, Stmt *&stmt);
羽飞's avatar
羽飞 已提交
48 49 50 51 52 53

private:
  Table *table_ = nullptr;
  const FieldMeta *field_meta_ = nullptr;
  std::string index_name_;
};