Fix - return the qualified SecondaryTableName

git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@489768 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Srinivasa Segu 2006-12-22 21:21:19 +00:00
parent fdabcf6f03
commit 2508046403
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ public class ClassMappingInfo
// immediately return an exact match with schema
join = fullJoin.substring(idx + 1);
if (join.equals(tableName))
return join;
return fullJoin;
// caseless match with schema worth 1 point
if (pts < 1 && join.equalsIgnoreCase(tableName)) {