projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
229eebd
)
Tiny patch fixing small documentation typo.
author
Bruce Momjian
<bruce@momjian.us>
Fri, 20 Sep 2002 03:54:21 +0000
(
03:54
+0000)
committer
Bruce Momjian
<bruce@momjian.us>
Fri, 20 Sep 2002 03:54:21 +0000
(
03:54
+0000)
Oleg Bartunov
contrib/ltree/README.ltree
patch
|
blob
|
blame
|
history
diff --git
a/contrib/ltree/README.ltree
b/contrib/ltree/README.ltree
index c552dca72d602fb4a0888b1939afe8b3c100ff8b..a23f7b0945875e566a530190de50662472c93081 100644
(file)
--- 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