[jOOQ/jOOQ#16627] Update using multi-column set clause with DSL.row and

custom type logs warn on deprecated static type registry
This commit is contained in:
Lukas Eder 2024-05-13 11:50:30 +02:00
parent 37d7d2f904
commit 954300b136

View File

@ -477,8 +477,9 @@ implements
@SuppressWarnings("rawtypes")
final void addValues0(Row row, Row value) {
updateMap.put(row, value);
updateMap.put(row, ((AbstractRow) value).convertTo(row));
}
final void addValues0(Row row, Select<?> select) {