120 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			3.3 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.
 | 
						|
 */
 | 
						|
 | 
						|
#define USING_LOG_PREFIX SQL_RESV
 | 
						|
 | 
						|
#include "sql/resolver/ddl/ob_create_database_stmt.h"
 | 
						|
 | 
						|
using namespace oceanbase::common;
 | 
						|
using namespace oceanbase::share::schema;
 | 
						|
 | 
						|
namespace oceanbase
 | 
						|
{
 | 
						|
namespace sql
 | 
						|
{
 | 
						|
ObCreateDatabaseStmt::ObCreateDatabaseStmt()
 | 
						|
    : ObDDLStmt(stmt::T_CREATE_DATABASE),
 | 
						|
    is_charset_specify_(false),
 | 
						|
    is_collation_specify_(false),
 | 
						|
    create_database_arg_()
 | 
						|
  {
 | 
						|
  }
 | 
						|
 | 
						|
ObCreateDatabaseStmt::ObCreateDatabaseStmt(common::ObIAllocator *name_pool)
 | 
						|
    : ObDDLStmt(name_pool, stmt::T_CREATE_DATABASE),
 | 
						|
    is_charset_specify_(false),
 | 
						|
    is_collation_specify_(false),
 | 
						|
    create_database_arg_()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
ObCreateDatabaseStmt::~ObCreateDatabaseStmt()
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
void ObCreateDatabaseStmt::set_if_not_exists(bool if_not_exists)
 | 
						|
{
 | 
						|
  create_database_arg_.if_not_exist_ = if_not_exists;
 | 
						|
}
 | 
						|
 | 
						|
void ObCreateDatabaseStmt::add_zone(const common::ObString &zone)
 | 
						|
{
 | 
						|
  // not supported
 | 
						|
}
 | 
						|
 | 
						|
int ObCreateDatabaseStmt::set_primary_zone(const common::ObString &zone)
 | 
						|
{
 | 
						|
  return OB_SUCCESS; // not supported
 | 
						|
}
 | 
						|
 | 
						|
void ObCreateDatabaseStmt::set_read_only(const bool read_only)
 | 
						|
{
 | 
						|
  create_database_arg_.database_schema_.set_read_only(read_only);
 | 
						|
}
 | 
						|
 | 
						|
int ObCreateDatabaseStmt::set_default_tablegroup_name(const common::ObString &tablegroup_name)
 | 
						|
{
 | 
						|
  return create_database_arg_.database_schema_.set_default_tablegroup_name(tablegroup_name);
 | 
						|
}
 | 
						|
 | 
						|
void ObCreateDatabaseStmt::set_tenant_id(const uint64_t tenant_id)
 | 
						|
{
 | 
						|
  create_database_arg_.database_schema_.set_tenant_id(tenant_id);
 | 
						|
}
 | 
						|
 | 
						|
int ObCreateDatabaseStmt::set_database_name(const ObString &database_name)
 | 
						|
{
 | 
						|
  return create_database_arg_.database_schema_.set_database_name(database_name);
 | 
						|
}
 | 
						|
 | 
						|
void ObCreateDatabaseStmt::set_database_id(const uint64_t database_id)
 | 
						|
{
 | 
						|
  create_database_arg_.database_schema_.set_database_id(database_id);
 | 
						|
}
 | 
						|
 | 
						|
const ObString &ObCreateDatabaseStmt::get_database_name() const
 | 
						|
{
 | 
						|
  return create_database_arg_.database_schema_.get_database_name_str();
 | 
						|
}
 | 
						|
 | 
						|
void ObCreateDatabaseStmt::set_collation_type(const common::ObCollationType type)
 | 
						|
{
 | 
						|
  create_database_arg_.database_schema_.set_collation_type(type);
 | 
						|
}
 | 
						|
 | 
						|
void ObCreateDatabaseStmt::set_charset_type(const common::ObCharsetType type)
 | 
						|
{
 | 
						|
  create_database_arg_.database_schema_.set_charset_type(type);
 | 
						|
}
 | 
						|
 | 
						|
void ObCreateDatabaseStmt::set_in_recyclebin(bool in_recyclebin)
 | 
						|
{
 | 
						|
  create_database_arg_.database_schema_.set_in_recyclebin(in_recyclebin);
 | 
						|
}
 | 
						|
 | 
						|
common::ObCharsetType ObCreateDatabaseStmt::get_charset_type() const
 | 
						|
{
 | 
						|
  return create_database_arg_.database_schema_.get_charset_type();
 | 
						|
}
 | 
						|
 | 
						|
common::ObCollationType ObCreateDatabaseStmt::get_collation_type() const
 | 
						|
{
 | 
						|
  return create_database_arg_.database_schema_.get_collation_type();
 | 
						|
}
 | 
						|
 | 
						|
obrpc::ObCreateDatabaseArg& ObCreateDatabaseStmt::get_create_database_arg()
 | 
						|
{
 | 
						|
  return create_database_arg_;
 | 
						|
}
 | 
						|
}//namespace sql
 | 
						|
}//namespace oceanbase
 |