mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 14:47:29 -04:00
Fix docs so indexes can be built by commenting out GiST/GIN index
entries in textsearch.sgml.
This commit is contained in:
parent
79048ca1a4
commit
6e832b059e
1 changed files with 6 additions and 4 deletions
|
|
@ -1822,13 +1822,14 @@ SHOW default_text_search_config;
|
|||
|
||||
<indexterm zone="textsearch-indexes">
|
||||
<primary>text search</primary>
|
||||
<secondary>GIST</secondary>
|
||||
<secondary>GiST</secondary>
|
||||
</indexterm>
|
||||
|
||||
<!--
|
||||
<indexterm zone="textsearch-indexes">
|
||||
<primary>GIST</primary>
|
||||
<primary>GiST</primary>
|
||||
</indexterm>
|
||||
|
||||
-->
|
||||
<term>
|
||||
<synopsis>
|
||||
CREATE INDEX <replaceable>name</replaceable> ON <replaceable>table</replaceable> USING gist(<replaceable>column</replaceable>);
|
||||
|
|
@ -1851,10 +1852,11 @@ SHOW default_text_search_config;
|
|||
<secondary>GIN</secondary>
|
||||
</indexterm>
|
||||
|
||||
<!--
|
||||
<indexterm zone="textsearch-indexes">
|
||||
<primary>GIN</primary>
|
||||
</indexterm>
|
||||
|
||||
-->
|
||||
<term>
|
||||
<synopsis>
|
||||
CREATE INDEX <replaceable>name</replaceable> ON <replaceable>table</replaceable> USING gin(<replaceable>column</replaceable>);
|
||||
|
|
|
|||
Loading…
Reference in a new issue