Browse Source

Update contrib/libs/apache/orc to 2.0.2
0d57d21dc1144a597e06aef31cda5393837f1e58

robot-contrib 6 months ago
parent
commit
adab714a76

+ 1 - 1
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
 

+ 1 - 1
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() {

+ 2 - 2
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