Github user HyukjinKwon commented on the pull request:

    https://github.com/apache/spark/pull/13041#issuecomment-218604088
  
    @andrewor14 Also, I am careful of this because the header might be 
intendedly a empty string, meaning the field name is literally a empty string. 
For example, for me the header below
    
    ```
    ,,1,2,3
    ```
    
    might mean
    
    ```
    ["","","1","2","3"]
    ```
    
    just like
    ```
    a,a,1,2,3
    ```
    
    will be
    
    ```
    ["a","a","1","2,"3,"]
    ```
    
    Shouldn't this be supported with a separate option if this should be 
supported? (I am a bit less sure why duplicated field names (empty string) 
should be allowed, though.)


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

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

Reply via email to