1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Enhanced containment selectivity function for /contrib/ltree

Matteo Beccati
This commit is contained in:
Bruce Momjian
2006-04-26 18:28:34 +00:00
parent 0df32e3cbe
commit b3e4aefcfb
5 changed files with 190 additions and 7 deletions

View File

@ -230,7 +230,7 @@ CREATE OPERATOR @> (
RIGHTARG = ltree,
PROCEDURE = ltree_isparent,
COMMUTATOR = '<@',
RESTRICT = contsel,
RESTRICT = parentsel,
JOIN = contjoinsel
);
@ -248,7 +248,7 @@ CREATE OPERATOR <@ (
RIGHTARG = ltree,
PROCEDURE = ltree_risparent,
COMMUTATOR = '@>',
RESTRICT = contsel,
RESTRICT = parentsel,
JOIN = contjoinsel
);