如何使用 localfile 连接器和带有 presto 的 orc 文件格式写入结果 CTAS(板条箱表)的文件
示例查询:
CREATE TABLE localfile.default.lineitem_orc_parted with (
format = 'ORC',
partitioned_by = ARRAY['commityear'],
bucketed_by = ARRAY['linenumber'],
bucket_count = 7
) AS SELECT *,year(commitdate) as commityear from tcph.sf100.lineitem limit 100000000;
-->目录 'localfile' 不支持表属性 'format'
是否有可能有/没有分区,分桶?