[bugfix] temporarily disable pushing RF to scanner to avoid coredump (#10776)

This commit is contained in:
TengJianPing
2022-07-11 22:48:08 +08:00
committed by GitHub
parent a266d7b040
commit 88f466ab86

View File

@ -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;