When a Postgres table has other tables that inherit from, a SELECT against the parent will show rows in all the children, as well. The antidote to this is the ONLY keyword:
SELECT * FROM ONLY <name-of-parent-table> Is inheritance recognized by jOOQ? Are there options for making ONLY the default for different models/tables? -- 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/groups/opt_out.
