summaryrefslogtreecommitdiff
path: root/japanese/postgresql-tcltk/files/patch-jdbc1-statement
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-05-08 12:36:01 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-05-08 12:36:01 +0000
commit652c758fe74cd6fcb512e1d251aad4916cb5c511 (patch)
treeb01fc99dbcefe33bcfd5b8d32dc7248d42fde208 /japanese/postgresql-tcltk/files/patch-jdbc1-statement
parentadd 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-statement13
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;
+ }
+