[CP] Fix print rowkey readinfo core after refresh

This commit is contained in:
haitaoyang 2023-11-07 02:39:29 +00:00 committed by ob-robot
parent 766bfcf984
commit cf41b2981f

View File

@ -1210,8 +1210,10 @@ int ObMultipleMerge::refresh_table_on_demand()
} else if (nullptr != block_row_store_) {
block_row_store_->reuse();
}
STORAGE_LOG(INFO, "table need to be refresh", "table_id", access_param_->iter_param_.table_id_,
K(*access_param_), K(curr_scan_index_), K(scan_state_));
if (OB_SUCC(ret)) {
STORAGE_LOG(INFO, "table need to be refresh", "table_id", access_param_->iter_param_.table_id_,
K(*access_param_), K(curr_scan_index_), K(scan_state_));
}
}
return ret;
}