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:/
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
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
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
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