I suppose that most of the popular ones: Oracle / MSSQL Server handle such situation (@Lob without specifying "length" attribute on @Column) properly giving them maximal possible size:
Is there really no nice way to fix this ? Or is it entirely HSQL issue ?
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
Brett,
I suppose that most of the popular ones: Oracle / MSSQL Server handle such situation (@Lob without specifying "length" attribute on @Column) properly giving them maximal possible size:
Oracle8iDialect:
registerColumnType( Types.BLOB, "blob" );
registerColumnType( Types.CLOB, "clob" );
SQLServer2005Dialect:
registerColumnType( Types.BLOB, "varbinary(MAX)" );
registerColumnType( Types.CLOB, "varchar(MAX)" );
Is there really no nice way to fix this ? Or is it entirely HSQL issue ?