Skip to content

Commit 631b3e4

Browse files
committed
Backpatch jdbc1 compile failure fix.
1 parent e94a214 commit 631b3e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/jdbc/org/postgresql/jdbc1/Statement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ public boolean execute(String sql) throws SQLException
288288
*/
289289
public java.sql.ResultSet getResultSet() throws SQLException
290290
{
291-
if (result != null) && ((org.postgresql.ResultSet)result.reallyResultSet())
291+
if (result != null && ((org.postgresql.ResultSet)result).reallyResultSet())
292292
return result;
293293
return null;
294294
}

0 commit comments

Comments
 (0)