Placeholder of PCODE.

This commit is contained in:
LeonChaoHi
2024-02-28 08:14:46 +00:00
committed by ob-robot
parent 36c74418bf
commit 18fd23a2a8
3 changed files with 26 additions and 6 deletions

View File

@ -7144,7 +7144,8 @@ OB_SERIALIZE_MEMBER(
is_server_empty_,
zone_,
sql_port_,
build_version_);
build_version_,
startup_mode_);
int ObCheckServerForAddingServerResult::init(
const bool is_server_empty,
const ObZone &zone,
@ -7175,10 +7176,18 @@ int ObCheckServerForAddingServerResult::assign(const ObCheckServerForAddingServe
} else {
is_server_empty_ = other.is_server_empty_;
sql_port_ = other.sql_port_;
startup_mode_ = other.startup_mode_;
}
return ret;
}
OB_SERIALIZE_MEMBER(ObCheckDeploymentModeArg, single_zone_deployment_on_);
OB_SERIALIZE_MEMBER(ObCheckDeploymentModeArg, single_zone_deployment_on_, startup_mode_);
int ObCheckDeploymentModeArg::assign(const ObCheckDeploymentModeArg &other)
{
int ret = OB_SUCCESS;
single_zone_deployment_on_ = other.single_zone_deployment_on_;
startup_mode_ = other.startup_mode_;
return ret;
}
#ifdef OB_BUILD_TDE_SECURITY
OB_SERIALIZE_MEMBER(ObWaitMasterKeyInSyncArg,
tenant_max_key_version_,