I am trying to create a PostgreSQL table with partition and fillfactor and I am getting an error
CREATE TABLE public."Test1" (
col1 int NOT NULL GENERATED BY DEFAULT AS IDENTITY,
col2 varchar NULL,
col3 date null
)
partition by range (col3)
WITH (
fillfactor=80
);
and the error is:
Error occurred during SQL query execution
Reason:
SQL Error [22023]: ERROR: unrecognized parameter "fillfactor
Able to create a PostgreSQL table with fillfactor and without partition. The version I am using is 14.