Daniel Gredler commented on an issue
Hibernate ORM / Bug HHH-8615
Shared type parameters results in inconsistent internal model (especially with DynamicParameterizedType)
Looking at SimpleValueBinder.fillSimpleValue(), it is clear that the type parameters (a Properties instance) are shared between the type defs in the Mappings, the SimpleValue, and/or the SimpleValueBinder -- no separate copies of these Properties instances are made anywhere, so changes to one reference are reflected in everybody's references (they're the ...