[fix](recvr) catch exception of transmit_block (#39882)

BP #39881
This commit is contained in:
TengJianPing
2024-08-25 00:25:20 +08:00
committed by GitHub
parent e0534c9bfc
commit 8dbd73988a

View File

@ -164,7 +164,7 @@ Status VDataStreamRecvr::SenderQueue::add_block(const PBlock& pblock, int be_num
{
SCOPED_RAW_TIMER(&deserialize_time);
block = Block::create_unique();
RETURN_IF_ERROR(block->deserialize(pblock));
RETURN_IF_ERROR_OR_CATCH_EXCEPTION(block->deserialize(pblock));
}
const auto rows = block->rows();