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:
David Ezzio 2008-01-09 15:59:39 +00:00
parent 07c046a077
commit d621aa765d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }