This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new f5e24136d ORC-1876: Upgrade to ORC Format 1.1
f5e24136d is described below
commit f5e24136d0e1dd00529f73e4211a2520d301c98e
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Fri Apr 18 19:28:55 2025 +0900
ORC-1876: Upgrade to ORC Format 1.1
### What changes were proposed in this pull request?
This PR aims to upgrade ORC Format to 1.1.0.
### Why are the changes needed?
To bring the latest feature and bug fixes.
- https://github.com/apache/orc-format/milestone/2?closed=1
- https://github.com/apache/orc-format/pull/18
- https://github.com/apache/orc-format/pull/19
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #2190 from dongjoon-hyun/ORC-1876.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
cmake_modules/ThirdpartyToolchain.cmake | 4 ++--
java/pom.xml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/cmake_modules/ThirdpartyToolchain.cmake
b/cmake_modules/ThirdpartyToolchain.cmake
index 9b2c829c7..ce1f6c4a9 100644
--- a/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cmake_modules/ThirdpartyToolchain.cmake
@@ -19,7 +19,7 @@ set(ORC_VENDOR_DEPENDENCIES)
set(ORC_SYSTEM_DEPENDENCIES)
set(ORC_INSTALL_INTERFACE_TARGETS)
-set(ORC_FORMAT_VERSION "1.0.0")
+set(ORC_FORMAT_VERSION "1.1.0")
set(LZ4_VERSION "1.10.0")
set(SNAPPY_VERSION "1.2.1")
set(ZLIB_VERSION "1.3.1")
@@ -145,7 +145,7 @@ else()
endif()
ExternalProject_Add (orc-format_ep
URL ${ORC_FORMAT_SOURCE_URL}
- URL_HASH
SHA256=739fae5ff94b1f812b413077280361045bf92e510ef04b34a610e23a945d8cd5
+ URL_HASH
SHA256=d4a7ac76c5442abf7119e2cb84e71b677e075aff53518aa866055e2ead0450d7
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
diff --git a/java/pom.xml b/java/pom.xml
index d19c841ac..bf3357067 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -76,7 +76,7 @@
<maven.version>3.9.9</maven.version>
<mockito.version>5.10.0</mockito.version>
- <orc-format.version>1.0.0</orc-format.version>
+ <orc-format.version>1.1.0</orc-format.version>
<!-- Build Properties -->
<project.build.outputTimestamp>2025-01-05T19:25:27Z</project.build.outputTimestamp>
<protobuf.version>3.25.5</protobuf.version>