From a5187b3130a8c43f401a7147c6b2b0e15a0ee83c Mon Sep 17 00:00:00 2001 From: qingsuijiu <642782632@qq.com> Date: Mon, 24 Jun 2024 12:21:34 +0000 Subject: [PATCH] Fix the issue of misusing the dump interface of col_store --- src/sql/engine/basic/ob_temp_table_insert_vec_op.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/engine/basic/ob_temp_table_insert_vec_op.cpp b/src/sql/engine/basic/ob_temp_table_insert_vec_op.cpp index 57f14b22ca..77cf3c32c3 100644 --- a/src/sql/engine/basic/ob_temp_table_insert_vec_op.cpp +++ b/src/sql/engine/basic/ob_temp_table_insert_vec_op.cpp @@ -384,7 +384,7 @@ int ObTempTableInsertVecOp::process_dump(dtl::ObDTLIntermResultInfo &interm_res_ for (int64_t i = 0; OB_SUCC(ret) && i < all_interm_res_info_.count(); ++i) { // The last block of the last chunk may still need to insert data and should not be dumped. bool dump_last_block = i < all_interm_res_info_.count() - 1; - if (OB_FAIL(all_interm_res_info_.at(i)->col_store_->dump(false, dump_last_block))) { + if (OB_FAIL(all_interm_res_info_.at(i)->col_store_->dump(dump_last_block))) { LOG_WARN("failed to dump row store", K(ret)); } else { dump_end_time = oceanbase::common::ObTimeUtility::current_time();