We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b6480 commit ba5cc2bCopy full SHA for ba5cc2b
src/main/java/org/apache/ibatis/executor/resultset/DefaultResultSetHandler.java
@@ -525,6 +525,7 @@ private List<UnMappedColumnAutoMapping> createAutomaticMappings(ResultSetWrapper
525
if (autoMapping == null) {
526
autoMapping = new ArrayList<>();
527
final List<String> unmappedColumnNames = rsw.getUnmappedColumnNames(resultMap, columnPrefix);
528
+ // Remove the entry to release the memory
529
List<String> mappedInConstructorAutoMapping = constructorAutoMappingColumns.remove(mapKey);
530
if (mappedInConstructorAutoMapping != null) {
531
unmappedColumnNames.removeAll(mappedInConstructorAutoMapping);
0 commit comments