-
Notifications
You must be signed in to change notification settings - Fork 70
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
[Compiler plugin] Support more GroupBy shortcuts #1055
Conversation
78adc61
to
b1f9bf3
Compare
@@ -42,6 +42,15 @@ public fun <T, G> GroupBy<T, G>.concat(): DataFrame<G> = groups.concat() | |||
|
|||
// endregion | |||
|
|||
// region ReducedGroupBy | |||
|
|||
public fun <T, G> ReducedGroupBy<T, G>.concat(): DataFrame<G> = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this used anywhere? If I look for usages I cannot find any
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe we just need a junit test, we can do it later, just make sure it's in our excel sheet in the right place after moving it here :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think it was overlooked because it was not in a good place! I will likely revisit it, because sometimes it can produce empty dataframe, need to check that with compiler plugin we'd have a reasonable exception in this case
b1f9bf3
to
981a47c
Compare
Now these are supported: