mirror of https://github.com/apache/openjpa.git
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:
parent
e047748e77
commit
cd5014ee54
|
@ -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++)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue