--
-- empty_lob/0
--
create or replace function empty_lob(
  
) returns int4 as $$

begin
	return nextval('lob_sequence');
end;$$ language plpgsql;