viirya opened a new issue, #5459:
URL: https://github.com/apache/arrow-datafusion/issues/5459
**Describe the bug**
Got an error while working on other stuff in DataFusion:
```
error[E0599]: no function or associated item named `zeroed` found for struct
`BytesMut` in the current scope
--> datafusion/core/src/physical_plan/file_format/chunked_store.rs:88:56
|
88 | ... let mut buffer = BytesMut::zeroed(chunk_size);
| ^^^^^^ function or
associated item not found in `BytesMut`
```
I don't see `BytesMut.zeroed` in bytes 1.1:
https://docs.rs/bytes/1.1.0/bytes/struct.BytesMut.html.
But it's there since 1.2:
https://docs.rs/bytes/1.2.0/bytes/struct.BytesMut.html.
I upgraded `bytes` to 1.4 locally to pass build.
**To Reproduce**
Steps to reproduce the behavior:
**Expected behavior**
A clear and concise description of what you expected to happen.
**Additional context**
Add any other context about the problem here.
--
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]