|
5 | 5 | Condition
|
6 | 6 | Warning:
|
7 | 7 | The `table` argument of `dm_filter()` is deprecated as of dm 1.0.0.
|
8 |
| - `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. |
| 8 | + 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. |
9 | 9 | Output
|
10 | 10 | -- Metadata --------------------------------------------------------------------
|
11 | 11 | Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6`
|
|
19 | 19 | Condition
|
20 | 20 | Warning:
|
21 | 21 | The `dm` argument of `dm_filter()` is deprecated as of dm 1.0.0.
|
22 |
| - Please use the `.dm` argument instead. |
| 22 | + i Please use the `.dm` argument instead. |
23 | 23 | Warning:
|
24 | 24 | The `table` argument of `dm_filter()` is deprecated as of dm 1.0.0.
|
25 |
| - `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. |
| 25 | + 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. |
26 | 26 | Output
|
27 | 27 | -- Metadata --------------------------------------------------------------------
|
28 | 28 | Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6`
|
|
36 | 36 | Condition
|
37 | 37 | Warning:
|
38 | 38 | The `table` argument of `dm_filter()` is deprecated as of dm 1.0.0.
|
39 |
| - `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. |
| 39 | + 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. |
40 | 40 | Output
|
41 | 41 | -- Metadata --------------------------------------------------------------------
|
42 | 42 | Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6`
|
|
48 | 48 | Condition
|
49 | 49 | Warning:
|
50 | 50 | `dm_apply_filters()` was deprecated in dm 1.0.0.
|
51 |
| - Calling `dm_apply_filters()` after `dm_filter()` is no longer necessary. |
| 51 | + i Calling `dm_apply_filters()` after `dm_filter()` is no longer necessary. |
52 | 52 | Output
|
53 | 53 | -- Metadata --------------------------------------------------------------------
|
54 | 54 | Tables: `tf_1`, `tf_2`, `tf_3`, `tf_4`, `tf_5`, `tf_6`
|
|
60 | 60 | Condition
|
61 | 61 | Warning:
|
62 | 62 | The `table` argument of `dm_filter()` is deprecated as of dm 1.0.0.
|
63 |
| - `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. |
| 63 | + 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. |
64 | 64 | Output
|
65 | 65 | # A tibble: 3 x 4
|
66 | 66 | c d e e1
|
|
73 | 73 | Condition
|
74 | 74 | Warning:
|
75 | 75 | `dm_apply_filters_to_tbl()` was deprecated in dm 1.0.0.
|
76 |
| - Access tables directly after `dm_filter()`. |
| 76 | + i Access tables directly after `dm_filter()`. |
77 | 77 | Output
|
78 | 78 | # A tibble: 3 x 4
|
79 | 79 | c d e e1
|
|
86 | 86 | Condition
|
87 | 87 | Warning:
|
88 | 88 | The `table` argument of `dm_filter()` is deprecated as of dm 1.0.0.
|
89 |
| - `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. |
| 89 | + 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. |
90 | 90 | Output
|
91 | 91 | # A tibble: 1 x 3
|
92 | 92 | table filter zoomed
|
|
97 | 97 | Condition
|
98 | 98 | Warning:
|
99 | 99 | `dm_get_filters()` was deprecated in dm 1.0.0.
|
100 |
| - Filter conditions are no longer stored with the dm object. |
| 100 | + i Filter conditions are no longer stored with the dm object. |
101 | 101 | Output
|
102 | 102 | # A tibble: 0 x 3
|
103 |
| - # ... with 3 variables: table <chr>, filter <list>, zoomed <lgl> |
| 103 | + # i 3 variables: table <chr>, filter <list>, zoomed <lgl> |
104 | 104 |
|
105 | 105 | # data structure
|
106 | 106 |
|
|
223 | 223 | Code
|
224 | 224 | dm_for_filter_rev() %>% dm_filter(tf_1 = a < 8 & a > 3) %>% dm_get_tables() %>%
|
225 | 225 | map(harmonize_tbl)
|
226 |
| - Condition |
227 |
| - Warning: |
228 |
| - Autoincrementing columns not yet supported for DuckDB, these won't be set in the remote database but are preserved in the `dm` |
229 | 226 | Output
|
230 | 227 | $tf_6
|
231 | 228 | # A tibble: 2 x 3
|
|
0 commit comments