jeremiedb commented on issue #336:
URL: https://github.com/apache/arrow-julia/issues/336#issuecomment-1326892898

   The issue wan't OS / Windows specific as the above example crashed Julia 
session on Ubuntu.
   In order to write to the same path that was read from, a `copy` looks 
necessary. For example, the following does work:
   ```
   using Arrow
   using DataFrames
   
   df = DataFrame(rand(100, 100), :auto)
   Arrow.write("test.arrow", df)
   df = copy(DataFrame(Arrow.Table("test.arrow")))
   Arrow.write("test.arrow", df)
   ``` 


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