Re: [hibernate-dev] mixing named and positional parameters

2016-09-30 Thread Vlad Mihalcea
+1 On Fri, Sep 30, 2016 at 7:02 PM, Steve Ebersole wrote: > The JPA spec specifically says: > > > Either positional or named parameters may be used. Positional and named > parameters must not be mixed in a single query. > > > I was thinking about how it does not make sense to mix these in a qu

Re: [hibernate-dev] mixing named and positional parameters

2016-09-30 Thread Davide D'Alto
+1 for always disallowing On Fri, Sep 30, 2016 at 5:06 PM, andrea boriero wrote: > +1 for always disallowing > > On 30 September 2016 at 17:02, Steve Ebersole wrote: > >> The JPA spec specifically says: >> >> >> Either positional or named parameters may be used. Positional and named >> paramete

Re: [hibernate-dev] mixing named and positional parameters

2016-09-30 Thread andrea boriero
+1 for always disallowing On 30 September 2016 at 17:02, Steve Ebersole wrote: > The JPA spec specifically says: > > > Either positional or named parameters may be used. Positional and named > parameters must not be mixed in a single query. > > > I was thinking about how it does not make sense

[hibernate-dev] mixing named and positional parameters

2016-09-30 Thread Steve Ebersole
The JPA spec specifically says: Either positional or named parameters may be used. Positional and named parameters must not be mixed in a single query. I was thinking about how it does not make sense to mix these in a query (its confusing) and went looking to see what, if anything, the spec had