Github user davies commented on a diff in the pull request:

    https://github.com/apache/spark/pull/6982#discussion_r33427457
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/codegen/CodeGenerator.scala
 ---
    @@ -127,23 +127,24 @@ class CodeGenContext {
         case TimestampType => "long"
         case dt: OpenHashSetUDT if dt.elementType == IntegerType => 
classOf[IntegerHashSet].getName
         case dt: OpenHashSetUDT if dt.elementType == LongType => 
classOf[LongHashSet].getName
    +    case _: StructType => "InternalRow"
    +    case _: ArrayType => "scala.collection.Seq"
    +    case _: MapType => "scala.collection.Map"
         case _ => "Object"
       }
     
       /**
        * Return the boxed type in Java
        */
    -  def boxedType(dt: DataType): String = dt match {
    -    case IntegerType => "Integer"
    -    case LongType => "Long"
    -    case ShortType => "Short"
    -    case ByteType => "Byte"
    -    case DoubleType => "Double"
    -    case FloatType => "Float"
    -    case BooleanType => "Boolean"
    -    case DateType => "Integer"
    -    case TimestampType => "Long"
    -    case _ => javaType(dt)
    +  def boxedType(dt: DataType): String = javaType(dt) match {
    +    case "int" => "Integer"
    --- End diff --
    
    ?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to