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

    https://github.com/apache/spark/pull/20894#discussion_r191820709
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/csv/CSVOptions.scala
 ---
    @@ -156,6 +156,12 @@ class CSVOptions(
       val samplingRatio =
         parameters.get("samplingRatio").map(_.toDouble).getOrElse(1.0)
     
    +  /**
    +   * Forcibly apply the specified or inferred schema to datasource files.
    +   * If the option is enabled, headers of CSV files will be ignored.
    +   */
    +  val enforceSchema = getBool("enforceSchema", true)
    --- End diff --
    
    For booleans, we need to name boolean parameters. 
    > getBool("enforceSchema", default = true)


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to