gwik opened a new issue, #6613: URL: https://github.com/apache/arrow-rs/issues/6613
**Describe the bug** Array writer output is empty when no record is written. Either when no batch or only empty batches are written the output is empty. It's ok for line delimiter format but not for array format. **To Reproduce** ```rust let mut writer = ArrayWriter::new(vec![] as Vec<u8>); writer.finish().unwrap(); ``` **Expected behavior** The buffer should contain be a valid json array `[]`, instead it is empty. -- 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]
