diff options
author | Barry Lind <barry@xythos.com> | 2001-11-14 04:11:37 +0000 |
---|---|---|
committer | Barry Lind <barry@xythos.com> | 2001-11-14 04:11:37 +0000 |
commit | ebb93323bbf7c62aeff283cd5991071ee8c575fa (patch) | |
tree | 22b370d8461b48acd90ae011e23c4ebbbca03b0f /src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java | |
parent | c97a787e85df6bd6b7a6ff5cc35a75ec0601de7c (diff) | |
download | postgresql-ebb93323bbf7c62aeff283cd5991071ee8c575fa.tar.gz |
Attached is a patch against the CVS repository that fixes the ResultSet absolute() problem.
There's also a little fix for the getRow() method. While fixing
absolute(), I noticed that getRow() wasn't quite following the spec: it
wasn't returning 0 when the ResultSet wasn't positioned on a row. I've
started a ResultSet test case and included it as well.
Liam Stewart
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java b/src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java index 1f299ceb16..2512192c98 100644 --- a/src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java +++ b/src/interfaces/jdbc/org/postgresql/test/JDBC2Tests.java @@ -205,6 +205,7 @@ public class JDBC2Tests extends TestSuite // Connectivity/Protocols // ResultSet + suite.addTestSuite(ResultSetTest.class); // Time, Date, Timestamp suite.addTestSuite(DateTest.class); |