You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by yi...@apache.org on 2022/07/11 14:48:14 UTC

[doris] branch master updated: [bugfix] temporarily disable pushing RF to scanner to avoid coredump (#10776)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 88f466ab86 [bugfix] temporarily disable pushing RF to scanner to avoid coredump (#10776)
88f466ab86 is described below

commit 88f466ab86bfd119956d7c809e2124b46e104f8f
Author: TengJianPing <18...@users.noreply.github.com>
AuthorDate: Mon Jul 11 22:48:08 2022 +0800

    [bugfix] temporarily disable pushing RF to scanner to avoid coredump (#10776)
---
 be/src/vec/exec/volap_scan_node.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/be/src/vec/exec/volap_scan_node.cpp b/be/src/vec/exec/volap_scan_node.cpp
index cf85c39134..74c9eccc76 100644
--- a/be/src/vec/exec/volap_scan_node.cpp
+++ b/be/src/vec/exec/volap_scan_node.cpp
@@ -408,6 +408,9 @@ void VOlapScanNode::scanner_thread(VOlapScanner* scanner) {
         scanner->set_opened();
     }
 
+    /*
+    // the following code will cause coredump when running tpcds_sf1 sqls,
+    // disable temporariy to avoid it, SHOULD BE FIX LATER
     std::vector<VExpr*> vexprs;
     auto& scanner_filter_apply_marks = *scanner->mutable_runtime_filter_marks();
     DCHECK(scanner_filter_apply_marks.size() == _runtime_filter_descs.size());
@@ -488,6 +491,7 @@ void VOlapScanNode::scanner_thread(VOlapScanner* scanner) {
                       "Something wrong for runtime filters: ");
         scanner->set_use_pushdown_conjuncts(true);
     }
+    */
 
     std::vector<Block*> blocks;
 


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