Actually, on further inspection, I've created a dummy function returning SETOF BIGINT to make sure that it is not just SETOF VOID that is not working in my current setup. The SETOF BIGINT routine object does not appear to get generated either. So I am assuming that there is something with my environment - can you turn up the log verbosity for the code generator somehow?
On Mon, May 4, 2015 at 2:45 PM, Lukas Eder <[email protected]> wrote: > Hmm, what is the idea of a SETOF VOID type? Can you show an example? SETOF VOID is just a Postgres-ism to avoid having a function returning a result row for a void return type. If the function returns VOID, the invocation will return a row to contain the void result. > Perhaps, this specific case doesn't set the PG_PROC.PRORETSET flag...? What is the PG_PROC.PRORETSET flag used for? -- 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.
