Index: src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java,v retrieving revision 1.13 diff -r1.13 AbstractJdbc2ResultSet.java 41c41 < --- > 153a154,155 > onInsertRow = false; > 195a198,199 > onInsertRow = false; > 203a208,209 > onInsertRow = false; > 457a464 > onInsertRow = false; 473a481,482 > onInsertRow = false; > 481a491,497 > public boolean next() throws SQLException > { > onInsertRow = false; > return super.next(); > } > > 667c683,685 < this_row = (byte[][]) rows.elementAt(current_row); --- > if(current_row != -1) > { > this_row = (byte[][]) rows.elementAt(current_row); 669,670c687,689 < rowBuffer = new byte[this_row.length][]; < System.arraycopy(this_row, 0, rowBuffer, 0, this_row.length); --- > rowBuffer = new byte[this_row.length][]; > System.arraycopy(this_row, 0, rowBuffer, 0, this_row.length); > } 1424c1443 < --- >