[#7810] Add DSL.rowField(RowN)

This commit is contained in:
lukaseder 2018-12-10 10:52:58 +01:00
parent 57e32cb63e
commit b0960b98fb

View File

@ -11915,6 +11915,18 @@ public class DSL {
// [jooq-tools] END [row-field]
/**
* EXPERIMENTAL: Turn a row value expression of arbitrary degree into a {@code Field}.
* <p>
* Note: Not all databases support row value expressions, but many row value
* expression operations can be emulated on all databases. See relevant row
* value expression method Javadocs for details.
*/
@Support
public static Field<Record> rowField(RowN row) {
return new RowField<RowN, Record>(row);
}
/**
* Transform a subquery into a correlated subquery.
*/