This is now implemented for jOOQ 3.0. The change of semantics of the
code generation configuration is this:
Set outputSchema to the "default schema" (empty string). This will
result in a generated org.jooq.Schema that omits rendering its schema
name in generated SQL
<schemata>
<schema>
<inputSchema>TEST</inputSchema>
<outputSchema></outputSchema>
</schema>
</schemata>
Set outputSchema to "off" (null). This will result in a generated
org.jooq.Schema that renders the input schema name in generated SQL
<schemata>
<schema>
<inputSchema>TEST</inputSchema>
</schema>
</schemata>
2013/1/30 Witold Szczerba <
pljos...@gmail.com>: