From 5076224de84f98e363588a03295fdb1e93b1c893 Mon Sep 17 00:00:00 2001 From: Oleg Danilov Date: Mon, 7 Aug 2017 00:57:10 +0300 Subject: [PATCH] HIVE-17260: Fixed typo (non-thrown exception) --- .../org/apache/hadoop/hive/serde2/thrift/ThriftJDBCBinarySerDe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serde/src/java/org/apache/hadoop/hive/serde2/thrift/ThriftJDBCBinarySerDe.java b/serde/src/java/org/apache/hadoop/hive/serde2/thrift/ThriftJDBCBinarySerDe.java index 16cc91672b9..e78e184af2e 100644 --- a/serde/src/java/org/apache/hadoop/hive/serde2/thrift/ThriftJDBCBinarySerDe.java +++ b/serde/src/java/org/apache/hadoop/hive/serde2/thrift/ThriftJDBCBinarySerDe.java @@ -97,7 +97,7 @@ public void initialize(Configuration conf, Properties tbl) throws SerDeException try { thriftFormatter.initialize(conf, tbl); } catch (Exception e) { - new SerDeException(e); + throw new SerDeException(e); } }