Index: contrib/ltree/README.ltree =================================================================== RCS file: /projects/cvsroot/pgsql-server/contrib/ltree/README.ltree,v retrieving revision 1.6 diff -c -r1.6 README.ltree *** contrib/ltree/README.ltree 31 Mar 2003 20:53:45 -0000 1.6 --- contrib/ltree/README.ltree 25 Jan 2004 09:19:17 -0000 *************** *** 146,154 **** Various indices could be created to speed up execution of operations: * B-tree index over ltree: ! <, <=, =, =>, > * GiST index over ltree: ! <, <=, =, =>, >, @>, <@, @, ~, ? Example: create index path_gist_idx on test using gist (path); * GiST index over ltree[]: --- 146,154 ---- Various indices could be created to speed up execution of operations: * B-tree index over ltree: ! <, <=, =, >=, > * GiST index over ltree: ! <, <=, =, >=, >, @>, <@, @, ~, ? Example: create index path_gist_idx on test using gist (path); * GiST index over ltree[]: *************** *** 500,506 **** ltree: 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 ! operations <, <=, =, =>, > using left_bound, right_bound and prune branches of a tree using signature. ------------------------------------------------------------------------------- We ask people who find the module useful to send us a postcards to: --- 500,506 ---- ltree: 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 ! operations <, <=, =, >=, > using left_bound, right_bound and prune branches of a tree using signature. ------------------------------------------------------------------------------- We ask people who find the module useful to send us a postcards to: