mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
added fix from Joel Hock to get the inserted row into the current buffer
This commit is contained in:
parent
36777c1e35
commit
aa78ca3a95
@ -15,7 +15,7 @@ import org.postgresql.util.PGbytea;
|
|||||||
import org.postgresql.util.PSQLException;
|
import org.postgresql.util.PSQLException;
|
||||||
|
|
||||||
|
|
||||||
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2ResultSet.java,v 1.11 2002/12/23 16:12:36 davec Exp $
|
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2ResultSet.java,v 1.12 2003/01/23 18:49:22 davec Exp $
|
||||||
* This class defines methods of the jdbc2 specification. This class extends
|
* This class defines methods of the jdbc2 specification. This class extends
|
||||||
* org.postgresql.jdbc1.AbstractJdbc1ResultSet which provides the jdbc1
|
* org.postgresql.jdbc1.AbstractJdbc1ResultSet which provides the jdbc1
|
||||||
* methods. The real Statement class (for jdbc2) is org.postgresql.jdbc2.Jdbc2ResultSet
|
* methods. The real Statement class (for jdbc2) is org.postgresql.jdbc2.Jdbc2ResultSet
|
||||||
@ -968,6 +968,7 @@ public abstract class AbstractJdbc2ResultSet extends org.postgresql.jdbc1.Abstra
|
|||||||
}
|
}
|
||||||
|
|
||||||
rows.setElementAt( rowBuffer, current_row );
|
rows.setElementAt( rowBuffer, current_row );
|
||||||
|
this_row = rowBuffer;
|
||||||
if ( Driver.logDebug )
|
if ( Driver.logDebug )
|
||||||
Driver.debug("done updates");
|
Driver.debug("done updates");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user