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:
@ -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
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user