You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by fu...@apache.org on 2006/08/08 06:26:37 UTC

svn commit: r429561 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/procedure.java

Author: fuzzylogic
Date: Mon Aug  7 21:26:35 2006
New Revision: 429561

URL: http://svn.apache.org/viewvc?rev=429561&view=rev
Log:
DERBY-1320: Fix lang/procedure.java on IBM JDK 1.5. 

Committed for Manjula Kutty <ma...@gmail.com>

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/procedure.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/procedure.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/procedure.java?rev=429561&r1=429560&r2=429561&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/procedure.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/procedure.java Mon Aug  7 21:26:35 2006
@@ -1849,6 +1849,7 @@
 			// We expect the result set to be open, so dropping the
 			// table should fail.
 			stmt.executeUpdate("drop table derby821");
+			rs.next();//to fix DERBY-1320. Else the GC for ibm15 will clean up the ResultSet Object
 		} catch (SQLException sqle) {
 			if (sqle.getSQLState().equals("X0X95")) {
 				System.out.println("PASSED");