Hi,
The documentation for hibernate.id.optimizer.pooled.preferred says the
following:
hilo; legacy-hilo
Define a custom algorithm for generating pools of values based on a single
value from a table or sequence.
These optimizers are not recommended for use. They are maintained (and
mentioned) he
Please see below...
On Tue, Aug 27, 2019 at 8:00 PM Jan-Willem Gmelig Meyling <
jan-wil...@youngmediaexperts.nl> wrote:
> I tend to use this.getClass().isInstance(o) and this.getClass().cast(o)
> which works even in a mapped super class on most occasions. (Assuming that
> the proxy delegates equa
I tend to use this.getClass().isInstance(o) and this.getClass().cast(o) which
works even in a mapped super class on most occasions. (Assuming that the proxy
delegates equals to a concrete target).
Jan-Willem
> Op 27 aug. 2019 om 22:29 heeft Steve Ebersole het
> volgende geschreven:
>
> Gen
Generally speaking an `#equals` method would not allow subclasses to
match. For entity mappings specifically I this it is generally considered
kosher to allow subclass matching in `#equals`. Interestingly, when
generating `#equals` overrides through IntelliJ it even asks specifically
whether subc
Hi,
I'm looking into the impact of HHH-13590.
In the test for HHH-13590, I see that the mapped superclass entity defines
equals() as:
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
...
}
Due to the bu