This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new d0cb4f8864e branch-2.1: [fix](schema scan) Fix invalid pointer access 
#48370 (#48387)
d0cb4f8864e is described below

commit d0cb4f8864e9b7c6463fad8d834d63a7d3f75061
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Feb 26 22:04:05 2025 +0800

    branch-2.1: [fix](schema scan) Fix invalid pointer access #48370 (#48387)
    
    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 70e007cf7fa..9a77f606468 100644
--- a/be/src/exec/schema_scanner.cpp
+++ b/be/src/exec/schema_scanner.cpp
@@ -121,7 +121,6 @@ Status SchemaScanner::get_next_block_async(RuntimeState* 
state) {
             [this, task_ctx, state]() {
                 auto task_lock = task_ctx.lock();
                 if (task_lock == nullptr) {
-                    _scanner_status.update(Status::InternalError("Task context 
not exists!"));
                     return;
                 }
                 DCHECK(_async_thread_running == false);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to