在Doris2.1.0版本中查询S3文件解析有问题

Viewed 37

https://doris.apache.org/zh-CN/docs/sql-manual/sql-functions/table-functions/s3
这个是官方文档上有trim_double_quotes参数,但是没有enclose这个参数。

image.png
select * from s3("uri" = "https://xxxx/123.csv",
"ACCESS_KEY"= "xxxx",
"SECRET_KEY" = "xxxx",
"column_separator"=",",
-- "enclose" = '"',
"compress_type" = "PLAIN",
"REGION" = "ap-shanghai",
-- "trim_double_quotes"="true",
"use_path_style" = "false"
) ;

https://doris.apache.org/zh-CN/docs/dev/sql-manual/sql-reference/Data-Manipulation-Statements/Load/STREAM-LOAD#description 发现是能够支持 csv 本地文件导入的, 但是在S3的场景中不支持。请问一下有支持的计划吗

1 Answers