From 642334b1a4b85223c1fe53830f47a2cd08ea7565 Mon Sep 17 00:00:00 2001 From: "aviator-app[bot]" Date: Fri, 22 Dec 2023 14:27:04 +0000 Subject: [PATCH] [create-pull-request] automated change --- tests/testthat/_snaps/filter-dm.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/tests/testthat/_snaps/filter-dm.md b/tests/testthat/_snaps/filter-dm.md index 177b237760..e499fe5ff7 100644 --- a/tests/testthat/_snaps/filter-dm.md +++ b/tests/testthat/_snaps/filter-dm.md @@ -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: Microsoft SQL Server 16.00.4095[dbo@fv-az1496-324/master] -- Metadata -------------------------------------------------------------------- Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6` Columns: 20 @@ -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: Microsoft SQL Server 16.00.4095[dbo@fv-az1496-324/master] -- Metadata -------------------------------------------------------------------- Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6` Columns: 20 @@ -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: Microsoft SQL Server 16.00.4095[dbo@fv-az1496-324/master] -- Metadata -------------------------------------------------------------------- Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6` Columns: 20 @@ -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: Microsoft SQL Server 16.00.4095[dbo@fv-az1496-324/master] -- Metadata -------------------------------------------------------------------- Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6` Columns: 20 @@ -62,12 +70,11 @@ 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 - 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 @@ -75,12 +82,11 @@ `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 - 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