-
Notifications
You must be signed in to change notification settings - Fork 991
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
mget bugs out .SD #1744
Comments
I don't think this is fully fixed: dt = data.table(a = 1, b = 2, c = 3)
dt[, {list(a, get('b')); names(.SD)}, .SDcols = 'c']
#[1] "a" "c" |
So I guess the key is that the step where |
Here's what I see in 1.9.7:
It looks like .SD becomes strange after mget is called. This looks related to #994 which was addressed in 1.9.6 according to the NEWS.
The text was updated successfully, but these errors were encountered: