Hi Lukas, Using 3.6.1 I'm having an issue generating a routine object for a RETURNS SETOF VOID function:
CREATE OR REPLACE FUNCTION f (arg BIGINT) RETURNS SETOF VOID AS $$ It looks like the code generator doesn't seem to find the relevant object in the schema metadata. However, if I change the header to return VOID instead of SETOF VOID, the routine object will get generated. Looking back over some tickets it seems that SETOF has been support since 3.6.0: https://github.com/jOOQ/jOOQ/issues/3376 Possibly I'm misunderstanding how the process works - is this style of return type supported by JOOQ? Cheers, Ben -- 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.
