From derby-commits-return-5891-apmail-db-derby-commits-archive=db.apache.org@db.apache.org Mon Dec 04 10:55:36 2006 Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 48117 invoked from network); 4 Dec 2006 10:55:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Dec 2006 10:55:35 -0000 Received: (qmail 67825 invoked by uid 500); 4 Dec 2006 10:55:44 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 67793 invoked by uid 500); 4 Dec 2006 10:55:44 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 67782 invoked by uid 99); 4 Dec 2006 10:55:44 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Dec 2006 02:55:44 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Dec 2006 02:55:34 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 7CD001A9846; Mon, 4 Dec 2006 02:54:54 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r482129 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/BlobClob4BlobTest.java Date: Mon, 04 Dec 2006 10:54:54 -0000 To: derby-commits@db.apache.org From: kahatlen@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061204105454.7CD001A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kahatlen Date: Mon Dec 4 02:54:53 2006 New Revision: 482129 URL: http://svn.apache.org/viewvc?view=rev&rev=482129 Log: DERBY-2140: BlobClob4BlobTest.testSelfDestructiveClob() fails with "ERROR X0X95: Operation 'DROP TABLE' cannot be performed on object 'TESTCLOB' because there is an open ResultSet dependent on that object." Close ResultSet and Statement in testSelfDestructiveClob. Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/BlobClob4BlobTest.java Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/BlobClob4BlobTest.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/BlobClob4BlobTest.java?view=diff&rev=482129&r1=482128&r2=482129 ============================================================================== --- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/BlobClob4BlobTest.java (original) +++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/BlobClob4BlobTest.java Mon Dec 4 02:54:53 2006 @@ -2589,6 +2589,9 @@ assertEquals("FAIL - invalid column size", clobLength, columnSize); assertEquals("FAIL - invalid column size", columnSize, clob.length()); + + rs.close(); + stmt.close(); } /**