Hi
I have select like this in Jooq 3.5.0:
...
.forUpdate()
.of(Tables.CLIENT.as("clients").NUM., Tables.ACCOUNT.as("accounts").ID)
.skipLocked()
.fetch();
The generated SQL will end with
FOR UPDATE OF "NUM", "ID" SKIP LOCKED
instead of
FOR UPDATE OF "clients"."NUM", "accounts"."ID" SKIP LOCKED
Is it possible to make JOOQ use table alias in the for update statement?
--
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.