wjones127 commented on pull request #12751:
URL: https://github.com/apache/arrow/pull/12751#issuecomment-1084878383


   @paleolimbot For the column filling, should that be the behavior of rbind, 
or an alternative row binding function? For example, I think tibble has 
separated behavior for each:
   
   ```r
   > library(dplyr)
   > rbind(tibble(x = 1:2), tibble(y = 2:4))
   Error in match.names(clabs, names(xi)) : 
     names do not match previous names
   > bind_rows(tibble(x = 1:2), tibble(y = 2:4))
   # A tibble: 5 × 2
         x     y
     <int> <int>
   1     1    NA
   2     2    NA
   3    NA     2
   4    NA     3
   5    NA     4
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to