From: <leg...@at...> - 2003-09-17 17:59:54
|
Message: A new issue has been created in JIRA. --------------------------------------------------------------------- View the issue: http://opensource.atlassian.com/projects/hibernate/secure/ViewIssue.jspa?key=HBI-11 Here is an overview of the issue: --------------------------------------------------------------------- Key: HBI-11 Summary: SchemaExportTask does not use provided delimiter and format attributes Type: Bug Status: Unassigned Priority: Major Project: Hibernate 1.2 Assignee: Reporter: Mark Hofmann Created: Wed, 17 Sep 2003 12:59 PM Updated: Wed, 17 Sep 2003 12:59 PM Environment: Hibernate 1.2.5 Description: The SchemaExportTask does not use provided delimiter and format attributes. This can of course very easily, by adding the following methods to SchemaExport.java: public void create(boolean script, boolean export, boolean format, String delimiter) throws HibernateException { execute(script, export, false, format, delimiter); } public void drop(boolean script, boolean export, boolean format, String delimiter) throws HibernateException { execute(script, export, true, format, delimiter); } and changing the calls in SchemaExportTask.java (ca. line 154) to: if (drop) { schemaExport.drop(!quiet, !text, formatSQL, delimiter); } else { schemaExport.create(!quiet, !text, formatSQL, delimiter); } --------------------------------------------------------------------- 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 |