Sanne Grinovero

Results 140 comments of Sanne Grinovero

@geoand ah, I missed it - sorry it's probably fixed by the upgrade to ORM v. `5.6.12.Final`

It was fixed by https://github.com/quarkusio/quarkus/pull/28221

Even setting a "last modified" timestamp isn't something done typically in an interceptor; I agree it's not the right time to make changes to the model. We have standard JPA...

`@NamedNativeQuery` should work as Hibernate ORM supports it; were you expecting Panache to add something to it?

> I didn't really want to add things to Spring Data JPA that Panache doesn't support. That's wise but Panache is building _additional_ helpers on top of Hibernate ORM. I...

Existing similar feature: - https://quarkus.io/guides/hibernate-orm#quarkus-hibernate-orm_quarkus.hibernate-orm.sql-load-script

Agreed, I don't think supporting all details of Spring is a wise goal, especially with configuration there's things which conceptually can't be mapped. The goal of the "spring like" APIs...

That error certainly looks related to my recent patch. It's of course unexpected, it was building fine for me locally - I'll try again next week.

P.S. we need to think how this impacts native-image: serialization might be an issue, but also I wouldn't want the classes which represent the "removed types" to still be part...

Many thanks for fixing this :) Regarding the loading getting triggered when our extensions aren't careful about it - would there be a way to verify noone is doing that?