jacksonrnewhouse opened a new issue, #6238: URL: https://github.com/apache/arrow-datafusion/issues/6238
### Is your feature request related to a problem or challenge? In https://github.com/ArroyoSystems/arroyo we use DataFusion to parse and plan SQL queries, before mapping the logical plan into a streaming dataflow. As such, our sources will tend to be datastores such as Kafka. The typical way to define a kafka source in the streaming world is with the WITH statement, e.g. ``` CREATE TABLE people ( id INT not null, name STRING not null, ) with (connection='kafka', topic='output'); SELECT * FROM people; ``` ### Describe the solution you'd like The logical plan should accept Statement::CreateTable with a non-empty with_options, so that systems that use DataFusion for planning don't need to fall back on the raw AST. ### Describe alternatives you've considered We're currently checking the raw AST to see if it has with_options and manually translating that. ### 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]
