scovich opened a new pull request, #9316:
URL: https://github.com/apache/arrow-rs/pull/9316

   # Which issue does this PR close?
   
   - Related to https://github.com/apache/arrow-rs/issues/8794
   
   # Rationale for this change
   
   Because `Arc<dyn Array>` (ArrayRef) implements `Array`, it's easy to create 
redundant `Arc<Arc<dyn Array>>`. The extra indirection is pure overhead (both 
cognitive and runtime) with no benefit.
   
   # What changes are included in this PR?
   
   Remove the redundant wrapping.
   
   # Are these changes tested?
   
   Compilation suffices -- failing to wrap a concrete array type in Arc would 
cause compilation failures.
   
   # Are there any user-facing changes?
   
   No.


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