Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 326b2f9

Browse files
author
Dave Cramer
committed
fixed problem where information from previous updates was leaking into subsequent updates patch from Shawn Green, slightly modified
1 parent 316c5cb commit 326b2f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Copyright (c) 2003, PostgreSQL Global Development Group
1010
*
1111
* IDENTIFICATION
12-
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2ResultSet.java,v 1.17 2003/03/14 05:36:58 barry Exp $
12+
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2ResultSet.java,v 1.18 2003/03/25 02:24:07 davec Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
@@ -1083,7 +1083,7 @@ public synchronized void updateRow()
10831083
rows.setElementAt( rowBuffer, current_row );
10841084
if ( Driver.logDebug )
10851085
Driver.debug("done updates");
1086-
1086+
updateValues.clear();
10871087
doingUpdates = false;
10881088
}
10891089
catch (Exception e)

0 commit comments

Comments
 (0)