andygrove opened a new issue, #8645:
URL: https://github.com/apache/arrow-datafusion/issues/8645
### Is your feature request related to a problem or challenge?
We have serde support for `JsonSinkExec` but not for other file types.
```protobuf
message JsonSink {
FileSinkConfig config = 1;
}
message JsonSinkExecNode {
PhysicalPlanNode input = 1;
JsonSink sink = 2;
Schema sink_schema = 3;
PhysicalSortExprNodeCollection sort_order = 4;
}
```
### Describe the solution you'd like
Implement serde for CSV and Parquet `FileSinkExec`
### 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]