This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to annotated tag REL9_3_1102 in repository libpostgresql-jdbc-java.
commit cee74fd16172c01012af7cdb20f20f046c748336 Author: Dave Cramer <[email protected]> Date: Sat Apr 5 16:07:24 2014 -0400 fix prepared statement ERROR due to EMPTY_QUERY defined as static. Reported by: Naoya Anzai --- org/postgresql/core/v3/QueryExecutorImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org/postgresql/core/v3/QueryExecutorImpl.java b/org/postgresql/core/v3/QueryExecutorImpl.java index 527ed6e..83edac1 100644 --- a/org/postgresql/core/v3/QueryExecutorImpl.java +++ b/org/postgresql/core/v3/QueryExecutorImpl.java @@ -2260,5 +2260,5 @@ public class QueryExecutorImpl implements QueryExecutor { private final SimpleQuery beginTransactionQuery = new SimpleQuery(new String[] { "BEGIN" }, null); - private final static SimpleQuery EMPTY_QUERY = new SimpleQuery(new String[] { "" }, null); + private final SimpleQuery EMPTY_QUERY = new SimpleQuery(new String[] { "" }, null); } -- 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

