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

    https://github.com/apache/spark/pull/14745#discussion_r82524139
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/csv/CSVFileFormat.scala
 ---
    @@ -57,22 +58,16 @@ class CSVFileFormat extends TextBasedFileFormat with 
DataSourceRegister {
         val rdd = baseRdd(sparkSession, csvOptions, paths)
         val firstLine = findFirstLine(csvOptions, rdd)
         val firstRow = new CsvReader(csvOptions).parseLine(firstLine)
    -
    -    val header = if (csvOptions.headerFlag) {
    -      firstRow.zipWithIndex.map { case (value, index) =>
    -        if (value == null || value.isEmpty || value == 
csvOptions.nullValue) s"_c$index" else value
    -      }
    -    } else {
    -      firstRow.zipWithIndex.map { case (value, index) => s"_c$index" }
    -    }
    +    val caseSensitive = 
sparkSession.sessionState.conf.caseSensitiveAnalysis
    +    val header = makeSafeHeader(firstRow, csvOptions, caseSensitive)
    --- End diff --
    
    Sure, let me fix this up.


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