Docs fix from Kris Jurka <books@ejurka.com>

This commit is contained in:
Teodor Sigaev 2004-01-26 15:08:52 +00:00
parent ee2f149d30
commit 146aab497e
1 changed files with 3 additions and 3 deletions

View File

@ -146,9 +146,9 @@ INDICES
Various indices could be created to speed up execution of operations: Various indices could be created to speed up execution of operations:
* B-tree index over ltree: * B-tree index over ltree:
<, <=, =, =>, > <, <=, =, >=, >
* GiST index over ltree: * GiST index over ltree:
<, <=, =, =>, >, @>, <@, @, ~, ? <, <=, =, >=, >, @>, <@, @, ~, ?
Example: Example:
create index path_gist_idx on test using gist (path); create index path_gist_idx on test using gist (path);
* GiST index over ltree[]: * GiST index over ltree[]:
@ -500,7 +500,7 @@ GiST, which provides indexed access.
ltree: ltree:
For ltree we store LPS in a B-tree, implemented using GiST. Each node entry is For ltree we store LPS in a B-tree, implemented using GiST. Each node entry is
represented by (left_bound, signature, right_bound), so that we could speedup represented by (left_bound, signature, right_bound), so that we could speedup
operations <, <=, =, =>, > using left_bound, right_bound and prune branches of operations <, <=, =, >=, > using left_bound, right_bound and prune branches of
a tree using signature. a tree using signature.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
We ask people who find the module useful to send us a postcards to: We ask people who find the module useful to send us a postcards to: