[hibernate-dev] Envers: Mapped-superclasses extended by embeddabables

2014-05-16 Thread Gail Badner
Hi Adam, The relevant issues: HHH-8908 : Envers: Column of Embedded missing in Audit Table HHH-9194 : Revert HHH-8908 fix HHH-9193 : Default audit behavior of a mapped-superclass is inconsistent when extended by an entity vs an embeddable I created a pull request for reverting HHH-8908 (https:/

Re: [hibernate-dev] [WEBSITE] hibernate-[project]-metadata.properties

2014-05-16 Thread Emmanuel Bernard
On 16 May 2014, at 13:22, Hardy Ferentschik wrote: > > On 15 Jan 2014, at 23:07, Emmanuel Bernard wrote: > >> Under the /project/ directory, you will find a strange .properties file. It >> will be used by jboss.org to collect up to date metadata about our projects. > > How is that going to

Re: [hibernate-dev] [WEBSITE] hibernate-[project]-metadata.properties

2014-05-16 Thread Hardy Ferentschik
On 15 Jan 2014, at 23:07, Emmanuel Bernard wrote: > Under the /project/ directory, you will find a strange .properties file. It > will be used by jboss.org to collect up to date metadata about our projects. How is that going to be used? > If something like CI, issue tracker, tagline, etc chan

Re: [hibernate-dev] Making tests nicer with lambdas

2014-05-16 Thread Gunnar Morling
I had envisioned inTransactionWithResult() for that purpose. This returns a value which can be used in the next lambda expression: Foo foo = inTransactionWithResult( (session, tx) -> { Foo f = new Foo(); em.persist( f ); } ); inTransaction( (session, tx) -> { Foo

Re: [hibernate-dev] Making tests nicer with lambdas

2014-05-16 Thread Emmanuel Bernard
These kind of tests are actually not in isolations between lambdas. You often want to pass an id or value between blocks to be reused. I don't think lambdas are porous enough for that. That would be surprising. Emmanuel On Fri 2014-04-25 10:41, Gunnar Morling wrote: > Hey, > > I've played around