From 2564a260bf36adc6bcb81608ce03ae347f9e9d8d Mon Sep 17 00:00:00 2001 From: wjhh2008 Date: Tue, 31 Oct 2023 21:42:55 +0000 Subject: [PATCH] [CP] fix load data bug --- src/sql/engine/cmd/ob_load_data_impl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sql/engine/cmd/ob_load_data_impl.cpp b/src/sql/engine/cmd/ob_load_data_impl.cpp index e1dad3d365..052a31e098 100644 --- a/src/sql/engine/cmd/ob_load_data_impl.cpp +++ b/src/sql/engine/cmd/ob_load_data_impl.cpp @@ -984,6 +984,7 @@ int ObLoadDataSPImpl::exec_shuffle(int64_t task_id, ObShuffleTaskHandle *handle) if (OB_ISNULL(handle) || OB_ISNULL(handle->data_buffer) + || OB_ISNULL(handle->escape_buffer) || OB_ISNULL(handle->exec_ctx.get_my_session()) || OB_ISNULL(handle->exec_ctx.get_sql_ctx())) { ret = OB_INVALID_ARGUMENT;