OPENJPA-704: Changes were not assocaited with JIRA issue which was created after the change :)

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@694720 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2008-09-12 16:10:17 +00:00
parent e047748e77
commit cd5014ee54
2 changed files with 2 additions and 1 deletions

View File

@ -594,7 +594,7 @@ public class FetchConfigurationImpl
|| (fmd.isInDefaultFetchGroup()
&& hasFetchGroupDefault())
|| hasField(fmd.getFullName(false))
|| hasField(fmd.getRealName()))
|| hasField(fmd.getRealName())) // OPENJPA-704
return true;
String[] fgs = fmd.getCustomFetchGroups();
for (int i = 0; i < fgs.length; i++)

View File

@ -353,6 +353,7 @@ public class FieldMetaData
* The field name, qualified by the defining class.
*/
public String getRealName() {
// Added to support OPENJPA-704
return getDefiningMetaData().getDescribedType().getName() + "." + _name;
}