-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-11704: [R] Wire up dplyr::mutate() for datasets #9586
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
Conversation
c4cd7ac to
6d11b50
Compare
6d11b50 to
b0be6b1
Compare
Co-authored-by: Ian Cook <ianmcook@gmail.com>
|
Looks like ds %>% transmute(x=42) %>% head(1)
## Error in dataset___ScannerBuilder__ProjectExprs(self, cols, names(cols)) :
## Invalid R object for std::__1::shared_ptr<arrow::dataset::Expression>, must be an ArrowObject
ds %>% transmute(x="foo") %>% head(1)
## Error in dataset___ScannerBuilder__ProjectExprs(self, cols, names(cols)) :
## Invalid R object for std::__1::shared_ptr<arrow::dataset::Expression>, must be an ArrowObject |
|
|
|
So now we have scalar recycling in |
Correct, that's ARROW-11705 |
No description provided.