Skip to content
Snippets Groups Projects
Commit bb0db453 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

postgresql.badint property name was probably meant to be

postgresql.res.badint, since that's the name in the properties file.
parent 082e1c7b
No related branches found
No related tags found
No related merge requests found
...@@ -258,7 +258,7 @@ public class ResultSet extends org.postgresql.ResultSet implements java.sql.Resu ...@@ -258,7 +258,7 @@ public class ResultSet extends org.postgresql.ResultSet implements java.sql.Resu
{ {
return Integer.parseInt(s); return Integer.parseInt(s);
} catch (NumberFormatException e) { } catch (NumberFormatException e) {
throw new PSQLException ("postgresql.badint",s); throw new PSQLException ("postgresql.res.badint",s);
} }
} }
return 0; // SQL NULL return 0; // SQL NULL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment