我正在Windows上运行Postgres 9.5.7。
我正在尝试使用...创建分区表
CREATE TABLE processlog2
(
processlogid integer NOT NULL DEFAULT
nextval('processlog_processlogid_seq'::regclass),
starttime timestamp without time zone,
endtime timestamp without time zone,
durationsecs integer,
processname character(100),
itemcount integer,
comment character(255),
params character varying(20)
)
PARTITION BY RANGE (starttime );
我得到了错误信息...
ERROR: syntax error at or near "PARTITION"
LINE 12: PARTITION BY RANGE (starttime );
我认为Postgres支持分区已经有很多年了,但是我找不到关于此错误的任何消息,并且不确定我在做什么错。
有什么想法吗?
谢谢