-
Notifications
You must be signed in to change notification settings - Fork 370
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
Avoid overflow #862
Avoid overflow #862
Conversation
That wouldn't fully resolve the overflow problem. If the frame is grouped by, say, 4 columns with >2^16 unique elements each (or 8 columns with >2^8 uniques), UInt64 would be overflown as well. An alternative solution would be to use |
What is panda / dplyr / data table doing ? Surely they solved this. |
|
Throwing something more informative than current |
Ok. Your fix looks better. Could you add the |
Correct the following bug :
(initially part of pull request #815)