Commit f66a3ca2 authored by Tom Lane's avatar Tom Lane

Un-break ltree.

parent 3c4768d0
...@@ -235,7 +235,7 @@ CREATE OPERATOR @> ( ...@@ -235,7 +235,7 @@ CREATE OPERATOR @> (
RIGHTARG = ltree, RIGHTARG = ltree,
PROCEDURE = ltree_isparent, PROCEDURE = ltree_isparent,
COMMUTATOR = '<@', COMMUTATOR = '<@',
RESTRICT = parentsel, RESTRICT = ltreeparentsel,
JOIN = contjoinsel JOIN = contjoinsel
); );
...@@ -253,7 +253,7 @@ CREATE OPERATOR <@ ( ...@@ -253,7 +253,7 @@ CREATE OPERATOR <@ (
RIGHTARG = ltree, RIGHTARG = ltree,
PROCEDURE = ltree_risparent, PROCEDURE = ltree_risparent,
COMMUTATOR = '@>', COMMUTATOR = '@>',
RESTRICT = parentsel, RESTRICT = ltreeparentsel,
JOIN = contjoinsel 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