[FEAT MERGE] log4200

Co-authored-by: zhjc1124 <zhjc1124@gmail.com>
Co-authored-by: BinChenn <binchenn.bc@gmail.com>
Co-authored-by: oceanoverflow <oceanoverflow@gmail.com>
This commit is contained in:
obdev
2023-05-06 08:15:43 +00:00
committed by ob-robot
parent f0fdf277f1
commit d6c6e05727
450 changed files with 33015 additions and 2243 deletions

View File

@ -505,7 +505,8 @@ public:
ObCreateTenantArg()
: ObDDLArg(), tenant_schema_(), pool_list_(), if_not_exist_(false),
sys_var_list_(), name_case_mode_(common::OB_NAME_CASE_INVALID), is_restore_(false),
palf_base_info_(), compatible_version_(0), recovery_until_scn_(share::SCN::min_scn()) {}
palf_base_info_(), compatible_version_(0), recovery_until_scn_(share::SCN::min_scn()),
is_creating_standby_(false), log_restore_source_() {}
virtual ~ObCreateTenantArg() {};
bool is_valid() const;
int check_valid() const;
@ -531,6 +532,8 @@ public:
//for restore tenant, from backuped meta file
uint64_t compatible_version_;
share::SCN recovery_until_scn_;
bool is_creating_standby_;
common::ObString log_restore_source_; // for create standby tenant
};
struct ObCreateTenantEndArg : public ObDDLArg