Github user actuaryzhang commented on the issue:

    https://github.com/apache/spark/pull/17159
  
    The current implementation accepts data frames with different schemas. See 
issues below:
    ```
    df <- createDataFrame(data.frame(name = c("Michael", "Andy", "Justin"), age 
= c(1, 30, 19)))
    union(df, df[, c(2, 1)])
         name     age
    1 Michael     1.0
    2    Andy    30.0
    3  Justin    19.0
    4     1.0 Michael
    ```
    @felixcheung 


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