fix create_hidden_table not use DEFINE_DDL_RS_RPC_PROCESSOR bug

This commit is contained in:
obdev
2023-03-03 03:10:45 +00:00
committed by ob-robot
parent 2ebb61616d
commit d91c405414
5 changed files with 14 additions and 173 deletions

View File

@ -1736,11 +1736,12 @@ public:
uint64_t tenant_id_;
};
struct ObCreateHiddenTableArg final
struct ObCreateHiddenTableArg : public ObDDLArg
{
OB_UNIS_VERSION(1);
public:
TO_STRING_KV(K_(tenant_id),
TO_STRING_KV(K_(exec_tenant_id),
K_(tenant_id),
K_(table_id),
K_(dest_tenant_id),
K_(session_id),
@ -1751,6 +1752,7 @@ public:
K_(tz_info_wrap),
"nls_formats", common::ObArrayWrap<common::ObString>(nls_formats_, common::ObNLSFormatEnum::NLS_MAX));
ObCreateHiddenTableArg() :
ObDDLArg(),
tenant_id_(common::OB_INVALID_ID),
table_id_(common::OB_INVALID_ID),
dest_tenant_id_(common::OB_INVALID_ID),