kou commented on PR #48753:
URL: https://github.com/apache/arrow/pull/48753#issuecomment-3717747235

   Thanks for investing this but how did you confirm that 
`Ractor.make_sharable(chunked_array)` doesn't call `chunked_array.freeze`?
   
   It seems that `chunked_array.freeze` is called:
   
   ```ruby
   require "arrow"
   chunked_array = Arrow::ChunkedArray.new([Arrow::Int8Array.new([1])])
   pp chunked_array.instance_variables # => []
   Ractor.make_sharable(chunked_array)
   pp chunked_array.instance_variables # => [:@chunks]
   ```
   


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