Gavin King
Gavin King
Did you try removing the `@Lob` annotation and using `@Column(length=LONG)` as explained here: https://docs.jboss.org/hibernate/orm/6.5/introduction/html_single/Hibernate_Introduction.html#lobs
> It's probably related to [this issue](https://github.com/hibernate/hibernate-reactive/issues/1663) in Hibernate Reactive. I don't think so. The user states that the database column is declared: > data BYTEA NOT NULL So they...
It's an interesting idea. > candidate names of generated record class I kinda hate those suggestions though :) My knee-jerk would be an inner class of `Book_`, something like `Book_.Id_`...
A second thing I would like to do here is to clearly place the responsibility for scanning for entity classes back on the container. I think it's a mistake to...
See the proposal here: https://github.com/jakartaee/persistence/pull/671/files
It appears that this was already accepted and fixed in the TCK, but the issue was never closed.
Correct me if I'm wrong, but is it the case that essentially every JDBC driver except for Oracle defaults to retrieving all rows (which is typically the right thing for...
Oh, from my experiments it looks like SQL Server defaults to 128.
> And people then ask: why is it so difficult in JPA? So I guess my question in return is: why doesn't it work to just set this globally using...