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

    https://github.com/apache/spark/pull/21984#discussion_r207537985
  
    --- Diff: 
external/avro/src/main/scala/org/apache/spark/sql/avro/AvroSerializer.scala ---
    @@ -92,7 +92,7 @@ class AvroSerializer(rootCatalystType: DataType, 
rootAvroType: Schema, nullable:
           case BinaryType =>
             (getter, ordinal) => ByteBuffer.wrap(getter.getBinary(ordinal))
           case DateType =>
    -        (getter, ordinal) => getter.getInt(ordinal) * 
DateTimeUtils.MILLIS_PER_DAY
    +        (getter, ordinal) => getter.getInt(ordinal)
    --- End diff --
    
    For the write path, let's drop the previous conversion to `Long`


---

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

Reply via email to