From d8cf67858988bed287c0125095729f7f808aabad Mon Sep 17 00:00:00 2001 From: scwf Date: Thu, 11 Dec 2014 22:48:03 -0800 Subject: [SQL] Remove unnecessary case in HiveContext.toHiveString a follow up of #3547 /cc marmbrus Author: scwf Closes #3563 from scwf/rnc and squashes the following commits: 9395661 [scwf] remove unnecessary condition --- sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveContext.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sql/hive') diff --git a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveContext.scala b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveContext.scala index 34fc21e61f..6008e46fef 100644 --- a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveContext.scala +++ b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveContext.scala @@ -414,9 +414,7 @@ object HiveContext { case (d: Date, DateType) => new DateWritable(d).toString case (t: Timestamp, TimestampType) => new TimestampWritable(t).toString case (bin: Array[Byte], BinaryType) => new String(bin, "UTF-8") - case (decimal: Decimal, DecimalType()) => // Hive strips trailing zeros so use its toString - HiveShim.createDecimal(decimal.toBigDecimal.underlying()).toString - case (decimal: BigDecimal, DecimalType()) => + case (decimal: BigDecimal, DecimalType()) => // Hive strips trailing zeros so use its toString HiveShim.createDecimal(decimal.underlying()).toString case (other, tpe) if primitiveTypes contains tpe => other.toString } -- cgit v1.2.3