You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by huaxingao <gi...@git.apache.org> on 2018/08/30 20:36:41 UTC

[GitHub] spark pull request #22291: [SPARK-25007][R]Add array_intersect/array_except/...

GitHub user huaxingao opened a pull request:

    https://github.com/apache/spark/pull/22291

    [SPARK-25007][R]Add array_intersect/array_except/array_union/shuffle to SparkR

    
    ## What changes were proposed in this pull request?
    
    Add the R version of array_intersect/array_except/array_union/shuffle
    
    ## How was this patch tested?
    Add test in test_sparkSQL.R
    


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/huaxingao/spark spark-25007

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/22291.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #22291
    
----
commit 4a4507ff8c9764933bc1386ff57cfba1d7b18fac
Author: Huaxin Gao <hu...@...>
Date:   2018-08-30T20:30:47Z

    [SPARK-25007][R]Add array_intersect/array_except/array_union/array_shuffle to SparkR

----


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    **[Test build #95491 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95491/testReport)** for PR 22291 at commit [`4a4507f`](https://github.com/apache/spark/commit/4a4507ff8c9764933bc1386ff57cfba1d7b18fac).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22291: [SPARK-25007][R]Add array_intersect/array_except/...

Posted by felixcheung <gi...@git.apache.org>.
Github user felixcheung commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22291#discussion_r214244359
  
    --- Diff: R/pkg/R/generics.R ---
    @@ -799,10 +807,18 @@ setGeneric("array_sort", function(x) { standardGeneric("array_sort") })
     #' @name NULL
     setGeneric("arrays_overlap", function(x, y) { standardGeneric("arrays_overlap") })
     
    +#' @rdname column_collection_functions
    +#' @name NULL
    +setGeneric("array_union", function(x, y) { standardGeneric("array_union") })
    +
     #' @rdname column_collection_functions
     #' @name NULL
     setGeneric("arrays_zip", function(x, ...) { standardGeneric("arrays_zip") })
     
    +#' @rdname column_collection_functions
    +#' @name NULL
    +setGeneric("shuffle", function(x) { standardGeneric("shuffle") })
    --- End diff --
    
    this should go below - this part of the list should be sorted alphabetically


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    **[Test build #95562 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95562/testReport)** for PR 22291 at commit [`c5a5e5f`](https://github.com/apache/spark/commit/c5a5e5fe920b2c43dc479a9f317576d7351ad562).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    **[Test build #95491 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95491/testReport)** for PR 22291 at commit [`4a4507f`](https://github.com/apache/spark/commit/4a4507ff8c9764933bc1386ff57cfba1d7b18fac).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by felixcheung <gi...@git.apache.org>.
Github user felixcheung commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    merged to master.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2709/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    **[Test build #95562 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/95562/testReport)** for PR 22291 at commit [`c5a5e5f`](https://github.com/apache/spark/commit/c5a5e5fe920b2c43dc479a9f317576d7351ad562).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22291: [SPARK-25007][R]Add array_intersect/array_except/...

Posted by huaxingao <gi...@git.apache.org>.
Github user huaxingao commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22291#discussion_r214472480
  
    --- Diff: R/pkg/R/generics.R ---
    @@ -799,10 +807,18 @@ setGeneric("array_sort", function(x) { standardGeneric("array_sort") })
     #' @name NULL
     setGeneric("arrays_overlap", function(x, y) { standardGeneric("arrays_overlap") })
     
    +#' @rdname column_collection_functions
    +#' @name NULL
    +setGeneric("array_union", function(x, y) { standardGeneric("array_union") })
    +
     #' @rdname column_collection_functions
     #' @name NULL
     setGeneric("arrays_zip", function(x, ...) { standardGeneric("arrays_zip") })
     
    +#' @rdname column_collection_functions
    +#' @name NULL
    +setGeneric("shuffle", function(x) { standardGeneric("shuffle") })
    --- End diff --
    
    @felixcheung 
    Changed. Thanks!


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2750/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95491/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/95562/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by huaxingao <gi...@git.apache.org>.
Github user huaxingao commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    @felixcheung @HyukjinKwon Sorry I couldn't figure out how to make the ```sequence``` work in the other PR. I will work on this one first. 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22291: [SPARK-25007][R]Add array_intersect/array_except/array_u...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22291
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22291: [SPARK-25007][R]Add array_intersect/array_except/...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/22291


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org