Tpt opened a new pull request, #20930:
URL: https://github.com/apache/datafusion/pull/20930

   ## Rationale for this change
   
   `&[T]` is a bit nicer than `&Vec<T>` because it removes one indirection (it 
points directly to the data instead of pointing to the `Vec` struct that points 
to the data. The API for both is nearly the same.
   
   ## What changes are included in this PR?
   
   Migrates a lot of places from `&Vec<_>` to `&[_]`. Does not touch 
`TableProvider::scan` method that is currently deprecated.
   
   ## Are there any user-facing changes?
   
   Some minor API changes. The Rust compiler is fairly helpful and suggested me 
relevant changes for all broken places in DataFusion.


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to