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

    https://github.com/apache/spark/pull/19429#discussion_r143933737
  
    --- Diff: 
examples/src/main/scala/org/apache/spark/examples/sql/SQLDataSourceExample.scala
 ---
    @@ -49,6 +49,14 @@ object SQLDataSourceExample {
         val peopleDF = 
spark.read.format("json").load("examples/src/main/resources/people.json")
         peopleDF.select("name", 
"age").write.format("parquet").save("namesAndAges.parquet")
         // $example off:manual_load_options$
    +    // $example on:manual_load_options_csv$
    +    val peopleDFCsv = spark.read.format("csv")
    +     .option("sep", ";")
    --- End diff --
    
    double-spaced (no tab of course ..)


---

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

Reply via email to