Fix sybase LobSchemaUpdateTest failure

This commit is contained in:
Andrea Boriero 2024-04-12 15:29:06 +02:00 committed by Steve Ebersole
parent f68f6aae50
commit aa5e1184a5
1 changed files with 9 additions and 0 deletions

View File

@ -70,6 +70,10 @@ public class SybaseASEDialect extends SybaseDialect {
Integer scale,
Long length) {
switch ( jdbcType.getDdlTypeCode() ) {
case Types.NCLOB:
case Types.CLOB:
case Types.BLOB:
return Size.length( getDefaultLobLength() );
case Types.FLOAT:
// Sybase ASE allows FLOAT with a precision up to 48
if ( precision != null ) {
@ -164,6 +168,11 @@ public class SybaseASEDialect extends SybaseDialect {
return 16_384;
}
@Override
public long getDefaultLobLength() {
return Integer.MAX_VALUE;
}
private static boolean isAnsiNull(DialectResolutionInfo info) {
final DatabaseMetaData databaseMetaData = info.getDatabaseMetadata();
if ( databaseMetaData != null ) {