Skip to content

Commit

Permalink
[1903635] Cross schema triggers on postgres get "relation does no exist"
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Feb 28, 2008
1 parent 6e30168 commit 0874863
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -389,6 +389,9 @@ protected void determineAutoIncrementFromResultSetMetaData(Table table, final Co
query.append(" FROM ");
if (getPlatform().isDelimitedIdentifierModeOn())
query.append(platform.getPlatformInfo().getDelimiterToken());
if (table.getSchema() != null && ! table.getSchema().trim().equals("")) {
query.append(table.getSchema() + ".");
}
query.append(table.getName());
if (getPlatform().isDelimitedIdentifierModeOn())
query.append(platform.getPlatformInfo().getDelimiterToken());
Expand Down

0 comments on commit 0874863

Please sign in to comment.