Skip to content
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

rbindlist support for raw types #2819

Closed
HughParsonage opened this issue May 2, 2018 · 2 comments · Fixed by #3455
Closed

rbindlist support for raw types #2819

HughParsonage opened this issue May 2, 2018 · 2 comments · Fixed by #3455
Milestone

Comments

@HughParsonage
Copy link
Member

HughParsonage commented May 2, 2018

# Minimal reproducible example

library(data.table)
rbindlist(list(data.table(x = raw(1)), data.table(x = raw(1))))
#> Error in rbindlist(list(data.table(x = raw(1)), data.table(x = raw(1)))) : 
#>  Unsupported column type 'raw'

# Output of sessionInfo()

R version 3.5.0 (2018-04-23)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)

Matrix products: default

locale:
[1] LC_COLLATE=English_Australia.1252  LC_CTYPE=English_Australia.1252    LC_MONETARY=English_Australia.1252
[4] LC_NUMERIC=C                       LC_TIME=English_Australia.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] data.table_1.11.0

loaded via a namespace (and not attached):
[1] compiler_3.5.0  magrittr_1.5    tools_3.5.0     yaml_2.1.18     fastmatch_1.1-0 hutils_1.1.0  
@MichaelChirico
Copy link
Member

MichaelChirico commented May 2, 2018 via email

@HughParsonage
Copy link
Member Author

Yes:

rbind(data.frame(x = raw(1)), data.frame(x = raw(1)))
#>   x
#>1 00
#>2 00

@mattdowle mattdowle added this to the 1.12.2 milestone Mar 14, 2019
@mattdowle mattdowle mentioned this issue Mar 14, 2019
8 tasks
mattdowle added a commit that referenced this issue Mar 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants