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

    https://github.com/apache/spark/pull/14783#discussion_r77763275
  
    --- Diff: R/pkg/R/utils.R ---
    @@ -697,3 +697,18 @@ is_master_local <- function(master) {
     is_sparkR_shell <- function() {
       grepl(".*shell\\.R$", Sys.getenv("R_PROFILE_USER"), perl = TRUE)
     }
    +
    +# rbind a list of rows with raw (binary) columns
    +#
    +# @param inputData a list of rows, with each row a list
    +# @return data.frame with raw columns as lists
    +rbindRaws <- function(inputData){
    +  row1 <- inputData[[1]]
    +  rawcolumns <- ("raw" == sapply(row1, class))
    +
    +  listmatrix <- do.call(rbind, inputData)
    --- End diff --
    
    Since everything in in `inputData` is a list this goes straight to the top 
of hierarchy- same as if you called `rbind(list1, list2, ...)`.


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