This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to tag REL7_3_4 in repository libpostgresql-jdbc-java.
commit 0d012fe21e81b500cbeed3a850848ddc1c1e48f3 Author: Barry Lind <[email protected]> Date: Wed Feb 12 17:14:49 2003 +0000 Backport patch from Fernando Nasser and Harald Krake to fix an invalid datatype problem. Modified Files: Tag: REL7_3_STABLE jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java --- org/postgresql/jdbc1/AbstractJdbc1Statement.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org/postgresql/jdbc1/AbstractJdbc1Statement.java b/org/postgresql/jdbc1/AbstractJdbc1Statement.java index c107a8c..151d5d4 100644 --- a/org/postgresql/jdbc1/AbstractJdbc1Statement.java +++ b/org/postgresql/jdbc1/AbstractJdbc1Statement.java @@ -1934,7 +1934,7 @@ public abstract class AbstractJdbc1Statement implements org.postgresql.PGStateme private static final String PG_INT8 = "int8"; private static final String PG_NUMERIC = "numeric"; private static final String PG_FLOAT = "float"; - private static final String PG_DOUBLE = "double"; + private static final String PG_DOUBLE = "double precision"; private static final String PG_BOOLEAN = "boolean"; private static final String PG_DATE = "date"; private static final String PG_TIME = "time"; -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libpostgresql-jdbc-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

