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

    https://github.com/apache/spark/pull/23080#discussion_r235244407
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/csv/CSVOptions.scala 
---
    @@ -192,6 +192,20 @@ class CSVOptions(
        */
       val emptyValueInWrite = emptyValue.getOrElse("\"\"")
     
    +  /**
    +   * A string between two consecutive JSON records.
    +   */
    +  val lineSeparator: Option[String] = parameters.get("lineSep").map { sep 
=>
    +    require(sep.nonEmpty, "'lineSep' cannot be an empty string.")
    +    require(sep.length <= 2, "'lineSep' can contain 1 or 2 characters.")
    --- End diff --
    
    Hm, I see.


---

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

Reply via email to