--
-- ltree_consistent/5
--
create or replace function ltree_consistent(
  internal,
  ltree,
  smallint,
  oid,
  internal
) returns bool as $$
ltree_consistent$$ language plpgsql;


--
-- ltree_consistent/3
--
create or replace function ltree_consistent(
  internal,
  internal,
  smallint
) returns bool as $$
ltree_consistent$$ language plpgsql;


--
-- ltree_consistent/5
--
create or replace function ltree_consistent(
  internal,
  internal,
  smallint,
  oid,
  internal
) returns bool as $$
ltree_consistent$$ language plpgsql;