Skip to content

Commit

Permalink
one last format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
drizk1 authored Oct 1, 2024
1 parent eb32187 commit b478b38
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/examples/UserGuide/ex_joining.jl
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@
# @head(5)
# @collect
# end
# ```
# ```
# 5×2 DataFrame
# Row │ car model
# │ String String
Expand Down Expand Up @@ -113,12 +115,11 @@
# end;
#
# # access the view like as if it was any other table
# @chain db_table(db, viewer) begin
# @chain db_table(db, "viewer") begin
# @left_join(t(query2), cyl, cyl)
# @group_by(efficiency)
# @summarize(avg_mean = mean(mpg))
# @mutate(mean = avg_mean / 4 )
# @aside @show_query _
# @collect
# end
# ```
Expand Down

2 comments on commit b478b38

@drizk1
Copy link
Member Author

@drizk1 drizk1 commented on b478b38 Oct 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • 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)

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/116428

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.0 -m "<description of version>" b478b3809d511178eb91dff0fe024cbdeec6815d
git push origin v0.4.0

Please sign in to comment.