diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-05-08 12:36:01 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-05-08 12:36:01 +0000 |
commit | 652c758fe74cd6fcb512e1d251aad4916cb5c511 (patch) | |
tree | b01fc99dbcefe33bcfd5b8d32dc7248d42fde208 /japanese/postgresql-tcltk/files/patch-jdbc1-statement | |
parent | add p5-Event (diff) |
Update to 7.1 with jumob-patch 20010429 and synchronize with
databases/postgresql7.
Include Japanezed psql (psqlj).
PR: 27156
Submitted by: Saito Tomokatsu <saito@a2z.co.jp> (MAINTAINER)
Notes
Notes:
svn path=/head/; revision=42407
Diffstat (limited to 'japanese/postgresql-tcltk/files/patch-jdbc1-statement')
-rw-r--r-- | japanese/postgresql-tcltk/files/patch-jdbc1-statement | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/japanese/postgresql-tcltk/files/patch-jdbc1-statement b/japanese/postgresql-tcltk/files/patch-jdbc1-statement new file mode 100644 index 000000000000..41a9a2971f5a --- /dev/null +++ b/japanese/postgresql-tcltk/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; + } + |