-
Notifications
You must be signed in to change notification settings - Fork 73
Misleading exception message in "sum" aggregator (when aggregating no columns) #352
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
Comments
Actually, my explanation is wrong. |
I suspect this is because recentDelays is a column group with only Can be reproduced with I would probably solve this by adding a case to |
we have an example in readme with
pivot { destination }.sum { recentDelays.colsOf<Int?>() } into "total delays to"
but changing the type to
colsOf<Int>
leads toWhen in fact, all direct Number inheritors are supported, it's just nullable types are not. Maybe we can support them, maybe just change the error message
The text was updated successfully, but these errors were encountered: