This is an automated email from the ASF dual-hosted git repository. kakachen pushed a commit to branch orc in repository https://gitbox.apache.org/repos/asf/doris-thirdparty.git
The following commit(s) were added to refs/heads/orc by this push: new 8e3303a8c6d [fix] Load StripeIndex if searchArgument not exist. (#301) 8e3303a8c6d is described below commit 8e3303a8c6d6eee03b09e05ab91b844fdc873764 Author: Qi Chen <che...@selectdb.com> AuthorDate: Tue Apr 1 01:00:06 2025 +0800 [fix] Load StripeIndex if searchArgument not exist. (#301) --- c++/src/Reader.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/c++/src/Reader.cc b/c++/src/Reader.cc index b6e2de9e94a..d3b7ad0e2e6 100644 --- a/c++/src/Reader.cc +++ b/c++/src/Reader.cc @@ -1236,6 +1236,9 @@ namespace orc { currentRowInStripe = 0; continue; } + } else { + // read row group statistics and bloom filters of current stripe + loadStripeIndex(); } // get writer timezone info from stripe footer to help understand timestamp values. --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org