[hibernate-commits] Hibernate SVN: r18426 - annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/indexcoll.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Jan 6 13:42:55 EST 2010


Author: stliu
Date: 2010-01-06 13:42:55 -0500 (Wed, 06 Jan 2010)
New Revision: 18426

Modified:
   annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/indexcoll/AddressBook.java
Log:
JBPAPP-2082 ANN-841 - Bidirectional indexed collection mapped incorrectly for IndexedCollectionTest

Modified: annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/indexcoll/AddressBook.java
===================================================================
--- annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/indexcoll/AddressBook.java	2010-01-06 18:42:18 UTC (rev 18425)
+++ annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/indexcoll/AddressBook.java	2010-01-06 18:42:55 UTC (rev 18426)
@@ -42,7 +42,6 @@
 
 	@MapKey
 	@OneToMany(mappedBy = "book", cascade = {CascadeType.MERGE, CascadeType.PERSIST, CascadeType.REMOVE})
-	@JoinTable(name="AddRegEntry")
 	public Map<AddressEntryPk, AddressEntry> getEntries() {
 		return entries;
 	}
@@ -63,7 +62,6 @@
 
 	@MapKey(name = "directory")
 	@OneToMany(mappedBy = "book")
-	@JoinTable(name="Dir_Entry")
 	public Map<AlphabeticalDirectory, AddressEntry> getDirectoryEntries() {
 		return directoryEntries;
 	}



More information about the hibernate-commits mailing list