Re: AutoResultMap not threadsafe if remapResults=true (patch included in IBATIS-519)

2008-09-07 Thread Clinton Begin
This is fixed and the continuous build server should pick it up soon and the build will be available from there until we get a release out. Clinton On Sun, Sep 7, 2008 at 8:41 PM, Clinton Begin <[EMAIL PROTECTED]>wrote: > Thanks Kai... > > This is a really weird bug. The old implementation used

[jira] Closed: (IBATIS-519) Probably, remapResults is thread-unsafe

2008-09-07 Thread Clinton Begin (JIRA)
[ https://issues.apache.org/jira/browse/IBATIS-519?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Clinton Begin closed IBATIS-519. Resolution: Fixed Fix Version/s: 2.3.4 As described by Kai. > Probably, remapResults is thr

Re: AutoResultMap not threadsafe if remapResults=true (patch included in IBATIS-519)

2008-09-07 Thread Clinton Begin
Thanks Kai... This is a really weird bug. The old implementation used to build the remapped resultmap in the session scope, but perhaps it got lost somehow and ended up modifying the shared result map. Very strange. I'll likely end up putting the sync block in there as the solution for now. It

Re: iBATIS 3 vs. java 6 / add iBATIS 3 to JIRA

2008-09-07 Thread Clinton Begin
I'll add the version, but please understand: iBATIS 3 should not be compiled under Java 6. It will be a Java 5 based framework. That said, much of the incompatibilities are due to implementations of various JDBC interfaces. I'm considering making them all dynamic proxies so that you can compile

iBATIS 3 vs. java 6 / add iBATIS 3 to JIRA

2008-09-07 Thread Kai Grabfelder
Hi there, I've just found out that iBATIS try is already present in SVN - cool ;-). Unfortunately it is not not compile-time compatible with java 6. I could write a patch for this but iBATIS 3 is not yet present in JIRA. Could someone add a 3.0.0 version to JIRA? Many thanks Kai

AutoResultMap not threadsafe if remapResults=true (patch included in IBATIS-519)

2008-09-07 Thread Kai Grabfelder
Hi there, AutoResultMap is not threadsafe if remapResults=true (thus only statements without an explicit resultMap mapping are affected). https://issues.apache.org/jira/browse/IBATIS-519 shows the issue. It can be easily reproduced by using the attached maven project [1] (mvn install shows the

[jira] Commented: (IBATIS-519) Probably, remapResults is thread-unsafe

2008-09-07 Thread Kai Grabfelder (JIRA)
[ https://issues.apache.org/jira/browse/IBATIS-519?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12629002#action_12629002 ] Kai Grabfelder commented on IBATIS-519: --- this only happens when no resultMap is speci

[jira] Issue Comment Edited: (IBATIS-519) Probably, remapResults is thread-unsafe

2008-09-07 Thread Kai Grabfelder (JIRA)
[ https://issues.apache.org/jira/browse/IBATIS-519?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12628980#action_12628980 ] kaig edited comment on IBATIS-519 at 9/7/08 10:31 AM: Added