Christian Beikov

Results 516 comments of Christian Beikov

After some discussion, we came to the conclusion that the fix which was introduced with https://github.com/hibernate/hibernate-orm/pull/3590 for HHH-14216 is invalid, and we will revert it based on what this PR...

I don't know much about the ActionQueue, but I think that there might be situations where an update must happen after an insert and the two should not be merged....

Thanks for the quick answer. How would you suggest should I implement formulas like these that need to refer to cells of the current row?

Thanks for the suggestion. I will try to workaround this for now.

Thanks for the report. I'll try to look into this, but I think fixing this properly is not going to be very easy, because the exception you are seeing is...

The relevant part is the following: ```java class Page { @OneToMany(mappedBy = "page", cascade = ALL) Set set; } class PageRevision { @ManyToOne Page page; @OneToOne(mappedBy = "pageRevision", cascade =...

Thanks for the report. In the meantime, you can use `saveFull` as a workaround to also flush the collection. If that doesn't work because you want to apply only partial...

Looks good so far, but I wonder what would happen if a path created via a CTE query would be used somewhere othe than for a binding. Due to this,...

After looking into how JSON binding could be supported, I think it's a better idea to have a thread local context that holds the current `EntityViewManager` and use an empty...

I'm deferring this as it requires #913 which will take a while and isn't scheduled yet. Also, I think XML usage is rather rare nowerdays, so it's not that important...