summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2002-09-20 03:54:21 +0000
committerBruce Momjian2002-09-20 03:54:21 +0000
commit7655ded997ae663ccd12d2abac631d52d103cf14 (patch)
tree27f4ae8c6c9d095070a6a5e38db5d5c3f67b0cbe
parent49f06f0fe284b23d1a63885520731ad77c989cdb (diff)
Tiny patch fixing small documentation typo.
Oleg Bartunov
-rw-r--r--contrib/ltree/README.ltree4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/ltree/README.ltree b/contrib/ltree/README.ltree
index c552dca72d..a23f7b0945 100644
--- a/contrib/ltree/README.ltree
+++ b/contrib/ltree/README.ltree
@@ -144,11 +144,11 @@ Various indices could be created to speed up execution of operations:
* GiST index over ltree:
<, <=, =, =>, >, @>, <@, @, ~
Example:
- create index path_gist_idx on test using gist_ltree_ops (path);
+ create index path_gist_idx on test using gist (path);
* GiST index over ltree[]:
ltree[]<@ ltree, ltree @> ltree[], @, ~.
Example:
- create index path_gist_idx on test using gist__ltree_ops (array_path);
+ create index path_gist_idx on test using gist (array_path);
Notices: This index is lossy.
FUNCTIONS