This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to tag REL8_0_321 in repository libpostgresql-jdbc-java.
commit 615df3d3931215c79afc2745e801bfea1109afb3 Author: Kris Jurka <[email protected]> Date: Mon Oct 15 07:50:18 2007 +0000 The prepareThreshold parameter was getting defaulted to zero in the test suite by the build system. It would be nice to just pick up the driver's default, but that's tough to do, so just hardcode it to the default (five) for now. --- build.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.xml b/build.xml index 046fb7f..fb1f31c 100644 --- a/build.xml +++ b/build.xml @@ -8,7 +8,7 @@ This file now requires Ant 1.4.1. 2002-04-18 - $PostgreSQL: pgjdbc/build.xml,v 1.63.2.1 2006/04/29 02:18:55 jurka Exp $ + $PostgreSQL: pgjdbc/build.xml,v 1.63.2.2 2007/04/24 18:19:15 jurka Exp $ --> @@ -329,7 +329,7 @@ <property name="username" value="test" /> <!-- Password must be something. Doesn't matter if trust is used! --> <property name="password" value="password" /> - <property name="preparethreshold" value="0" /> + <property name="preparethreshold" value="5" /> <!-- The tests now build to a separate directory and jarfile from the driver build, to ensure we're really testing against the jar we just -- 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

