fixed #1432: complete the notify_ function

This commit is contained in:
wxhwang
2023-08-14 16:14:18 +00:00
committed by ob-robot
parent ddabe52cdb
commit a31e422133
12 changed files with 131 additions and 11 deletions

View File

@ -7790,6 +7790,24 @@ private:
DISALLOW_COPY_AND_ASSIGN(ObBackupCleanArg);
};
struct ObNotifyArchiveArg
{
OB_UNIS_VERSION(1);
public:
ObNotifyArchiveArg() :
tenant_id_(common::OB_INVALID_TENANT_ID)
{
}
public:
bool is_valid() const;
int assign(const ObNotifyArchiveArg &arg);
TO_STRING_KV(K_(tenant_id));
public:
uint64_t tenant_id_;
private:
DISALLOW_COPY_AND_ASSIGN(ObNotifyArchiveArg);
};
struct ObLSBackupCleanArg
{
OB_UNIS_VERSION(1);