1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-15 19:21:59 +03:00

Fri Jan 19 08:47:00 GMT 2001 peter@retep.org.uk

- Applied patch submitted by John Schutz <schutz@austin.rr.com> that
          fixed a bug with ANT's SQL functions (not needed for building but nice
          to have fixed).
This commit is contained in:
Peter Mount
2001-01-19 08:49:06 +00:00
parent 8fe8fc9db0
commit be281916f9
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Fri Jan 19 08:47:00 GMT 2001 peter@retep.org.uk
- Applied patch submitted by John Schutz <schutz@austin.rr.com> that
fixed a bug with ANT's SQL functions (not needed for building but nice
to have fixed).
Thu Jan 18 17:30:00 GMT 2001 peter@retep.org.uk
- Added new error message into errors.properties "postgresql.notsensitive"
This is used by jdbc2.ResultSet when a method is called that should

View File

@ -281,7 +281,9 @@ public class Statement implements java.sql.Statement
*/
public java.sql.ResultSet getResultSet() throws SQLException
{
return result;
if (result != null) && ((org.postgresql.ResultSet)result.reallyResultSet())
return result;
return null;
}
/**

View File

@ -291,7 +291,9 @@ public class Statement implements java.sql.Statement
*/
public java.sql.ResultSet getResultSet() throws SQLException
{
return result;
if (result != null && ((org.postgresql.ResultSet)result).reallyResultSet())
return result;
return null;
}
/**