I have several table-valued
overloaded
procedures in my PostgreSql
database. They have the same name, but different number of parameters. As JOOQ 3.5
treats those procedures as tables
, generator discovers only one procedure
with that name. Is it designed this way, or is there a workaround?
GeneratorStrategy
doesn't help as this happens earlier, when database.getTables(schema)
in Generator
is Called.