We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a60d680 commit a5ab68eCopy full SHA for a5ab68e
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveContext.scala
@@ -419,9 +419,6 @@ object HiveContext {
419
case (decimal: BigDecimal, DecimalType()) =>
420
HiveShim.createDecimal(decimal.underlying()).toString
421
case (other, tpe) if primitiveTypes contains tpe => other.toString
422
- case (a, b) => println(a.getClass); println(b.getClass);
423
- println(a.toString + " " + b.toString);
424
- a.toString + " " + b.toString;
425
}
426
427
/** Hive outputs fields of structs slightly differently than top level attributes. */
0 commit comments