Re: [hibernate-dev] HQL-Parser project to move to Java7?

2014-05-21 Thread Gunnar Morling
You could mandate Java 7 at build time (and thus use 7 for testing), while keeping the output compatible with Java 6. I think it's another indication that the Lucene backend should live in its own repo to allow for a customization of this sort of things and independent release cycles. --Gunnar

Re: [hibernate-dev] EntityPersister and Queryable

2014-05-21 Thread Steve Ebersole
To be honest, I am not sure what you are asking. Persisters are not meant for application use. On Tue, May 20, 2014 at 4:33 PM, Gail Badner wrote: > Because AbstractEntityPersister implements Queryable (but EntityPersister > does not), core does something like this to get access to Queryable >

[hibernate-dev] Does @ContainedIn trigger reindexing

2014-05-21 Thread Marc Schipperheyn
I couldn't find a test on this and I'm wondering if with a structure with on the one hand @IndexedEmbedded(includePaths={"id","someField"}) and on the other hand @ContainedIn, there would be a reindexing triggered of the embedded element if "someOtherField" was changed at the root element (but not

[hibernate-dev] EntityManagerFactoryBuilderImpl constructor is accessing the CDI BeanManager too early (during 1st phase) ...

2014-05-21 Thread Scott Marlow
I started to push on Hibernate master integration for WildFly [1] + Jipijapa [2]. http://pastie.org/9196859 is a NPE that occurs when the CDI BeanManager is accessed during the first (EntityManagerFactoryBuilder) phase. Hibernate ORM shouldn't use the BeanManager until the second phase. Scott