Skip to content

Commit 5ab582b

Browse files
committed
[hibernate#929] Refactor id generation for MySQL
MySQL always returns an id of type Long. This commit changes an hack that was affecting all dbs and preventing H2 to read identity id of type Integer or Short
1 parent 4d1df78 commit 5ab582b

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

hibernate-reactive-core/src/main/java/org/hibernate/reactive/logging/impl/Log.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ public interface Log extends BasicLogger {
104104
@Message(id = 34, value = "The database returned no natively generated identity value")
105105
HibernateException noNativelyGeneratedValueReturned();
106106

107-
@Message(id = 35, value = "The database can only generate identifiers of type Long")
108-
HibernateException nativelyGeneratedValueMustBeLong();
107+
@Message(id = 35, value = "The database can only generate identifiers of type Long: the id %1$d cannot be cast to %2$s ")
108+
HibernateException nativelyGeneratedValueMustBeLong(Long id, @FormatWith(ClassFormatter.class) Class<?> idClass);
109109

110110
@Message(id = 356, value = "Wrong entity type!")
111111
HibernateException wrongEntityType();

hibernate-reactive-core/src/main/java/org/hibernate/reactive/persister/entity/impl/ReactiveAbstractEntityPersister.java

-5
Original file line numberDiff line numberDiff line change
@@ -393,11 +393,6 @@ default CompletionStage<Serializable> insertReactive(
393393
} );
394394

395395
Class<?> idClass = delegate().getIdentifierType().getReturnedClass();
396-
if ( idClass.equals(Integer.class) || idClass.equals(Short.class) ) {
397-
// since on MySQL we can only retrieve Long values, adjust to Long
398-
// id will be cast back to the right type by castToIdentifierType()
399-
idClass = Long.class;
400-
}
401396
return getReactiveConnection( session )
402397
//Note: in ORM core there are other ways to fetch the generated identity:
403398
// getGeneratedKeys(), or an extra round select statement. But we

hibernate-reactive-core/src/main/java/org/hibernate/reactive/pool/impl/SqlClientConnection.java

+10-1
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,19 @@ public CompletionStage<Void> close() {
309309
private static <T> T getLastInsertedId(RowSet<Row> rows, Class<T> idClass, String idColumnName) {
310310
final Long mySqlId = rows.property( MYSQL_LAST_INSERTED_ID );
311311
if ( mySqlId != null ) {
312+
// MySQL will return a Long for any of these types
312313
if ( Long.class.equals( idClass ) ) {
313314
return (T) mySqlId;
314315
}
315-
throw LOG.nativelyGeneratedValueMustBeLong();
316+
if ( Integer.class.equals( idClass )
317+
&& mySqlId <= Integer.MAX_VALUE ) {
318+
return (T) mySqlId;
319+
}
320+
if ( Short.class.equals( idClass )
321+
&& mySqlId <= Short.MAX_VALUE) {
322+
return (T) mySqlId;
323+
}
324+
throw LOG.nativelyGeneratedValueMustBeLong( mySqlId, idClass );
316325
}
317326
final Row oracleKeys = rows.property( ORACLE_GENERATED_KEYS );
318327
if ( oracleKeys != null ) {

0 commit comments

Comments
 (0)