Skip to content

Commit

Permalink
Fix the SQLState for an undefined object name for postgresql
Browse files Browse the repository at this point in the history
Signed-off-by: Lee Surprenant <lmsurpre@us.ibm.com>
  • Loading branch information
lmsurpre committed Oct 21, 2020
1 parent fd78072 commit d226073
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public boolean isDuplicateSchema(SQLException x) {

@Override
public boolean isUndefinedName(SQLException x) {
return "42X05".equals(x.getSQLState());
return "42704".equals(x.getSQLState());
}

@Override
Expand Down

0 comments on commit d226073

Please sign in to comment.