mirror of https://github.com/apache/openjpa.git
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:
parent
fdabcf6f03
commit
2508046403
|
@ -150,7 +150,7 @@ public class ClassMappingInfo
|
||||||
// immediately return an exact match with schema
|
// immediately return an exact match with schema
|
||||||
join = fullJoin.substring(idx + 1);
|
join = fullJoin.substring(idx + 1);
|
||||||
if (join.equals(tableName))
|
if (join.equals(tableName))
|
||||||
return join;
|
return fullJoin;
|
||||||
|
|
||||||
// caseless match with schema worth 1 point
|
// caseless match with schema worth 1 point
|
||||||
if (pts < 1 && join.equalsIgnoreCase(tableName)) {
|
if (pts < 1 && join.equalsIgnoreCase(tableName)) {
|
||||||
|
|
Loading…
Reference in New Issue