[BUGFIX]fix white scan

This commit is contained in:
obdev 2022-12-01 03:35:54 +00:00 committed by ob-robot
parent 8fb62754a1
commit 43193a1d17
2 changed files with 2 additions and 1 deletions

View File

@ -247,6 +247,7 @@ ObLobMetaWriteIter::ObLobMetaWriteIter(
uint32_t piece_block_size
) : seq_id_(allocator),
lob_id_(),
coll_type_(CS_TYPE_BINARY),
scan_iter_()
{
data_ = data;

View File

@ -309,7 +309,7 @@ int ObLobSeqId::parse()
uint32_t val = load32be(tmp_seq.ptr() + sizeof(uint32_t) * cur_pos);
if (OB_FAIL(add_digits(val))) {
LOG_WARN("add_digits failed.", K(ret), K(val));
} else if (OB_FAIL(OB_FAIL(append_seq_buf(val)))) {
} else if (OB_FAIL(append_seq_buf(val))) {
LOG_WARN("append_seq_buf failed.", K(ret), K(val));
} else {
cur_pos++;