[hibernate-dev] Patch for HHH-2308: Adjusting the Outer Join Predicate using Criteria Query

2009-09-24 Thread Craig Christophel
Hello, I've submitted a patch which updates Scott Van Wart's effort with unit tests and documentation changes (en-US) for HHH-2308. This patch allows users to add Criterion to Criteria aliasing similar to the WITH clause in hql. List result = session.createCriteria( Student.class ) .create

Re: [hibernate-dev] [infinispan-dev] Feedback on Infinispan patch

2009-09-24 Thread Emmanuel Bernard
+1 On 24 sept. 09, at 17:49, Manik Surtani wrote: Minorly off topic, but rather than working with patches, do we want this Directory impl in source control somewhere? Being dependent on LGPL, it won't be accepted into Lucene's contribs. If it doesn't depend on any Hibernate Search code, I

Re: [hibernate-dev] [infinispan-dev] Feedback on Infinispan patch

2009-09-24 Thread Manik Surtani
Minorly off topic, but rather than working with patches, do we want this Directory impl in source control somewhere? Being dependent on LGPL, it won't be accepted into Lucene's contribs. If it doesn't depend on any Hibernate Search code, I could host it in Infinispan's SVN repo... On 23

Re: [hibernate-dev] [infinispan-dev] Benchmarking 2nd level cache providers?

2009-09-24 Thread Manik Surtani
Do we have a JIRA for this? Are we tracking this somewhere? On 2 Sep 2009, at 14:25, Steve Ebersole wrote: > The best bet for something like this is a separate project which pulls > in the proper hibernate dependencies. Then we can talk with Juca > about > getting them set up on a scheduled r

Re: [hibernate-dev] [infinispan-dev] Hibernate 3.5.0.Beta-1 released

2009-09-24 Thread Manik Surtani
Try typing "hibernate default cache provider" into Google. ;-) Note that the (official?) docs [1] state: "Note that versions prior to 3.2 use EhCache as the default cache provider." So perhaps most of the hits refer to old versions of Hibernate. And if the reason for removing a default al

[hibernate-dev] Fwd: [infinispan-dev] Wiki up on Querying

2009-09-24 Thread Navin Surtani
Forgot to send this out to Hibernate Dev as well. Begin forwarded message: From: Navin Surtani Date: 24 September 2009 15:10:34 BST To: infinispan -Dev List Subject: [infinispan-dev] Wiki up on Querying Reply-To: infinispan -Dev List Heya guys, Just to let you know the wiki article on Quer

Re: [hibernate-dev] Annotations patch for column read/write expressions (HHH-272)

2009-09-24 Thread Emmanuel Bernard
I think we should simply use a @o.h.a.Columns annotation to embed @o.h.a.Column annotations and place them on the same property the @j.p.Column is described. @Column(name="foo") @o.h.a.Column(appliesTo="foo", wrap="nsacrypt(?)") public String getPassword() { ... } @AttributeOverride(name="str