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

    https://github.com/apache/spark/pull/22107#discussion_r210156892
  
    --- Diff: R/pkg/tests/fulltests/test_sparkSQL.R ---
    @@ -2482,6 +2482,32 @@ test_that("union(), unionByName(), rbind(), 
except(), and intersect() on a DataF
       unlink(jsonPath2)
     })
     
    +test_that("intersectAll() and exceptAll()", {
    +  df1 <- createDataFrame(
    +    list(list("a", 1),
    +      list("a", 1),
    +      list("a", 1),
    +      list("a", 1),
    +      list("b", 3),
    +      list("c", 4)),
    --- End diff --
    
    nit:
    
    ```r
    list(list("a", 1), list("a", 1), list("a", 1),
         list("a", 1), list("b", 3), list("c", 4)),
    ```


---

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

Reply via email to