[CP] add check status for table rescan

This commit is contained in:
pe-99y
2024-12-11 10:14:53 +00:00
committed by ob-robot
parent a3b2e306fa
commit 519c882ad1

View File

@ -1946,7 +1946,9 @@ int ObTableScanOp::inner_rescan()
{
int ret = OB_SUCCESS;
in_rescan_ = true;
if (OB_FAIL(ObOperator::inner_rescan())) {
if (OB_FAIL(try_check_status())) {
LOG_WARN("failed to check status", K(ret));
} else if (OB_FAIL(ObOperator::inner_rescan())) {
LOG_WARN("failed to exec inner rescan");
} else {
if (OB_FAIL(inner_rescan_for_tsc())) {