HHH-7541: When using HSQLDB, inserting any CLOB value larger than 16Mb always fails with an exception
Fixed.
This commit is contained in:
parent
7d5ece822c
commit
54fdb87d30
|
@ -123,8 +123,8 @@ public class HSQLDialect extends Dialect {
|
|||
registerColumnType( Types.CLOB, "longvarchar" );
|
||||
}
|
||||
else {
|
||||
registerColumnType( Types.BLOB, "blob" );
|
||||
registerColumnType( Types.CLOB, "clob" );
|
||||
registerColumnType( Types.BLOB, "blob($l)" );
|
||||
registerColumnType( Types.CLOB, "clob($l)" );
|
||||
}
|
||||
|
||||
// aggregate functions
|
||||
|
|
Loading…
Reference in New Issue