From: Dave Cramer Date: Tue, 25 Mar 2003 02:24:07 +0000 (+0000) Subject: fixed problem where information from previous updates was leaking into subsequent... X-Git-Tag: REL7_4_BETA1~839 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=326b2f96ae6e90436fd2614fe45e17a52e06c166;p=postgresql fixed problem where information from previous updates was leaking into subsequent updates patch from Shawn Green, slightly modified --- diff --git a/src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java b/src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java index d4457bdc63..46ebdb47ce 100644 --- a/src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java +++ b/src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java @@ -9,7 +9,7 @@ * Copyright (c) 2003, PostgreSQL Global Development Group * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2ResultSet.java,v 1.17 2003/03/14 05:36:58 barry Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2ResultSet.java,v 1.18 2003/03/25 02:24:07 davec Exp $ * *------------------------------------------------------------------------- */ @@ -1083,7 +1083,7 @@ public abstract class AbstractJdbc2ResultSet extends org.postgresql.jdbc1.Abstra rows.setElementAt( rowBuffer, current_row ); if ( Driver.logDebug ) Driver.debug("done updates"); - + updateValues.clear(); doingUpdates = false; } catch (Exception e)