alamb commented on issue #15021: URL: https://github.com/apache/datafusion/issues/15021#issuecomment-2703715380
I was thinking about implementing this feature I think it would be a relatively straightforward implementation: 1. Extend the DataFusion explain statement to have a format field too https://docs.rs/datafusion/latest/datafusion/sql/parser/struct.ExplainStatement.html 2. Extend [DFParser](https://docs.rs/datafusion/latest/datafusion/sql/parser/struct.DFParser.html) to parse `FORMAT ...` Then we would just need to update the code in planning: https://github.com/apache/datafusion/blob/da4293323032e2408c9e3b9b28e644a96aea0f13/datafusion/sql/src/statement.rs#L177 -- 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]
