diff options
| author | Bruce Momjian | 2006-04-26 18:28:34 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2006-04-26 18:28:34 +0000 |
| commit | b3e4aefcfb8174838159ccc82026512a608a6f0b (patch) | |
| tree | d410ce6516f23c19633b3dd6454b8cfaefbcf8ac /contrib | |
| parent | 0df32e3cbef991f2fcec6498ff882d8172a35d28 (diff) | |
Enhanced containment selectivity function for /contrib/ltree
Matteo Beccati
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/ltree/ltree.sql.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/ltree/ltree.sql.in b/contrib/ltree/ltree.sql.in index 8e7d5680a84..bdb8bdf52cb 100644 --- a/contrib/ltree/ltree.sql.in +++ b/contrib/ltree/ltree.sql.in @@ -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 ); |
