语法错误?误解

一个简单的语句 总是跑不过去呢? 语法错误!

create table aggregate_tbl
(
site_id int not null comment “id of site”,
date DATE not null comment “time of event”,
city_code varchar(20) comment “city_code of user”,
pv bigint sum default “0” comment “total page views”
) ENGINE=OLAP
PARTITION by list (“city_code”)
(
partition p1 values (“3310”),
partition p2 values (“3320”),
partition p3 values (“3360”),
partition p4 values (“3355”)
)
distributed by hash(site_id) buckets 120 properties
( replication_num = “3”)
;

你好,目前不支持list分区,只支持range分区,可以参考数据分布