[jOOQ/jOOQ#17670] [jOOQ/jOOQ#17671] Mark property as transient to denote its cache nature

This commit is contained in:
Lukas Eder 2024-11-26 13:24:57 +01:00
parent db62f6c107
commit 64107cd10c

View File

@ -86,7 +86,7 @@ final class BatchSingle extends AbstractBatch implements BatchBindStep {
final Map<String, List<Integer>> nameToIndexMapping;
final List<Object[]> allBindValues;
final int expectedBindValues;
List<Object> defaultValues;
transient List<Object> defaultValues;
public BatchSingle(Configuration configuration, Query query) {
super(configuration);