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

morningman 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 d79da2f926 [Fix](parquet-reader) Fix dict filter not enabled. (#17882)
d79da2f926 is described below

commit d79da2f9269ff4ad34ffe6193a46dd42c58fcff1
Author: Qi Chen <[email protected]>
AuthorDate: Sat Mar 18 22:16:37 2023 +0800

    [Fix](parquet-reader) Fix dict filter not enabled. (#17882)
---
 be/src/vec/exec/scan/vfile_scanner.cpp | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/be/src/vec/exec/scan/vfile_scanner.cpp 
b/be/src/vec/exec/scan/vfile_scanner.cpp
index aaa0ec9f36..c9cade7ec8 100644
--- a/be/src/vec/exec/scan/vfile_scanner.cpp
+++ b/be/src/vec/exec/scan/vfile_scanner.cpp
@@ -781,6 +781,11 @@ Status VFileScanner::_init_expr_ctxes() {
     // If last slot is_variant from stream plan which indicate table is 
dynamic schema
     _is_dynamic_schema =
             _output_tuple_desc && 
_output_tuple_desc->slots().back()->type().is_variant_type();
+
+    // TODO: It should can move to scan node to process.
+    if (_vconjunct_ctx && _vconjunct_ctx->root()) {
+        _split_conjuncts(_vconjunct_ctx->root());
+    }
     return Status::OK();
 }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to