Skip to content

Commit

Permalink
Remove tbl_vars() implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Aug 6, 2023
1 parent b6abfd2 commit fbc8944
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 61 deletions.
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ S3method(slice_head,duckplyr_df)
S3method(slice_tail,duckplyr_df)
S3method(summarise,duckplyr_df)
S3method(symdiff,duckplyr_df)
S3method(tbl_vars,duckplyr_df)
S3method(transmute,duckplyr_df)
S3method(ungroup,duckplyr_df)
S3method(union,duckplyr_df)
Expand Down
27 changes: 0 additions & 27 deletions R/tbl_vars.R

This file was deleted.

3 changes: 0 additions & 3 deletions dplyr-methods/tbl_vars.txt

This file was deleted.

29 changes: 0 additions & 29 deletions patch/tbl_vars.patch

This file was deleted.

4 changes: 3 additions & 1 deletion tools/00-funs.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ df_methods <-
# methods we don't need to implement but can test
mutate(skip_impl = name %in% c(
"collapse", "tally",
"slice_min", "slice_max", "slice_sample"
"slice_min", "slice_max", "slice_sample",
"tbl_vars",
NULL
)) %>%
mutate(is_tbl_return = !(name %in% c(
# Special case: forward to `NextMethod()`, don't change output
Expand Down

0 comments on commit fbc8944

Please sign in to comment.