mybatis / mybatis-3

MyBatis SQL mapper framework for Java
http://mybatis.github.io/mybatis-3/
Apache License 2.0
19.55k stars 12.75k forks source link

fix: DefaultResultSetHandler memory waste #3113 #3114

Closed whojes-toss closed 3 months ago

whojes-toss commented 3 months ago

java.lang.reflect.Constructor.getParameterTypes method clones objects

public Class<?>[] getParameterTypes() {
     return parameterTypes.clone();
 }

this change will reduce not necessary memory allocations.

coveralls commented 3 months ago

Coverage Status

coverage: 87.117% (+0.001%) from 87.116% when pulling 926c451275908bccd0e25a4b57a02b9173739ad5 on whojes-toss:issue-3113 into b044200be1895a390727c2b2565bae862b4aac6f on mybatis:master.

harawata commented 3 months ago

Thank you, @whojes-toss !