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

    https://github.com/apache/spark/pull/17674#discussion_r112322369
  
    --- Diff: R/pkg/R/functions.R ---
    @@ -3652,3 +3652,56 @@ setMethod("posexplode",
                 jc <- callJStatic("org.apache.spark.sql.functions", 
"posexplode", x@jc)
                 column(jc)
               })
    +
    +#' create_array
    +#'
    +#' Creates a new array column. The input columns must all have the same 
data type.
    +#'
    +#' @param x Column to compute on
    +#' @param ... other columns
    +#'
    +#' @family collection_funcs
    +#' @rdname create_array
    +#' @name create_array
    +#' @aliases create_array,Column-method
    +#' @export
    +#' @examples \dontrun{create_array(df$x, df$y, df$z)}
    +#' @note create_array since 2.3.0
    +setMethod("create_array",
    +          signature(x = "Column"),
    +          function(x, ...) {
    +            jcols <- lapply(list(x, ...), function (x) {
    +              stopifnot(class(x) == "Column")
    +              x@jc
    +            })
    +            jc <- callJStatic("org.apache.spark.sql.functions", "array", 
jcols)
    +            column(jc)
    +          })
    +
    +#' create_map
    +#'
    +#' Creates a new map column. The input columns must be grouped as 
key-value pairs,
    +#' e.g. (key1, value1, key2, value2, ...).
    +#' The key columns must all have the same data type, and can't be null.
    --- End diff --
    
    ok, let's open a JIRA on that separately..


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