metesynnada opened a new issue, #5126: URL: https://github.com/apache/arrow-datafusion/issues/5126
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** ```sql CREATE EXTERNAL TABLE t(c1 int) STORED AS CSV PARTITIONED BY (p1 int) LOCATION 'foo.csv' ``` is supported, however, we cannot inject unbounded and ordered information like other flags. A basic usage can be ```sql CREATE EXTERNAL TABLE t(c1 int) STORED AS CSV ORDERED BY (p1 int) LOCATION 'foo.csv' UNBOUNDED ``` but, of course, I am open to better word selection. The problem is not limited to CSV, we need to support JSON and AVRO types also. **Describe the solution you'd like** The problem requires the `sqlparser` crate to be changed first. Then, we apply necessary flag declarations and logical plan changes here. **Describe alternatives you've considered** NA **Additional context** Na -- 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]
