This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to tag REL8_1_411 in repository libpostgresql-jdbc-java.
commit 9f0c26a2b93fab497ca27ab464bf3b94232adace Author: Kris Jurka <[email protected]> Date: Mon Oct 15 07:49:41 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 dfb9f29..4135ddb 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.64.2.1 2006/04/29 02:18:51 jurka Exp $ + $PostgreSQL: pgjdbc/build.xml,v 1.64.2.2 2007/04/24 18:19:11 jurka Exp $ --> @@ -332,7 +332,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

