Smotrov opened a new issue, #16260:
URL: https://github.com/apache/datafusion/issues/16260
### Is your feature request related to a problem or challenge?
When storing data with some compression like here
```Rust
// Create CSV options with gzip compression
let csv_options = CsvOptions {
compression: CompressionTypeVariant::GZIP,
..Default::default()
};
result_df
.write_csv(OUTPUT_PATH, write_options, Some(csv_options))
.await
.map_err(|e| {
error!("Failed to write results to S3: {}", e);
e
})?;
```
stored files has only `.csv` compression but not `.csv.gz` which could be
misleading later.
### Describe the solution you'd like
Would be grate if it will be configurable or defaulted to used compression.
### Describe alternatives you've considered
_No response_
### Additional context
_No response_
--
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]