Is your feature request related to a problem or challenge?
DataFusion supports many FileTypeWriterOptions:
pub enum FileTypeWriterOptions {
#[cfg(feature = "parquet")]
Parquet(ParquetWriterOptions),
CSV(CsvWriterOptions),
JSON(JsonWriterOptions),
Avro(AvroWriterOptions),
Arrow(ArrowWriterOptions),
}
The serde support in the datafusion-proto crate currently only supports JSON:
message FileTypeWriterOptions {
oneof FileType {
JsonWriterOptions json_options = 1;
}
}
Describe the solution you'd like
Add serde support for Parquet FileTypeWriterOptions
Describe alternatives you've considered
No response
Additional context
No response
Is your feature request related to a problem or challenge?
DataFusion supports many FileTypeWriterOptions:
The serde support in the
datafusion-protocrate currently only supports JSON:Describe the solution you'd like
Add serde support for Parquet FileTypeWriterOptions
Describe alternatives you've considered
No response
Additional context
No response