[C] obdumper抽数单表报错4013 [3.1_opensource_release < 3_1_x_release]

This commit is contained in:
qianchanger
2022-07-04 10:09:50 +08:00
committed by wangzelin.wzl
parent 1eaee03522
commit e349a542f1
5 changed files with 49 additions and 20 deletions

View File

@ -258,6 +258,13 @@ int ObSyncCmdDriver::response_query_result(ObMySQLResultSet &result)
OMPKRow rp(sm_row);
if (OB_FAIL(sender_.response_packet(rp))) {
LOG_WARN("response packet fail", K(ret), KP(row));
} else {
ObArenaAllocator *allocator = NULL;
if (OB_FAIL(result.get_exec_context().get_convert_charset_allocator(allocator))) {
LOG_WARN("fail to get lob fake allocator", K(ret));
} else if (OB_NOT_NULL(allocator)) {
allocator->reset();
}
}
}
}