aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-09-20 03:54:21 +0000
committerBruce Momjian <bruce@momjian.us>2002-09-20 03:54:21 +0000
commitec63143f8138c8594ff6bfe43ddf33d8e3c7adae (patch)
tree7a0254c23b78c0f1850bfc1ed73b037e58161dbf
parent229eebd5596fd3a2c77458eefab2fc220bbd7f50 (diff)
downloadpostgresql-ec63143f8138c8594ff6bfe43ddf33d8e3c7adae.tar.gz
postgresql-ec63143f8138c8594ff6bfe43ddf33d8e3c7adae.zip
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 c552dca72d6..a23f7b09458 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