65 lines
2.0 KiB
C++
65 lines
2.0 KiB
C++
/**
|
|
* Copyright (c) 2021 OceanBase
|
|
* OceanBase CE is licensed under Mulan PubL v2.
|
|
* You can use this software according to the terms and conditions of the Mulan PubL v2.
|
|
* You may obtain a copy of Mulan PubL v2 at:
|
|
* http://license.coscl.org.cn/MulanPubL-2.0
|
|
* 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 PubL v2 for more details.
|
|
*/
|
|
|
|
#ifndef OCEANBASE_SQL_OB_DROP_TABLEGROUP_STMT_
|
|
#define OCEANBASE_SQL_OB_DROP_TABLEGROUP_STMT_
|
|
|
|
#include "share/ob_rpc_struct.h"
|
|
#include "sql/resolver/ob_stmt_resolver.h"
|
|
#include "sql/resolver/ddl/ob_ddl_stmt.h"
|
|
|
|
namespace oceanbase
|
|
{
|
|
namespace sql
|
|
{
|
|
class ObDropTablegroupStmt : public ObDDLStmt
|
|
{
|
|
public:
|
|
explicit ObDropTablegroupStmt(common::ObIAllocator *name_pool)
|
|
:ObDDLStmt(name_pool, stmt::T_DROP_TABLEGROUP)
|
|
{}
|
|
ObDropTablegroupStmt() : ObDDLStmt(stmt::T_DROP_TABLEGROUP)
|
|
{}
|
|
|
|
virtual ~ObDropTablegroupStmt()
|
|
{}
|
|
|
|
void set_if_exist(const bool if_exist) { drop_tablegroup_arg_.if_exist_ = if_exist; }
|
|
TO_STRING_KV(K_(drop_tablegroup_arg));
|
|
inline obrpc::ObDropTablegroupArg &get_drop_tablegroup_arg();
|
|
inline void set_tablegroup_name(const common::ObString &tablegroup_name);
|
|
void set_tenant_id(const uint64_t tenant_id) { drop_tablegroup_arg_.tenant_id_ = tenant_id; }
|
|
virtual obrpc::ObDDLArg &get_ddl_arg() { return drop_tablegroup_arg_; }
|
|
|
|
const common::ObString &get_tablegroup_name() const
|
|
{ return drop_tablegroup_arg_.tablegroup_name_; }
|
|
private:
|
|
obrpc::ObDropTablegroupArg drop_tablegroup_arg_;
|
|
DISALLOW_COPY_AND_ASSIGN(ObDropTablegroupStmt);
|
|
|
|
};
|
|
|
|
inline obrpc::ObDropTablegroupArg &ObDropTablegroupStmt::get_drop_tablegroup_arg()
|
|
{
|
|
return drop_tablegroup_arg_;
|
|
}
|
|
|
|
inline void ObDropTablegroupStmt::set_tablegroup_name(const common::ObString &tablegroup_name)
|
|
{
|
|
drop_tablegroup_arg_.tablegroup_name_ = tablegroup_name;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#endif //OCEANBASE_SQL_OB_DROP_TABLEGROUP_STMT_H_
|