Christian Beikov

Results 516 comments of Christian Beikov

Superseded by https://github.com/hibernate/hibernate-orm/pull/9301

The problem is that we use the entity state as it is in `org.hibernate.action.internal.EntityUpdateAction#updateCacheItem`, whereas we should be using the previous state for non-updatable column values, which might not be...

Hi @haraleib, no, I'm not currently working on this. Is it critical for you? If so, what version of Hibernate ORM are you using?

Ok, but what version of Hibernate ORM are you using?

> A tangential thing I think we should consider also doing: move the `Legacy*LimitHandler`s, and the `SQLServer2005LimitHandler` to the community dialects module, since they're no longer used from the supported...

In case anyone wonders, I changed the minimum version to SQL Server 2014 instead of 2016, because I had missed that 2014 is supported until 2027: https://learn.microsoft.com/en-us/lifecycle/products/sql-server-2014

Any idea how I can workaround this? I have the problem on a field declaration e.g. ``` class Main { List> treats; ^ found : @Initialized @NonNull Object required: capture#07...

Hi, when fetching entities, Hibernate ORM has to eagerly join such associations to determine nullity. You could use Entity-Views instead, or enable enhancement to defer the join/query to the first...

Superseded by https://github.com/hibernate/hibernate-orm/pull/10629