mirror of https://github.com/apache/openjpa.git
Removed duplicate prefixing of schema name in resolveTableName
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@610427 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
07c046a077
commit
d621aa765d
|
@ -553,7 +553,7 @@ public class TableJDBCSeq
|
||||||
if (sName == null)
|
if (sName == null)
|
||||||
tableName = table.getFullName();
|
tableName = table.getFullName();
|
||||||
else
|
else
|
||||||
tableName = sName + "." + table.getFullName();
|
tableName = sName + "." + table.getName();
|
||||||
return tableName;
|
return tableName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue