You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by om...@apache.org on 2017/07/20 00:14:04 UTC

[1/2] hive git commit: HIVE-15734: LazySimpleDeserializeRead.readField needs to catch IllegalArgumentException (Matt McCline, reviewed by Sergey Shelukhin)

Repository: hive
Updated Branches:
  refs/heads/branch-2.2 df8921d85 -> cf92b6f9a


HIVE-15734: LazySimpleDeserializeRead.readField needs to catch IllegalArgumentException (Matt McCline, reviewed by Sergey Shelukhin)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/8a2c1690
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/8a2c1690
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/8a2c1690

Branch: refs/heads/branch-2.2
Commit: 8a2c169054c8f585c9fd099220c14f9083608e17
Parents: df8921d
Author: Matt McCline <mm...@hortonworks.com>
Authored: Thu Jan 26 12:24:29 2017 -0800
Committer: Owen O'Malley <om...@apache.org>
Committed: Wed Jul 19 16:54:48 2017 -0700

----------------------------------------------------------------------
 .../hadoop/hive/serde2/lazy/fast/LazySimpleDeserializeRead.java  | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/8a2c1690/serde/src/java/org/apache/hadoop/hive/serde2/lazy/fast/LazySimpleDeserializeRead.java
----------------------------------------------------------------------
diff --git a/serde/src/java/org/apache/hadoop/hive/serde2/lazy/fast/LazySimpleDeserializeRead.java b/serde/src/java/org/apache/hadoop/hive/serde2/lazy/fast/LazySimpleDeserializeRead.java
index cf9a54e..dddd6a7 100644
--- a/serde/src/java/org/apache/hadoop/hive/serde2/lazy/fast/LazySimpleDeserializeRead.java
+++ b/serde/src/java/org/apache/hadoop/hive/serde2/lazy/fast/LazySimpleDeserializeRead.java
@@ -583,6 +583,10 @@ public final class LazySimpleDeserializeRead extends DeserializeRead {
        // U+FFFD will throw this as well
        logExceptionMessage(bytes, fieldStart, fieldLength, primitiveCategories[fieldIndex]);
        return false;
+    } catch (IllegalArgumentException iae) {
+       // E.g. can be thrown by Date.valueOf
+       logExceptionMessage(bytes, fieldStart, fieldLength, primitiveCategories[fieldIndex]);
+       return false;
     }
   }
 


[2/2] hive git commit: update to storage-api 2.3.1

Posted by om...@apache.org.
update to storage-api 2.3.1


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/cf92b6f9
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/cf92b6f9
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/cf92b6f9

Branch: refs/heads/branch-2.2
Commit: cf92b6f9a538bdf0d6390bdd94cc5f3f26980b5d
Parents: 8a2c169
Author: Owen O'Malley <om...@apache.org>
Authored: Wed Jul 19 14:35:30 2017 -0700
Committer: Owen O'Malley <om...@apache.org>
Committed: Wed Jul 19 16:58:03 2017 -0700

----------------------------------------------------------------------
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/cf92b6f9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index aa685b9..8316874 100644
--- a/pom.xml
+++ b/pom.xml
@@ -181,7 +181,7 @@
     <stax.version>1.0.1</stax.version>
     <slf4j.version>1.7.10</slf4j.version>
     <ST4.version>4.0.4</ST4.version>
-    <storage-api.version>2.3.0</storage-api.version>
+    <storage-api.version>2.3.1</storage-api.version>
     <tez.version>0.8.4</tez.version>
     <slider.version>0.90.2-incubating</slider.version>
     <super-csv.version>2.2.0</super-csv.version>