--
-- pg_cursor/0
--
create or replace function pg_cursor(
  OUT name text,
  OUT statement text,
  OUT is_holdable boolean,
  OUT is_binary boolean,
  OUT is_scrollable boolean,
  OUT creation_time timestamp with time zone
) returns record as $$
pg_cursor$$ language plpgsql;