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

    https://github.com/apache/spark/pull/16750#discussion_r100729875
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/csv/CSVSuite.scala
 ---
    @@ -859,6 +859,48 @@ class CSVSuite extends QueryTest with SharedSQLContext 
with SQLTestUtils {
         }
       }
     
    +  test("Write timestamps correctly with timestampFormat option and 
timeZone option") {
    +    withTempDir { dir =>
    +      // With dateFormat option and timeZone option.
    +      val timestampsWithFormatPath = 
s"${dir.getCanonicalPath}/timestampsWithFormat.csv"
    +      val timestampsWithFormat = spark.read
    +        .format("csv")
    +        .option("header", "true")
    +        .option("inferSchema", "true")
    +        .option("timestampFormat", "dd/MM/yyyy HH:mm")
    +        .load(testFile(datesFile))
    +      timestampsWithFormat.write
    +        .format("csv")
    +        .option("header", "true")
    +        .option("timestampFormat", "yyyy/MM/dd HH:mm")
    +        .option("timeZone", "GMT")
    +        .save(timestampsWithFormatPath)
    +
    +      // This will load back the timestamps as string.
    +      val stringTimestampsWithFormat = spark.read
    +        .format("csv")
    +        .option("header", "true")
    +        .option("inferSchema", "false")
    --- End diff --
    
    The schema will be `StringType` for all columns. 
([CSVInferSchema.scala#L68](https://github.com/ueshin/apache-spark/blob/ffc4912e17cc900fc9d7ceefd0f66461109728e9/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/csv/CSVInferSchema.scala#L68))


---
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