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

    https://github.com/apache/spark/pull/23202#discussion_r238194142
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/csv/CSVInferSchema.scala
 ---
    @@ -98,6 +100,7 @@ class CSVInferSchema(options: CSVOptions) extends 
Serializable {
               compatibleType(typeSoFar, 
tryParseDecimal(field)).getOrElse(StringType)
             case DoubleType => tryParseDouble(field)
             case TimestampType => tryParseTimestamp(field)
    +        case DateType => tryParseDate(field)
    --- End diff --
    
    Just in case, I did exact match here as well, see 
https://github.com/apache/spark/pull/23202/files#diff-17719da188b2c15129f848f654a0e6feR174
 . If date parser didn't consume all input (`pos.getIndex != field.length`), it 
fails. If I move it up in type inferring pipeline, it should work. 


---

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

Reply via email to