diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2001-04-21 11:34:34 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2001-04-21 11:34:34 +0000 |
commit | bfb9f8e6c93b2c638014779f1429d726c35e4e69 (patch) | |
tree | 93cdf5d5b46d48a1b57091ae3f53e526c137eda6 /databases/postgresql73/files/patch-jdbc1-statement | |
parent | Upgrade to 3.23.37. (diff) |
Upgrade to 7.1, change to new layout style.
PR: ports/26741
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=41758
Diffstat (limited to 'databases/postgresql73/files/patch-jdbc1-statement')
-rw-r--r-- | databases/postgresql73/files/patch-jdbc1-statement | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/databases/postgresql73/files/patch-jdbc1-statement b/databases/postgresql73/files/patch-jdbc1-statement new file mode 100644 index 000000000000..41a9a2971f5a --- /dev/null +++ b/databases/postgresql73/files/patch-jdbc1-statement @@ -0,0 +1,13 @@ +--- src/interfaces/jdbc/org/postgresql/jdbc1/Statement.java~ Fri Feb 23 19:12:23 2001 ++++ src/interfaces/jdbc/org/postgresql/jdbc1/Statement.java Wed Apr 18 08:51:03 2001 +@@ -288,8 +288,8 @@ + */ + public java.sql.ResultSet getResultSet() throws SQLException + { +- if (result != null) && ((org.postgresql.ResultSet)result.reallyResultSet()) +- return result; ++ if (result != null && ((org.postgresql.ResultSet)result).reallyResultSet()) ++ return result; + return null; + } + |