alamb commented on issue #6630:
URL:
https://github.com/apache/arrow-datafusion/issues/6630#issuecomment-1590038340
I suggest we add some sort of `CsvWriteOption` structure to make the API
more general. Perhaps something like
```rust
/// DataFusion specific writing propertoes
struct WriteProperties {
/// underlying arrow csv writer properties
csv: CsvWriterProperties,
compression: Compression
}
pub async fn write_csv(self, path: &str) -> Result<()>
--
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]