[FEAT MERGE] OB Support XMLType

Co-authored-by: simonjoylet <simonjoylet@gmail.com>
This commit is contained in:
obdev
2023-04-28 03:45:10 +00:00
committed by ob-robot
parent 58bb3d34b7
commit 17abf2818a
405 changed files with 18839 additions and 1573 deletions

View File

@ -32,6 +32,12 @@ uint64_t ObLSID::hash() const
return id_;
}
int ObLSID::hash(uint64_t &hash_val) const
{
hash_val = hash();
return OB_SUCCESS;
}
int ObLSID::serialize(char* buf, const int64_t buf_len, int64_t& pos) const
{
int ret = OB_SUCCESS;