Empty SQL statements with custom UniqueDelegate

Description

hibernate-core 4.1.10 introduced org.hibernate.dialect.unique.UniqueDelegate to handle creation of unique constraints. If you implement a custom UniqueDelegate (e.g. one that creates the unique constraints directly in the column or table definition, like earlier versions of hibernate did), the resulting DDL script may contain empty SQL statements, which most databases cannot handle.
This happens if the custom UniqueDelegate implementation returns an empty String on UniqueDelegate.applyUniquesOnAlter(UniqueKey) or UniqueDelegate.dropUniquesOnAlter(UniqueKey).
org.hibernate.metamodel.relational.UniqueKey should check the return values of that methods and return a String array of length 0 if the String is empty or null.

Activity

Show:

BarneyMarch 1, 2013 at 12:59 PM

I prepared a pull request:
https://github.com/hibernate/hibernate-orm/pull/478

Would be great if you could also apply this on the 4.1 branch.

Fixed

Details

Assignee

Reporter

Affects versions

Priority

Created February 28, 2013 at 9:54 AM
Updated March 18, 2013 at 4:23 PM
Resolved March 6, 2013 at 3:30 AM