From: <leg...@at...> - 2004-01-09 14:03:25
|
Message: A new issue has been created in JIRA. --------------------------------------------------------------------- View the issue: http://opensource.atlassian.com/projects/hibernate/secure/ViewIssue.jspa?key=HB-612 Here is an overview of the issue: --------------------------------------------------------------------- Key: HB-612 Summary: SchemaExport: DB2 CLOB fails Type: Bug Status: Unassigned Priority: Blocker Original Estimate: Unknown Time Spent: Unknown Remaining: Unknown Project: Hibernate2 Components: toolset Versions: 2.1 Assignee: Reporter: Jan Riis Created: Fri, 9 Jan 2004 8:02 AM Updated: Fri, 9 Jan 2004 8:02 AM Environment: DB2 vers. 7.2 on Win XP Description: When using DB2 dialect, the generated schema (DDL)for CLOB fields does not include a "length" specification. <class name="dk.acure.journal.model.Skema"> ... <property name="xml" type="string" length="256000"> <column name="xml" sql-type="CLOB"/> </property> </class> generates: create table Skema ( ... xml CLOB, ); But should be: xml CLOB (256000) Length is mandatory in DB2 (as far as I can see) --------------------------------------------------------------------- JIRA INFORMATION: This message is automatically generated by JIRA. If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira |