[feature-wip] support parquet predicate push down (#10512)

This commit is contained in:
slothever
2022-07-08 23:11:25 +08:00
committed by GitHub
parent feeef7e4da
commit c358a43f35
24 changed files with 889 additions and 49 deletions

View File

@ -315,6 +315,7 @@ std::unique_ptr<FileScanner> FileScanNode::create_scanner(const TFileScanRange&
scan = new FileTextScanner(_runtime_state, runtime_profile(), scan_range.params,
scan_range.ranges, _pre_filter_texprs, counter);
}
scan->reg_conjunct_ctxs(_tuple_id, _conjunct_ctxs);
std::unique_ptr<FileScanner> scanner(scan);
return scanner;
}