Commit f66a3ca2 authored by Tom Lane's avatar Tom Lane

Un-break ltree.

parent 3c4768d0
......@@ -235,7 +235,7 @@ CREATE OPERATOR @> (
RIGHTARG = ltree,
PROCEDURE = ltree_isparent,
COMMUTATOR = '<@',
RESTRICT = parentsel,
RESTRICT = ltreeparentsel,
JOIN = contjoinsel
);
......@@ -253,7 +253,7 @@ CREATE OPERATOR <@ (
RIGHTARG = ltree,
PROCEDURE = ltree_risparent,
COMMUTATOR = '@>',
RESTRICT = parentsel,
RESTRICT = ltreeparentsel,
JOIN = contjoinsel
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment