Re: [hibernate-dev] Anyone having problems in "tutorials" module?

2008-12-01 Thread Chris Bredesen
I saw this too and fixed it the same way. I never got around to filing a JIRA and committing. -Chris Juraci Costa wrote: All, Hudson jobs for trunk are failing due to a dependency missing: Path to dependency: 1) org.hibernate:hibernate-tutorials:pom:3.4.0-SNAPSHOT 2) org.slf4

Re: [hibernate-dev] Which branches should receive patches

2008-12-01 Thread Steve Ebersole
It really depends on the nature of the changes. If it really is just "fixes to tests" then you should target trunk, 3.2 and 3.3 branches with appropriate JIRA issues. Branch_3_2_4_SP1_xyz is stuff used by Red Hat in relation to support offerings and should only be touched by them. Annotations an

Re: [hibernate-dev] HHH-3627 - Should concat convert parameters to string?

2008-12-01 Thread Steve Ebersole
The SQL spec says that numerics are completely valid within a concatenation. The issue is strictly limited to SQL Server because of its overloading of '+' as both addition and concatenation and its having no dedicated concatenation operator. Arguably we should handle this in the SQL Server dialec

Re: [hibernate-dev] Re: interesting issues in the forum

2008-12-01 Thread Emmanuel Bernard
On Nov 24, 2008, at 21:40, Hardy Ferentschik wrote: memory leak on redeploy (quite good information here, but this is going to be hard) http://forum.hibernate.org/viewtopic.php?p=2400319 A tricky one indeed. I don't think this is something we can address for the GA release. Interesting th

Re: [hibernate-dev] Re: interesting issues in the forum

2008-12-01 Thread Sanne Grinovero
Can't you just rely on the cleanup() in FullTextIndexEventListener ? That would be a good place to use ThreadLocal.remove(); When using the "autoregistration" of the listeners (see EventListenerRegister), the ThreadLocal isn't used actually (As far as I understand): so as 3.1 does target core 3.3,