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

feat!: copy_dm_to() uses dm_sql(). Unique keys (#1887) and autoincrement primary keys (#1725) are created on the database. Data models with cyclic references are supported on databases that allow adding constraints in ALTER TABLE statements (at this time, all except DuckDB and SQLite, #664) #2022

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Update snapshot
  • Loading branch information
krlmlr authored and aviator-bot committed Dec 22, 2023
commit a22c0a45af3a88a672cdb6534531217b7ae58fb5
3 changes: 3 additions & 0 deletions tests/testthat/_snaps/filter-dm.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,9 @@
Code
dm_for_filter_rev() %>% dm_filter(tf_1 = a < 8 & a > 3) %>% dm_get_tables() %>%
map(harmonize_tbl)
Condition
Warning:
Autoincrementing columns not yet supported for DuckDB, these won't be set in the remote database but are preserved in the `dm`
Output
$tf_6
# A tibble: 2 x 3
Expand Down