On Mon, May 4, 2015 at 3:12 PM, Ben Hood <[email protected]> wrote: > What is the PG_PROC.PRORETSET flag used for?
In my schema, the following metadata exists: SELECT p.proname, oidvectortypes(p.proargtypes), p.proretset, p.prorettype FROM pg_proc p INNER JOIN pg_namespace ns ON (p.pronamespace = ns.oid) WHERE ns.nspname = 'public'; proname oidvectortypes proretset prorettype ------------- ------------------------- --------- ---------- set_caller_id bigint, character varying true 20 Not sure how much this helps in this case. -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
