Add implicit constraint names to NamingStrategy
Description
follows up on
is a fix for
is duplicated by
is followed up by
Activity

Brett MeyerAugust 14, 2013 at 6:20 PM
Steve EbersoleAugust 14, 2013 at 3:43 PM
The break down into distinct logical and physical naming strategies is something we have discussed for 5.0. I do not know if that has been implemented or not.
ObjectNameNormalizer
itself is something I'd like to see done differently in 5.0 overall. It was added for JPA 2.0 with the addition of the ability to say that all db identifiers should be quoted ("delimited"). ObjectNameNormalizer
handles that quoting. The work done in metamodel (5.0) make that much easier to apply consistently; much easier compared to what I had to do with the old org.hibernate.mapping
code which is where/why ObjectNameNormalizer
came to be.
ObjectNameNormalizer.NamingStrategyHelper
is part of that, meant to help with implicit (i.e., app un-specified) versus explicit (i.e., app specified) names. Notice that NamingStrategyHelper
is passed to most of the ObjectNameNormalizer
methods. Its role is to delegate the calls to the appropriate NamingStrategy
methods as needed and interpret the results. Again, the goal is that NamingStrategy
would be better split up in 5.0.
ObjectNameNormalizer.NamingStrategyHelper
is meant to handle logical/physical naming. That is very different from implicit/explicit naming.

Brett MeyerAugust 14, 2013 at 2:25 PM
, check out https://github.com/hibernate/hibernate-orm/pull/565. I attempted to add the implicit constraint naming methods directly into NamingStrategy, then tie them into metamodel's ObjectNameNormalizer.NamingStrategyHelper. I thought that would be a better route, rather than have another separate strategy to implement. Admittedly, I'm not following the PhysicalNamingStrategy point. That doesn't seem to exist in metamodel anymore. Was that refactored for the basis of ObjectNameNormalizer.NamingStrategyHelper?
Steve EbersoleAugust 14, 2013 at 2:15 PM
Still not understanding why this is separate from a PhysicalNamingStrategy
Details
Assignee
Brett MeyerBrett MeyerReporter
Brett MeyerBrett MeyerPriority
Major
Details
Details
Assignee

Reporter

Merged the PR, for now. The logical/physical split will be done in & HHH-7079.