INDEX with optional storage parameter value

Поиск
Список
Период
Сортировка
От PG Doc comments form
Тема INDEX with optional storage parameter value
Дата
Msg-id 159283163235.684.4482737698910467437@wrigleys.postgresql.org
обсуждение исходный текст
Ответы Re: INDEX with optional storage parameter value
Список 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 по дате отправления:

Предыдущее
От: Erik Rijkers
Дата:
Сообщение: Re: wrong output column title in example
Следующее
От: Steve Estes
Дата:
Сообщение: Summary of DDL/DML statement return/output values?