Skip to content

Commit

Permalink
0001448: Provide global parameter to specify that BSH database writer…
Browse files Browse the repository at this point in the history
… filters will handle missing tables
  • Loading branch information
mhanes committed Oct 21, 2013
1 parent ffba45a commit e4ff471
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -96,7 +96,7 @@ protected Table readTable(Connection connection, DatabaseMetaDataWrapper metaDat
}
return table;
} catch (SqlException e) {
if (e.getMessage().contains("does not exist")) {
if (e.getMessage()!=null && e.getMessage().contains("does not exist")) {
return null;
} else {
throw e;
Expand Down

0 comments on commit e4ff471

Please sign in to comment.