Skip to content

fix join select issue#147

Merged
drizk1 merged 9 commits intomainfrom
join_selectfix
Aug 7, 2025
Merged

fix join select issue#147
drizk1 merged 9 commits intomainfrom
join_selectfix

Conversation

@drizk1
Copy link
Copy Markdown
Member

@drizk1 drizk1 commented Jul 26, 2025

  • fixes issue when grouping on a join id
  • fixes cte construction issue
  • fixes select before join order execution issue
  • add ~ support for aggregate functions in mutate, similar to TidierData syntax
  • additional AWS/Athena Backend improvements

#143
#148
#149

@drizk1
Copy link
Copy Markdown
Member Author

drizk1 commented Aug 4, 2025

julia> @chain mtcars begin 
            @group_by(cyl)
            @mutate(kurt = ~kurtosis(mpg))
            @select cyl mpg kurt
            @head()
            @collect 
       end
6×3 DataFrame
 Row │ cyl    mpg      kurt     
     │ Int64  Float64  Float64  
─────┼──────────────────────────
   1 │     6     21.0  -1.82944
   2 │     6     21.0  -1.82944
   3 │     6     21.4  -1.82944
   4 │     6     18.1  -1.82944
   5 │     6     19.2  -1.82944
   6 │     6     17.8  -1.82944

@drizk1 drizk1 merged commit c2db273 into main Aug 7, 2025
3 of 4 checks passed
@drizk1 drizk1 deleted the join_selectfix branch August 7, 2025 17:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant