add remove member list lock from ob_admin

This commit is contained in:
godyangfight
2023-08-23 06:10:32 +00:00
committed by ob-robot
parent 17428549cc
commit 96798f4f60
13 changed files with 191 additions and 2 deletions

View File

@ -9949,6 +9949,25 @@ public:
uint64_t load_count_;
};
struct ObAdminUnlockMemberListOpArg final
{
OB_UNIS_VERSION(1);
public:
ObAdminUnlockMemberListOpArg();
~ObAdminUnlockMemberListOpArg();
int set(const uint64_t tenant_id,
const share::ObLSID &ls_id,
const int64_t lock_id);
bool is_valid() const;
void reset();
TO_STRING_KV(K_(tenant_id), K_(ls_id), K_(lock_id));
public:
uint64_t tenant_id_;
share::ObLSID ls_id_;
int64_t lock_id_;
};
}//end namespace obrpc
}//end namespace oceanbase
#endif