Description:
|
https://hudson.jboss.org/hudson/job/hibernate-core-master-matrix/lastCompletedBuild/database=sybase155,jdk=java17_default,label=hibernate/testReport/org.hibernate.test.annotations.lob/SerializableToBlobTypeTest/testPersist/
The Sybase
dialect
schema generated correctly
maps BLOBs to images -- Sybase does not support BLOB types.
SerializableToImageType
However, the dialect
is not
used anywhere. All serializables use the SerializableToBlobType
using getSqlTypeDescriptorOverride
,
causing the JDBC error on the CI link above
so all @Lob fields are still attempting to use getBlob
.
|