Skip to content
Snippets Groups Projects
Commit f66a3ca2 authored by Tom Lane's avatar Tom Lane
Browse files

Un-break ltree.

parent 3c4768d0
No related branches found
No related tags found
No related merge requests found
...@@ -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
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment