Asura7969 opened a new issue, #8310:
URL: https://github.com/apache/arrow-datafusion/issues/8310
### Is your feature request related to a problem or challenge?
1、Add `quote` & `escape` for create external table
2、In addition, the DELIMITER attribute is only used in csv. Can it also be
moved to option?
### Describe the solution you'd like
```sql
CREATE EXTERNAL TABLE custom(
c1 VARCHAR DEFAULT NULL,
c2 VARCHAR DEFAULT NULL
)
STORED AS CSV
WITH HEADER ROW
OPTIONS ('delimiter' ',','read.escape' '\', 'read.quote' '~')
LOCATION 'custom.csv';
```
> `read.escape` & `read.quote` from
https://github.com/apache/arrow-datafusion/pull/8251 comment
### Describe alternatives you've considered
No
### Additional context
ref: https://github.com/apache/arrow-datafusion/pull/8251
--
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]