1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-30 06:01:21 +03:00

implemented refresh row

This commit is contained in:
Dave Cramer
2002-06-16 18:26:53 +00:00
parent 0dbfea39f3
commit 0daee96ed1
2 changed files with 77 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ public class UpdateableResultTest extends TestCase
rs.updateString("name", "paul");
rs.insertRow();
rs.refreshRow();
assertTrue( rs.getInt("id") == 3 );
assertTrue( rs.getString("name").equals("paul"));
assertTrue( rs.getString("notselected") == null );