49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.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.
 | 
						|
 */
 | 
						|
 | 
						|
#include "ob_log_restore_define.h"
 | 
						|
#include "lib/net/ob_addr.h"
 | 
						|
#include "lib/ob_define.h"
 | 
						|
#include "lib/ob_errno.h"
 | 
						|
#include "lib/string/ob_string.h"
 | 
						|
#include "lib/utility/ob_macro_utils.h"
 | 
						|
#include <cstdint>
 | 
						|
 | 
						|
namespace oceanbase
 | 
						|
{
 | 
						|
namespace logservice
 | 
						|
{
 | 
						|
void ObLogRestoreErrorContext::reset()
 | 
						|
{
 | 
						|
  ret_code_ = OB_SUCCESS;
 | 
						|
  trace_id_.reset();
 | 
						|
}
 | 
						|
 | 
						|
ObLogRestoreErrorContext &ObLogRestoreErrorContext::operator=(const ObLogRestoreErrorContext &other)
 | 
						|
{
 | 
						|
  ret_code_ = other.ret_code_;
 | 
						|
  trace_id_.set(other.trace_id_);
 | 
						|
  return *this;
 | 
						|
}
 | 
						|
 | 
						|
void ObRemoteFetchContext::reset()
 | 
						|
{
 | 
						|
  issued_ = false;
 | 
						|
  last_fetch_ts_ = OB_INVALID_TIMESTAMP;
 | 
						|
  max_submit_lsn_.reset();
 | 
						|
  max_fetch_lsn_.reset();
 | 
						|
  error_context_.reset();
 | 
						|
}
 | 
						|
 | 
						|
} // namespace logservice
 | 
						|
} // namespace oceanbase
 |