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

#pragma once

#include <vector>

羽飞's avatar
羽飞 已提交
19
#include "common/rc.h"
W
wangyunlai.wyl 已提交
20
#include "sql/stmt/stmt.h"
羽飞's avatar
羽飞 已提交
21
#include "storage/field/field.h"
W
wangyunlai.wyl 已提交
22 23 24 25 26 27

class FieldMeta;
class FilterStmt;
class Db;
class Table;

羽飞's avatar
羽飞 已提交
28 29 30 31
/**
 * @brief 表示select语句
 * @ingroup Statement
 */
羽飞's avatar
羽飞 已提交
32 33
class SelectStmt : public Stmt 
{
W
wangyunlai.wyl 已提交
34 35 36 37
public:
  SelectStmt() = default;
  ~SelectStmt() override;

L
Longda Feng 已提交
38 39 40 41 42
  StmtType type() const override
  {
    return StmtType::SELECT;
  }

W
wangyunlai.wyl 已提交
43 44 45 46
public:
  static RC create(Db *db, const Selects &select_sql, Stmt *&stmt);

public:
L
Longda Feng 已提交
47 48 49 50 51 52 53 54 55 56 57 58
  const std::vector<Table *> &tables() const
  {
    return tables_;
  }
  const std::vector<Field> &query_fields() const
  {
    return query_fields_;
  }
  FilterStmt *filter_stmt() const
  {
    return filter_stmt_;
  }
W
wangyunlai.wyl 已提交
59 60

private:
61
  std::vector<Field> query_fields_;
W
wangyunlai.wyl 已提交
62 63 64
  std::vector<Table *> tables_;
  FilterStmt *filter_stmt_ = nullptr;
};