You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although unorderedJoin is set, it does not work. When I debugged it turns out that in SetRowMapperBuilderImpl in mapper() method it returns the mapper created in line 117 (newJoinMapper). Shouldn't it return a newUnorderedJoinMapper like in line 130? Or am I missing something?
The text was updated successfully, but these errors were encountered:
Hi, we have a mapper defined like this:
JdbcMapperFactory.newInstance() .useAsm(false) .addKeys(ID, alias(OTHER_ID)) .unorderedJoin() .assumeInjectionModifiesValues(true) .newMapper(Some.class))
Although unorderedJoin is set, it does not work. When I debugged it turns out that in SetRowMapperBuilderImpl in mapper() method it returns the mapper created in line 117 (newJoinMapper). Shouldn't it return a newUnorderedJoinMapper like in line 130? Or am I missing something?
The text was updated successfully, but these errors were encountered: