[BUGFIX] fix lob bugs

This commit is contained in:
obdev
2023-02-24 17:11:48 +08:00
committed by ob-robot
parent 642798b78e
commit 46c6a9bfce
7 changed files with 92 additions and 27 deletions

View File

@ -1133,7 +1133,7 @@ int ObTextStringResult::fill(int64_t pos, int c, int64_t len)
ret = OB_ERR_UNEXPECTED;
LOG_WARN("Lob: append content length too long", K(this), K(pos), K(len), K(ret));
} else {
MEMSET(buffer_ + pos, c, len);
MEMSET(buffer_ + pos_ + pos, c, len);
}
} else {
ret = OB_NOT_IMPLEMENT;