Aliyun Data Lake Analytics (Presto) - Add partition on non-existing location
CREATE EXTERNAL TABLE person (
`id` int,
`name` string,
`age` int
)
STORED AS TEXTFILE
LOCATION 'oss://bucket001/dir001/'
TBLPROPERTIES (
'auto.create.location'='true'
);Last updated