alamb commented on issue #6674:
URL:
https://github.com/apache/arrow-datafusion/issues/6674#issuecomment-1593150275
So the proposal is to change from
```rust
self.all_values.reserve(self.all_values.len() + array.len());
```
to
```rust
self.all_values.reserve(array.len());
```
Sounds like a great first issue to me (bonus points for reviewing other uses
of `reserve` in the codebase for similar issues)
--
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]