Skip to content

v0.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 01 Oct 21:28
· 27 commits to main since this release
b478b38

TidierDB v0.4.0

Diff since v0.3.5

  • adds @create_view - db_table already supports using views
  • adds drop_view
  • adds support for joining a queried table with another queried table
  • adds joining docs to outline using t() or @create_view for post wrangling joins
  • bug fix to allow cross database/schema joins with duckdb
  • corrects across name generation to be name_func to match TidierData, rather than func_name
    Breaking Change
  • To enable post wrangling joins, all joins no longer accept bare table names. tables that exist on a db must be written as strings or symbols (ie "table.name" or :table)

Merged pull requests:

Closed issues:

  • Add example for how to connect to a local duckdb database (#64)
  • Allows joins be able to accept TidierDB queries as the second table argument. (#66)