[jOOQ/jOOQ#11058] Further reuse of cached Table.fieldsRow()

This commit is contained in:
Lukas Eder 2020-12-01 14:58:36 +01:00
parent 23110d0163
commit c83a9864db

View File

@ -103,7 +103,7 @@ public class TableRecordImpl<R extends TableRecord<R>> extends AbstractRecord im
private final Table<R> table;
public TableRecordImpl(Table<R> table) {
super(table.fields());
super((AbstractRow) table.fieldsRow());
this.table = table;
}