diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2024-08-16 21:06:38 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2024-08-16 21:17:15 +0300 |
commit | adab714a761bbbad2688678c439ca0b668176865 (patch) | |
tree | 17289c2ad3806a712980189dbb9b86b1bec8df7d /contrib | |
parent | 1928a19d2e6c8185a9688eaad836234db01f7146 (diff) | |
download | ydb-adab714a761bbbad2688678c439ca0b668176865.tar.gz |
Update contrib/libs/apache/orc to 2.0.2
0d57d21dc1144a597e06aef31cda5393837f1e58
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libs/apache/orc/c++/include/orc/orc-config.hh | 2 | ||||
-rw-r--r-- | contrib/libs/apache/orc/c++/src/Int128.cc | 2 | ||||
-rw-r--r-- | contrib/libs/apache/orc/ya.make | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/contrib/libs/apache/orc/c++/include/orc/orc-config.hh b/contrib/libs/apache/orc/c++/include/orc/orc-config.hh index eb79be002a..6d6ae91a34 100644 --- a/contrib/libs/apache/orc/c++/include/orc/orc-config.hh +++ b/contrib/libs/apache/orc/c++/include/orc/orc-config.hh @@ -19,7 +19,7 @@ #ifndef ORC_CONFIG_HH #define ORC_CONFIG_HH -#define ORC_VERSION "2.0.1" +#define ORC_VERSION "2.0.2" #define ORC_CXX_HAS_CSTDINT diff --git a/contrib/libs/apache/orc/c++/src/Int128.cc b/contrib/libs/apache/orc/c++/src/Int128.cc index 3c159f3775..434a8dda80 100644 --- a/contrib/libs/apache/orc/c++/src/Int128.cc +++ b/contrib/libs/apache/orc/c++/src/Int128.cc @@ -27,7 +27,7 @@ namespace orc { Int128 Int128::maximumValue() { - return Int128(0x7fffffffffffffff, 0xfffffffffffffff); + return Int128(0x7fffffffffffffff, 0xffffffffffffffff); } Int128 Int128::minimumValue() { diff --git a/contrib/libs/apache/orc/ya.make b/contrib/libs/apache/orc/ya.make index da0621ed3f..3484882d72 100644 --- a/contrib/libs/apache/orc/ya.make +++ b/contrib/libs/apache/orc/ya.make @@ -6,9 +6,9 @@ LICENSE(Apache-2.0) LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(2.0.1) +VERSION(2.0.2) -ORIGINAL_SOURCE(https://github.com/apache/orc/archive/rel/release-2.0.1.tar.gz) +ORIGINAL_SOURCE(https://github.com/apache/orc/archive/rel/release-2.0.2.tar.gz) PEERDIR( contrib/libs/apache/orc-format |