--
-- lo_import/1
--
create or replace function lo_import(
  text
) returns oid as $$
be_lo_import$$ language plpgsql;


--
-- lo_import/2
--
create or replace function lo_import(
  text,
  oid
) returns oid as $$
be_lo_import_with_oid$$ language plpgsql;