我创建了带有列表分区的表。所有分区表均已创建,但创建默认分区时遇到错误。
以下是我遇到的错误。我正在使用Postgres 10.4。
create table test (id int, val int) partition by list(val); --worked fine
create table test_1 partition of test for values in (1); --worked fine
create table test_def partition of test DEFAULT; --throws error
对于最后一条语句,我得到以下错误。
错误:“默认”处或附近的语法错误
请帮助。
答案 0 :(得分:1)