micro writer buffer uses the default allocator

This commit is contained in:
z404289981
2023-11-14 10:10:32 +00:00
committed by ob-robot
parent d0a66f4900
commit 41296128f1
6 changed files with 169 additions and 165 deletions

View File

@ -60,6 +60,8 @@ int ObMicroBlockRawEncoder::build_block(char *&buf, int64_t &size)
} else if (datum_rows_.empty()) {
ret = OB_INNER_STAT_ERROR;
LOG_WARN("empty micro block", K(ret));
} else if (OB_FAIL(set_datum_rows_ptr())) {
STORAGE_LOG(WARN, "fail to set datum rows ptr", K(ret));
} else if (OB_FAIL(pivot())) {
LOG_WARN("pivot rows to columns failed", K(ret));
} else if (OB_FAIL(row_indexs_.reserve(datum_rows_.count()))) {