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

morningman 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 c0a2043f071 [fix] Fix row_index position map access crash because 
filter is uninitialized. (#370)
c0a2043f071 is described below

commit c0a2043f07115c4209abd49fba88ac1c7c084a12
Author: Qi Chen <[email protected]>
AuthorDate: Fri Dec 5 19:57:52 2025 +0800

    [fix] Fix row_index position map access crash because filter is 
uninitialized. (#370)
---
 c++/src/Options.hh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/c++/src/Options.hh b/c++/src/Options.hh
index 5cd2b49ffac..014d0ef0e3b 100644
--- a/c++/src/Options.hh
+++ b/c++/src/Options.hh
@@ -152,6 +152,7 @@ namespace orc {
 
     RowReaderOptionsPrivate() {
       selection = ColumnSelection_NONE;
+      filter = ColumnFilter_NONE;
       dataStart = 0;
       dataLength = std::numeric_limits<uint64_t>::max();
       throwOnHive11DecimalOverflow = true;


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

Reply via email to