You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by pv...@apache.org on 2022/05/26 15:22:50 UTC

[hive] branch master updated: HIVE-26233: Problems reading back PARQUET timestamps above 10000 years (#3295) (Peter Vary reviewed by Stamatis Zampetakis) (Addendum)

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

pvary pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 264428c3cf8 HIVE-26233: Problems reading back PARQUET timestamps above 10000 years (#3295) (Peter Vary reviewed by  Stamatis Zampetakis) (Addendum)
264428c3cf8 is described below

commit 264428c3cf82b9c73da000b7215bc66038fe6836
Author: Peter Vary <pv...@cloudera.com>
AuthorDate: Thu May 26 17:22:15 2022 +0200

    HIVE-26233: Problems reading back PARQUET timestamps above 10000 years (#3295) (Peter Vary reviewed by  Stamatis Zampetakis) (Addendum)
---
 .../ql/io/parquet/serde/TestParquetTimestampsHive2Compatibility.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ql/src/test/org/apache/hadoop/hive/ql/io/parquet/serde/TestParquetTimestampsHive2Compatibility.java b/ql/src/test/org/apache/hadoop/hive/ql/io/parquet/serde/TestParquetTimestampsHive2Compatibility.java
index 71c3304f842..db06e43d157 100644
--- a/ql/src/test/org/apache/hadoop/hive/ql/io/parquet/serde/TestParquetTimestampsHive2Compatibility.java
+++ b/ql/src/test/org/apache/hadoop/hive/ql/io/parquet/serde/TestParquetTimestampsHive2Compatibility.java
@@ -175,7 +175,7 @@ class TestParquetTimestampsHive2Compatibility {
     // Exclude dates falling in the default Gregorian change date since legacy code does not handle that interval
     // gracefully. It is expected that these do not work well when legacy APIs are in use. 
     .filter(s -> !s.startsWith("1582-10"))
-    .limit(3), Stream.of("9999-12-31 23:59:59.999"));
+    .limit(3000), Stream.of("9999-12-31 23:59:59.999"));
   }
 
   private static int digits(int number) {