Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Snapshot updates for rcc-full ({"config":{"os":"ubuntu-22.04","r":"release","test-src":"test-maria","covr":true,"desc":"MariaDB with covr"}}) #2171

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions tests/testthat/_snaps/filter-dm.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
The `table` argument of `dm_filter()` is deprecated as of dm 1.0.0.
i `dm_filter()` now takes named filter expressions, the names correspond to the tables to be filtered. You no longer need to call `dm_apply_filters()` to materialize the filters.
Output
-- Table source ----------------------------------------------------------------
src: mysql [@localhost:NA/test]
-- Metadata --------------------------------------------------------------------
Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6`
Columns: 20
Expand All @@ -24,6 +26,8 @@
The `table` argument of `dm_filter()` is deprecated as of dm 1.0.0.
i `dm_filter()` now takes named filter expressions, the names correspond to the tables to be filtered. You no longer need to call `dm_apply_filters()` to materialize the filters.
Output
-- Table source ----------------------------------------------------------------
src: mysql [@localhost:NA/test]
-- Metadata --------------------------------------------------------------------
Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6`
Columns: 20
Expand All @@ -38,6 +42,8 @@
The `table` argument of `dm_filter()` is deprecated as of dm 1.0.0.
i `dm_filter()` now takes named filter expressions, the names correspond to the tables to be filtered. You no longer need to call `dm_apply_filters()` to materialize the filters.
Output
-- Table source ----------------------------------------------------------------
src: mysql [@localhost:NA/test]
-- Metadata --------------------------------------------------------------------
Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6`
Columns: 20
Expand All @@ -50,6 +56,8 @@
`dm_apply_filters()` was deprecated in dm 1.0.0.
i Calling `dm_apply_filters()` after `dm_filter()` is no longer necessary.
Output
-- Table source ----------------------------------------------------------------
src: mysql [@localhost:NA/test]
-- Metadata --------------------------------------------------------------------
Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6`
Columns: 20
Expand All @@ -62,25 +70,23 @@
The `table` argument of `dm_filter()` is deprecated as of dm 1.0.0.
i `dm_filter()` now takes named filter expressions, the names correspond to the tables to be filtered. You no longer need to call `dm_apply_filters()` to materialize the filters.
Output
# A tibble: 3 x 4
c d e e1
<chr> <int> <chr> <int>
1 worm 5 G 7
1 cat 7 F 6
2 dog 6 E 5
3 cat 7 F 6
3 worm 5 G 7
Code
dm_filter(dm_for_filter(), tf_1 = a > 4) %>% dm_apply_filters_to_tbl(tf_2)
Condition
Warning:
`dm_apply_filters_to_tbl()` was deprecated in dm 1.0.0.
i Access tables directly after `dm_filter()`.
Output
# A tibble: 3 x 4
c d e e1
<chr> <int> <chr> <int>
1 worm 5 G 7
1 cat 7 F 6
2 dog 6 E 5
3 cat 7 F 6
3 worm 5 G 7
Code
dm_filter(dm_for_filter(), tf_1, a > 4) %>% dm_get_filters()
Condition
Expand Down