HHH-7088 - Implement secondary table support in new metamodel code

This commit is contained in:
Steve Ebersole 2012-04-17 17:31:38 -05:00
parent 72e5cf42cf
commit a33943694c
1 changed files with 1 additions and 0 deletions

View File

@ -75,6 +75,7 @@ public class SecondaryTableTest extends BaseAnnotationBindingTestCase {
RelationalValueBinding valueBinding = nameAttrBinding.getRelationalValueBindings().get( 0 );
assertFalse( valueBinding.isDerived() );
assertSame( table, valueBinding.getValue().getTable() );
assertSame( column, valueBinding.getValue() );
}
@Test