Skip to content

Commit

Permalink
ORC-1572: Use ORC Format 1.0.0
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?
This PR aims to use ORC Format 1.0.0.

### Why are the changes needed?
Apache ORC Format 1.0.0 is released.

### How was this patch tested?
Pass the CIs.

This closes #1720

Closes #1728 from williamhyun/format1.0.

Authored-by: William Hyun <william@apache.org>
Signed-off-by: William Hyun <william@apache.org>
  • Loading branch information
williamhyun committed Jan 6, 2024
1 parent 291a7de commit 5803d7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cmake_modules/ThirdpartyToolchain.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

set(ORC_FORMAT_VERSION "1.0.0-beta")
set(ORC_FORMAT_VERSION "1.0.0")
set(LZ4_VERSION "1.9.3")
set(SNAPPY_VERSION "1.1.7")
set(ZLIB_VERSION "1.2.11")
Expand Down Expand Up @@ -72,8 +72,8 @@ endif ()
# ----------------------------------------------------------------------
# ORC Format
ExternalProject_Add (orc-format_ep
URL "https://github.com/apache/orc-format/archive/refs/tags/v${ORC_FORMAT_VERSION}.tar.gz"
URL_HASH SHA256=28184fac3f182be5ead6e31972222b57754532ae94a89c13e9b9733378b60149
URL "https://downloads.apache.org/orc/orc-format-${ORC_FORMAT_VERSION}/orc-format-${ORC_FORMAT_VERSION}.tar.gz"
URL_HASH SHA256=739fae5ff94b1f812b413077280361045bf92e510ef04b34a610e23a945d8cd5
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<maven.version>3.9.6</maven.version>

<mockito.version>4.11.0</mockito.version>
<orc-format.version>1.0.0-SNAPSHOT</orc-format.version>
<orc-format.version>1.0.0</orc-format.version>
<!-- Build Properties -->
<project.build.outputTimestamp>2023-05-15T16:29:49Z</project.build.outputTimestamp>
<protobuf.version>3.25.1</protobuf.version>
Expand Down

0 comments on commit 5803d7d

Please sign in to comment.