-
Notifications
You must be signed in to change notification settings - Fork 76
Closed
Labels
Compiler pluginAnything related to the DataFrame Compiler PluginAnything related to the DataFrame Compiler PluginenhancementNew feature or requestNew feature or requestgood first issueGood issues to pick-up for newcomersGood issues to pick-up for newcomers
Milestone
Description
In the selection dsl you can write:
myGroup.cols()
if you want to refer to all columns nested inside the group.
This is allowed, because the default argument makes it myGroup.cols { true }
.
However, because we use a predicate, we cannot get compiler plugin support for that function.
It's better to let users use all()
and allCols()
instead. It's more expressive and can get compiler plugin backing :)
We need to simply create overloads for cols()
without argument, deprecate them and point people to the all()
family.
Metadata
Metadata
Assignees
Labels
Compiler pluginAnything related to the DataFrame Compiler PluginAnything related to the DataFrame Compiler PluginenhancementNew feature or requestNew feature or requestgood first issueGood issues to pick-up for newcomersGood issues to pick-up for newcomers