plan hash serialize take place

This commit is contained in:
AntiTopQuark
2023-11-08 14:09:13 +00:00
committed by ob-robot
parent b5b2a5f052
commit cd13dccdcf
2 changed files with 7 additions and 1 deletions

View File

@ -82,6 +82,7 @@ OB_DEF_SERIALIZE(ObDASRemoteInfo)
OB_UNIS_ENCODE(user_id_);
OB_UNIS_ENCODE(session_id_);
OB_UNIS_ENCODE(plan_id_);
OB_UNIS_ENCODE(plan_hash_);
return ret;
}
@ -175,6 +176,7 @@ OB_DEF_DESERIALIZE(ObDASRemoteInfo)
OB_UNIS_DECODE(user_id_);
OB_UNIS_DECODE(session_id_);
OB_UNIS_DECODE(plan_id_);
OB_UNIS_DECODE(plan_hash_);
return ret;
}
@ -213,6 +215,7 @@ OB_DEF_SERIALIZE_SIZE(ObDASRemoteInfo)
OB_UNIS_ADD_LEN(user_id_);
OB_UNIS_ADD_LEN(session_id_);
OB_UNIS_ADD_LEN(plan_id_);
OB_UNIS_ADD_LEN(plan_hash_);
return len;
}