INDEX with optional storage parameter value - Mailing list pgsql-docs

From PG Doc comments form
Subject INDEX with optional storage parameter value
Date
Msg-id 159283163235.684.4482737698910467437@wrigleys.postgresql.org
Whole thread Raw
Responses Re: INDEX with optional storage parameter value
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/12/sql-createindex.html
Description:

Hello!
I noticed an slight inaccuracy in the documentation for CREATE INDEX and
ALTER INDEX:

CREATE INDEX ... [ WITH ( storage_parameter = value [, ... ] ) ]
ALTER INDEX [ IF EXISTS ] name SET ( storage_parameter = value [, ... ] )

In indices, as in tables, you can omit the вoolean value for a parameter.
For example:

CREATE INDEX ON public.testtable USING GIN (c1) WITH (fastupdate);
ALTER INDEX testtable_c1_idx SET (fastupdate);

It might be more correct to use the construct from CREATE TABLE: 

storage_parameter [= value] [, ... ]

pgsql-docs by date:

Previous
From: Erik Rijkers
Date:
Subject: Re: wrong output column title in example
Next
From: Steve Estes
Date:
Subject: Summary of DDL/DML statement return/output values?