Christian Beikov
Christian Beikov
What is it exactly that you would like to do? If you use an embeddable with `@JdbcTypeCode(SqlTypes.JSON)` then this thing is just like any other embeddable. I guess you would...
This is not yet supported @SShahmuradli and the issue you need to watch for getting updates is https://github.com/Blazebit/blaze-persistence/issues/181 In the meantime, you could define a `@Subselect` entity for that and...
Hi Rafael and thanks for the response. I understand that a deterministic name would be better and in fact, Hibernate doesn't even need the field at all, as we can...
I tried very hard to find a code path in the ByteBuddy types that are in use here which could lead to this, but was unable so far. We use...
Let's see what the [OpenJ9 folks have to say](https://github.com/eclipse-openj9/openj9/issues/22129). If this behavior turns out to be intentional and not in violation of the JVMS, it seems to me that ByteBuddy...
Just for reference, I believe this was fixed via https://github.com/hibernate/hibernate-orm/pull/9812
I think both, the first and second approach are ok, though the first one seems easier as the second might also require the addition of `@JoinColumnType` etc. The fourth option...
Ah, you were referring to the JDK enum. I guess it's ok to reuse that, though that limits JPA to the types JDBC vendors agree on. I think I prefer...
I would like to mention that array support is somewhat "special" in the sense that Hibernate ORM (and by extension probably other JPA providers) need to know the element type...
We actually do have incremental compilation enabled and use [this Gradle plugin](https://github.com/kelloggm/checkerframework-gradle-plugin) to make checkerframework work with that. I also verified that incremental compilation works correctly, but still, checkerframework simply...