Files
oceanbase/unittest/storage/mockcontainer/mock_ob_schema_service.cpp
oceanbase-admin cea7de1475 init push
2021-05-31 22:56:52 +08:00

78 lines
2.1 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.
*/
#include "mock_ob_schema_service.h"
namespace oceanbase {
using namespace common;
using namespace sql;
namespace share {
namespace schema {
int MockObSchemaService::init(const char* schema_file)
{
int ret = OB_SUCCESS;
if (NULL == schema_file) {
STORAGE_LOG(ERROR, "invalid argument", "schema_file", OB_P(schema_file));
ret = OB_INVALID_ARGUMENT;
} else if (OB_SUCCESS != (ret = restore_schema_.init()) ||
OB_SUCCESS != (ret = restore_schema_.parse_from_file(schema_file, schema_guard_))) {
STORAGE_LOG(ERROR, "fail to get schema manger", K(schema_file));
} else {
STORAGE_LOG(INFO, "MockObSchemaService init success", K(schema_file));
}
return ret;
}
const ObSchemaGetterGuard* MockObSchemaService::get_schema_guard(const int64_t version)
{
UNUSED(version);
return schema_guard_;
}
// int MockObSchemaService::release_schema(const ObSchemaManager *schema)
//{
// UNUSED(schema);
// return OB_SUCCESS;
//}
//
// const ObSchemaManager *MockObSchemaService::get_schema_manager_by_version(
// const int64_t version,
// const bool for_merge)
//{
// UNUSED(version);
// UNUSED(for_merge);
// return manager_;
//}
//
// int64_t MockObSchemaService::get_latest_local_version(const bool core_schema_version) const
//{
// UNUSED(core_schema_version);
// int64_t version = 2;
// return version;
//}
//
// int64_t MockObSchemaService::get_received_broadcast_version(const bool core_schema_version) const
//{
// UNUSED(core_schema_version);
// int64_t version = 2;
// return version;
//}
} // namespace schema
} // namespace share
} // namespace oceanbase