I noticed that the sql code generated by

db.update(table1)
    .set(DSL.row(fields...),
          db.select(more fields)
          .from(table2)
          .where())

Generates code of the form:

update table1 set (fields) = (select table2...)

Which is not supported on postgres.  According to postgres docs 
(http://www.postgresql.org/docs/9.3/static/sql-update.html).

Ideally this would be transformed into UPDATE FROM, however a compilation 
warning/error would be ok too.

-- 
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.

Reply via email to