mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 22:28:15 -04:00
Backpatch jdbc1 compile failure fix.
This commit is contained in:
parent
e94a214de9
commit
631b3e4691
1 changed files with 1 additions and 1 deletions
|
|
@ -288,7 +288,7 @@ public class Statement implements java.sql.Statement
|
|||
*/
|
||||
public java.sql.ResultSet getResultSet() throws SQLException
|
||||
{
|
||||
if (result != null) && ((org.postgresql.ResultSet)result.reallyResultSet())
|
||||
if (result != null && ((org.postgresql.ResultSet)result).reallyResultSet())
|
||||
return result;
|
||||
return null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue