romainfrancois commented on pull request #7819:
URL: https://github.com/apache/arrow/pull/7819#issuecomment-676369629


   I'm trying to debug what's wrong with the python tests that I previously 
silenced in this PR: 
   
   That looks fine: 
   
   ``` r
   library(reticulate)
   #> Warning: package 'reticulate' was built under R version 4.0.2
   pa <- reticulate::import("pyarrow")
   py <- pa$array(c(1, 2, 3))
   str(py)
   #> [
   #>   1,
   #>   2,
   #>   3
   #> ]
   class(py)
   #> [1] "pyarrow.lib.DoubleArray"        "pyarrow.lib.FloatingPointArray"
   #> [3] "pyarrow.lib.NumericArray"       "pyarrow.lib.Array"             
   #> [5] "pyarrow.lib._PandasConvertible" "python.builtin.object"
   ```
   
   But then if I also load `arrow` I'm getting a segfault on `pa$array()` call: 
   
   ```r
   library(reticulate)
   library(arrow)
   pa <- reticulate::import("pyarrow")
   py <- pa$array(c(1, 2, 3))
   ```


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to