hibernate-reactive
hibernate-reactive copied to clipboard
@Version @Source(DB)
@Version
@Source(SourceType.DB)
Date version
causes:
Caused by: java.sql.SQLException: Not using JDBC
It happens because, at some point, it calls org.hibernate.type.DbTimestampType.seed.
I think we need a reactive version of it.
Not sure if we need this for the first milestone
It happens because, at some point, it calls
org.hibernate.type.DbTimestampType.seed.
I think there's some other missing code for database-generated versions actually. (Noticed earlier today.)
(So it's not so much a bug, just that we don't support the @Source annotation currently.)
I think there's some other missing code for database-generated versions actually. (Noticed earlier today.)
I thought I caught them with that UnsupportedException I left but it seems it was a wrong assumption.
I thought I caught them with that
UnsupportedExceptionI left but it seems it was a wrong assumption.
Apparently.
I say we document this as a limitation and leave it for after 1.0.
(Unless you think it's like really easy to fix.)
I have no idea and we have some other things already. I'm fine to leave it for after and include it if we find the time.
I have no idea and we have some other things already.
I suspect this might be complicated because it deals with an ORM type and I'm not sure how much work it takes to have a reactive version of that chain of calls.
I suspect this might be complicated because it deals with an ORM type and I'm not sure how much work it takes to have a reactive version of that chain of calls.
Fine. I'm certain it's not critical.