diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-04-27 00:58:20 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-04-27 00:58:20 +0000 |
commit | f66a3ca267fcded0d222e9a8cfc865f4dff24524 (patch) | |
tree | 4ffeb63f14654e98d25103849e7a990f73622481 | |
parent | 3c4768d0d17d4569f2417aa5741e0317404b6c45 (diff) |
Un-break ltree.
-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 df32c0c501c..c031b84f2bd 100644 --- a/contrib/ltree/ltree.sql.in +++ b/contrib/ltree/ltree.sql.in @@ -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 ); |