mirror of
https://github.com/postgres/postgres.git
synced 2025-11-25 12:03:53 +03:00
docs: consistently uppercase index method and add spacing
Consistently uppercase index method names, e.g. GIN, and add space after the index method name and the parentheses enclosing the column names.
This commit is contained in:
@@ -637,7 +637,7 @@ CREATE UNIQUE INDEX title_idx ON films (title) WITH (fillfactor = 70);
|
||||
<para>
|
||||
To create a <acronym>GIN</> index with fast updates disabled:
|
||||
<programlisting>
|
||||
CREATE INDEX gin_idx ON documents_table USING gin (locations) WITH (fastupdate = off);
|
||||
CREATE INDEX gin_idx ON documents_table USING GIN (locations) WITH (fastupdate = off);
|
||||
</programlisting>
|
||||
</para>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user