We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
DT = data.table(id=c(rep(1L,3), rep(2L, 3)), v=bit64::as.integer64(c(1:3, NA, 5:6))) DT[2:6, sum(v), id] # id V1 # <int> <i64> #1: 1 5 #2: 2 11 DT[, "v" := as.integer(v)] # id V1 # <int> <int> #1: 1 5 #2: 2 NA
might be related to #1647
The text was updated successfully, but these errors were encountered:
gsum works on int64 column, closes #1647 #3464
0b5d251
gsum works on int64 column, closes #1647 #3464 (#3737)
a8e926a
jangorecki
Successfully merging a pull request may close this issue.
might be related to #1647
The text was updated successfully, but these errors were encountered: