Skip to content

Commit

Permalink
0002263: Trigger is not able to be created
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Apr 10, 2015
1 parent a353569 commit 07d6f43
Showing 1 changed file with 3 additions and 5 deletions.
Expand Up @@ -271,16 +271,14 @@ protected String switchCatalogForTriggerInstall(String catalog, ISqlTransaction
c.setCatalog(catalog);
return previousCatalog;
} catch (SQLException e) {
throw new SqlException(e);
} finally {
if (catalog != null) {
try {
c.setCatalog(previousCatalog);
} catch (SQLException e) {
} catch (SQLException ex) {
}
}
}

throw new SqlException(e);
}
} else {
return null;
}
Expand Down

0 comments on commit 07d6f43

Please sign in to comment.