paper-tiger

Results 3 comments of paper-tiger

When comparing 1.4.200 with 2.1.214 it seems that the `JdbcArray#get` once delegated to `ValueArray#getObject` which used `Object[] list = (Object[]) Array.newInstance(componentType, len);` But now `JdbcArray#get` uses `ValueToObjectConverter#valueToDefaultArray` which sadly does...

> java.sql.Array.getArray() implementations may return Object[] according to specification. That is correct, i just wanted to point out that h2 used to do it "better". I just thought it is...

My UseCase is combining http://immutables.github.io/ with MyBatis. I generate my entities using @Modifiable and @Immutable. That way the generated modifiable classes have a toImmutable method. My workaround to getting immutables...