[#7810] Add DSL.rowField(RowN)
This commit is contained in:
parent
57e32cb63e
commit
b0960b98fb
@ -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.
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user