-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
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
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.quotefrom https://github.com/apache/arrow-datafusion/pull/8251 comment
Describe alternatives you've considered
No
Additional context
Related: #8251
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request