mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-09 12:44:49 +00:00
HHH-7541: When using HSQLDB, inserting any CLOB value larger than 16Mb always fails with an exception
Fixed.
This commit is contained in:
parent
3518055f7b
commit
4ecd795be4
@ -123,8 +123,8 @@ public HSQLDialect() {
|
||||
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…
x
Reference in New Issue
Block a user