Edit: Playing with one example uncovered two pretty unrelated bugs; not sure if I should open a separate issue. For now, I've edited the title to reflect both bugs. Here's the original description:
Related to #4156, I was playing around with tidyfast::dt_nest's output from their example:
# works
nested$data
# gives (ugly) output, no error
nested[ , data[[1]], by = grp]
# now erros
nested$data
# [[1]]
# Error in `[.data.table`(x, i, , ) :
# Internal error: column type 'NULL' not supported by data.table subset. All known types are supported so please report as bug.
A bit hard to debug since most operations involving nested give an error, but there's this:
MichaelChirico
changed the title
corrupted list column leads to internal error
returning .SD by group doesn't unlock .SD; and GForce [[ non-atomic type causes trouble
Jan 5, 2020
Edit: Playing with one example uncovered two pretty unrelated bugs; not sure if I should open a separate issue. For now, I've edited the title to reflect both bugs. Here's the original description:
Related to #4156, I was playing around with
tidyfast::dt_nest
's output from their example:We could do this without the external lib like so:
And noticed the following error:
A bit hard to debug since most operations involving
nested
give an error, but there's this:I see the nested
data.table
s arelocked
which they shouldn't be, so maybe that's relatedThe text was updated successfully, but these errors were encountered: