thisisnic commented on issue #35333:
URL: https://github.com/apache/arrow/issues/35333#issuecomment-1523748667
Thanks for responding there @westonpace!
Yes, an alternative to my code suggestion above could be to use `mutate()`
to cast ID to an int64, e.g. finish the code block there with:
```
resultsArrow <- arrowTable |>
mutate(id = cast(id, int64())) |>
dplyr::inner_join(arrowTable2, by="id") |> dplyr::compute()
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]