Re: [hibernate-dev] Pull request for HHH-2394 (Support filter tag in subclass)

2012-05-31 Thread David Mansfield
I'm no hibernate guru, but I have some comments below: On 05/30/2012 05:42 PM, Rob Worsnop wrote: > https://github.com/hibernate/hibernate-orm/pull/339 > > It seemed that the challenge to overcome was that Hibernate did not > know which aliases to use when generating the where clauses for > filter

Re: [hibernate-dev] HHH-1123 - Cannot put more than 1000 elements in a InExpression

2011-12-06 Thread David Mansfield
On 12/05/2011 04:44 PM, Steve Ebersole wrote: > On Mon 05 Dec 2011 12:59:19 PM CST, David Mansfield wrote: >> While I do agree wholeheartedly with most of what you say, I do think >> it's unfair to say that the requirement is "fundamentally broken". That >&

Re: [hibernate-dev] HHH-1123 - Cannot put more than 1000 elements in a InExpression

2011-12-05 Thread David Mansfield
While I do agree wholeheartedly with most of what you say, I do think it's unfair to say that the requirement is "fundamentally broken". That label should be reserved for SQL itself ;-) If there is some opaque business rule R that operates on a large set of input data, and that rule is impleme

Re: [hibernate-dev] HHH-1123 - Cannot put more than 1000 elements in a InExpression

2011-12-02 Thread David Mansfield
One technical (and probably way out of scope!) way to handle this would be to use a temp table, do a batch insert of the values, then change the " in (v1, v2, v3...)" to " in (select v from temp)". On 12/01/2011 04:20 AM, Emmanuel Bernard wrote: > Ah good point, I haven't thought of that prob

[hibernate-dev] gradle build problems

2011-03-28 Thread David Mansfield
Fresh checkout of master (4.0) from github, and ./gradlew yields: :: :: UNRESOLVED DEPENDENCIES :: :: :: org.slf4j#slf4j-api;1

[hibernate-dev] hibernate criteria query of collection-of-component and collection-of-value (HHH-3646)

2011-03-21 Thread David Mansfield
ve already created a github fork for the effort. Is there still an interest in integrating these changes? Thanks, David Mansfield Cobite, INC. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] 3.5 branch

2010-05-10 Thread David Mansfield
anges. I could go over it via email or irc or whatever. The changes have been split into independent commits as much as possible (and there are a few prerequisites patches which may just be outright bugs). Thanks, David Mansfield Cobite, INC. On Mon, 2010-05-10 at 21:26 -0500, Steve Ebersole

Re: [hibernate-dev] 3.5 branch

2010-05-10 Thread David Mansfield
Steve, Would you be interested in revisiting the criteria patches that extend the functionality of criteria to collections-of-component or collections-of-value for either/both of these two branches? Thanks, David Mansfield Cobite, INC. On Mon, 2010-05-10 at 13:28 -0500, Steve Ebersole wrote

Re: [hibernate-dev] implement criteria query collection-of-component and collection-of-value against latest 3.5.0-Beta-3

2010-01-22 Thread David Mansfield
They do have support > for this and our impl does already as well. Just another option, > especially considering I believe it very likely we will be depracting > our current criteria API and using the JPA 2 one (with extensions built > on top) moving forward. > > On Thu, 2010-01-21

Re: [hibernate-dev] PATCH 1/5 implement criteria query collection-of-component and collection-of-value against latest 3.5.0-Beta-3

2010-01-21 Thread David Mansfield
Hmm still no attachment. One last try and then I'll give up and put the patches in JIRA. Once more, with feeling. See below for the description. On Thu, 2010-01-21 at 17:49 -0500, David Mansfield wrote: > I'm attempting to resend this "complete" patch set, which inclu

[hibernate-dev] PATCH 1/5 implement criteria query collection-of-component and collection-of-value against latest 3.5.0-Beta-3

2010-01-21 Thread David Mansfield
I'm attempting to resend this "complete" patch set, which includes documentation and test cases in a series of 5 patches, the first two of which are independent bug fixes. My previous attempt seemed to have patch stripped so I'm going to try one at a time. Patch 0001: In the JoinWalker, we assem

Re: [hibernate-dev] implement criteria query collection-of-component and collection-of-value against latest 3.5.0-Beta-3

2010-01-21 Thread David Mansfield
Well my patches got stripped... Any ideas? On Thu, 2010-01-21 at 12:39 -0500, David Mansfield wrote: > Hi All, > > Attached is a series of patches which implements the missing > functionality for Criteria queries, namely being able to use Criteria > queries for collections o

[hibernate-dev] implement criteria query collection-of-component and collection-of-value against latest 3.5.0-Beta-3

2010-01-21 Thread David Mansfield
0004: the test case for collection-of-value Patch 0005: the test case for collection-of-component Thanks, David Mansfield Cobite INC. ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org/mailman/listinfo/hibernate-dev

Re: [hibernate-dev] HHH 869 (Collections of value type in the Criteria API).

2009-06-17 Thread David Mansfield
On Wed, 2009-06-17 at 10:38 -0500, Steve Ebersole wrote: > On Wed, 2009-06-17 at 10:52 -0400, David Mansfield wrote: > > Hi, > > > > I'm not going to do the JUnit stuff until I get a commitment that my > > work won't be wasted. Last I heard, the CriteriaQ

Re: [hibernate-dev] HHH 869 (Collections of value type in the Criteria API).

2009-06-17 Thread David Mansfield
; You should probably attach it to the JIRA issue ( > http://opensource.atlassian.com/projects/hibernate/browse/HHH-869 ) . > Also the patch seems incomplete in that there appear to be no JUnit > test cases included. > > Donnchadh > > 2009/6/17 David Mansfield : > > [p

RE: [hibernate-dev] HHH 869 (Collections of value type in the Criteria API).

2009-06-17 Thread David Mansfield
[previously sent out from wrong account and it didn't make the list] On Tue, 2009-06-09 at 21:34 -0500, Steve Ebersole wrote: > On Tue, 2009-06-09 at 18:18 -0700, Daniel Pitts wrote: > > > That makes sense. If I submit a patch that basically refactors the CQT > > class, what might be considered

[hibernate-dev] [UPDATED] implement criteria API query of collection-of-components and collection-of-values

2009-01-23 Thread David Mansfield
Hi, Although I've gotten feedback that this won't necessarily be included as-is, or against current versions etc., since I have to update it as I track newer Hibernate core versions (we use this modification internally), I figure it might be of use or interest to the dev. community. This is the u

Re: [hibernate-dev] resend: RFC: implement criteria API query of collection-of-component and collection-of-value

2008-12-29 Thread David Mansfield
e/HHH-2407 > > > > - > > Steve Ebersole > Project Lead > http://hibernate.org > st...@hibernate.org > > Principal Software Engineer > JBoss, a division of Red Hat > http://jboss.com > http://redhat.com > steve.ebers...@jboss.com > steve.ebers..

[hibernate-dev] resend: RFC: implement criteria API query of collection-of-component and collection-of-value

2008-12-22 Thread David Mansfield
n issue/patch. The changes to JoinWalker are necessary and correct: if the last association will not generate any selectFragment, then the implementation adds an extraneous ", " to the generated string. Looking forward to your feedback and working together to get this into the tree. Nee

[hibernate-dev] RFC: implement criteria API query of collection-of-component and collection-of-value

2008-12-14 Thread David Mansfield
ion adds an extraneous ", " to the generated string. Looking forward to your feedback and working together to get this into the tree. Need info about test cases to create, documentation etc. Thanks, David Mansfield Cobite, INC. diff --exclude '*~' -urN hibernate-3.2.orig/sr

[hibernate-dev] request for feedback/review for patch (HHH-3646): implement Criteria API querying of collection-of-component

2008-12-11 Thread David Mansfield
llection-of-value issue, so if someone in the know wants to comment on whether that could be an easy add in or not, that would be great. I'm willing to do the coding if someone can give some direction on that front. Thanks, David Mansfield Cobite, INC. _