paleolimbot opened a new pull request #12558:
URL: https://github.com/apache/arrow/pull/12558
This is a very WIP draft that currently just sketches a few things related
to calling into R from other threads. Some code to get started:
``` r
arrow:::TestSafeCallIntoR(
list(
function() "string one",
function() "string two"
)
)
#> [1] "string one" "string two"
arrow:::TestSafeCallIntoR(
list(
function() stop("This is an error!")
)
)
#> Error in (function () : This is an error!
```
--
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]