Skip to content

Commit

Permalink
Remove other extraneous argument from semi_join
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisnic committed Jan 16, 2023
1 parent 4aa3754 commit 1ba06e2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions r/R/dplyr-join.R
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,8 @@ semi_join.arrow_dplyr_query <- function(x,
y,
by = NULL,
copy = FALSE,
suffix = c(".x", ".y"),
...) {
do_join(x, y, by, copy, suffix, ..., join_type = "LEFT_SEMI")
do_join(x, y, by, copy, ..., join_type = "LEFT_SEMI")
}
semi_join.Dataset <- semi_join.ArrowTabular <- semi_join.RecordBatchReader <- semi_join.arrow_dplyr_query

Expand Down

0 comments on commit 1ba06e2

Please sign in to comment.