HHH-7541: When using HSQLDB, inserting any CLOB value larger than 16Mb always fails with an exception

Fixed.
This commit is contained in:
Sergiu Dumitriu 2012-08-21 21:52:17 -04:00 committed by brmeyer
parent 7d5ece822c
commit 54fdb87d30
1 changed files with 2 additions and 2 deletions

View File

@ -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