OfekShilon commented on issue #33784:
URL: https://github.com/apache/arrow/issues/33784#issuecomment-1403444753

   And during save of _elements_ with class "list", list names are lost.
   ```r
   > df <- data.frame(col1=I(list(list(a=1), list(b=8))))
   > df$col1[1]
   [[1]]
   [[1]]$a            <-----
   [1] 1
   
   > tmpf <- tempfile()
   > arrow::write_feather(df, tmpf)
   > df2 <- arrow::read_feather(tmpf)
   > df2$col1[1]
   [[1]]
   <list<double>[1]>
   [[1]]              <-----
   [1] 1
   
   > unlink(tmpf)
   ```


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