This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 03a0e3dd3f6 branch-3.0: [fix](schema scan) Fix invalid pointer access #48370 (#48388) 03a0e3dd3f6 is described below commit 03a0e3dd3f6c22ee337204c62302d57836db86cc Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Thu Feb 27 17:48:23 2025 +0800 branch-3.0: [fix](schema scan) Fix invalid pointer access #48370 (#48388) Cherry-picked from #48370 Co-authored-by: Gabriel <liwenqi...@selectdb.com> --- be/src/exec/schema_scanner.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/be/src/exec/schema_scanner.cpp b/be/src/exec/schema_scanner.cpp index 85199f2a0be..c96fb2db354 100644 --- a/be/src/exec/schema_scanner.cpp +++ b/be/src/exec/schema_scanner.cpp @@ -122,7 +122,6 @@ Status SchemaScanner::get_next_block_async(RuntimeState* state) { DCHECK(_async_thread_running == false); auto task_lock = task_ctx.lock(); if (task_lock == nullptr) { - _scanner_status.update(Status::InternalError("Task context not exists!")); return; } SCOPED_ATTACH_TASK(state); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org