OfekShilon opened a new issue, #33784:
URL: https://github.com/apache/arrow/issues/33784

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   (and in addition, adds a `ptype` attribute - as already detailed in #15248)
   
   ```r
   # One way to create column with class list:
   library(tibble)
   tb <- tibble(list_column = list(c(a = 1, b = 2)))
   df <- as.data.frame(tb)
   class(df$list_column)
   # [1] "list"
   
   # Write + read back
   tmpf <- tempfile()
   arrow::write_feather(df, tmpf)
   df2 <- arrow::read_feather(tmpf)
   class(df2$list_column)
   # [1] "arrow_list"    "vctrs_list_of" "vctrs_vctr"    "list"         
   
   unlink(tmpf)
   ```
   
   
   
   
   ### Component(s)
   
   R


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

Reply via email to