Set FILLFACTOR for primary key - Mailing list pgsql-sql

From Ed Behn
Subject Set FILLFACTOR for primary key
Date
Msg-id CAJBL5DPJXWjuB9hXuRY6zmv+O5kaXS-vPeeu+rg=hhFMtKwezg@mail.gmail.com
Whole thread Raw
Responses Re: Set FILLFACTOR for primary key  (Peter Geoghegan <pg@bowt.ie>)
List pgsql-sql
I have a table where I INSERT rows and DELETE rows. However, they are UPDATEd. Therefore, I've set FILLFACTOR to 100% for all of the indexes. However, I can't figure out how to set the FILLFACTOR to 100 for the primary key. I think it's just a matter of syntax that I can't seem to wrap my head around. 

My code looks like:

ALTER TABLE table ADD CONSTRAINT table_pkey PRIMARY KEY (col1, col2) USING INDEX TABLESPACE ts_indexes;

How should this be changed to set the FILLFACTOR or am I missing something fundamental about primary keys?

            -Ed 

pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: pg_dump compatibility level / use create view instead of create table/rule
Next
From: Peter Geoghegan
Date:
Subject: Re: Set FILLFACTOR for primary key