Skip to content

Instantly share code, notes, and snippets.

@stliu
Created December 5, 2012 06:46
Show Gist options
  • Select an option

  • Save stliu/4213129 to your computer and use it in GitHub Desktop.

Select an option

Save stliu/4213129 to your computer and use it in GitHub Desktop.
org.hibernate.test.legacy.ABCProxyTest
org.hibernate.test.hql.ASTParserLoadingOrderByTest
org.hibernate.test.hql.ASTParserLoadingTest
Caused by: org.hibernate.cfg.NotYetImplementedException: <map-key-many-to-many>, <composite-map-key>, <index>, <composite-index>, <index-many-to-many>, and <index-many-to-any>
org.hibernate.test.legacy.ABCTest
Caused by: org.hibernate.cfg.NotYetImplementedException: join key column sql type is not binded if not explicitly set
org.hibernate.test.abstractembeddedcomponents.propertyref.AbstractComponentPropertyRefTest
in org.hibernate.metamodel.internal.Binder#determineReferencedAttributeBinding, we use `referencedEntityBinding.locateAttributeBinding` to find the referencedAttributeBinding, but we do not take care of the case that this attribute is defined in the parent entity , so, the referencedAttributeBinding here is null, thus NPE
org.hibernate.test.annotations.idmanytoone.alphabetical.AlphabeticalIdManyToOneTest
org.hibernate.metamodel.internal.Binder#bindNonAggregatedCompositeIdentifier seems only read source from the entity, but ignores @IdClass, in this case, the org.hibernate.test.annotations.idmanytoone.alphabetical.C#parent is a @ManyToOne defined in @CId, but we read it as Basic, so the Type is not binded correctly
org.hibernate.test.annotations.any.AnyTest
org.hibernate.test.annotations.any.PropertySet#someProperty type is not binded, may related to @ManyToAny and @AnyMetaDef
org.hibernate.test.annotations.array.ArrayTest
org.hibernate.test.annotations.array.Contest#getHeldIn has @IndexColumn defined, but in AbstractCollectionPersister, `Value value = indexBinding.getIndexRelationalValue()` returns null, so NPE
org.hibernate.test.annotations.override.AssociationOverrideSchemaTest
seems caused by @JoinTable is not binded
org.hibernate.test.annotations.override.AttributeOverrideTest
@AttributeOverrides on @ElementCollection attribute is not working
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment