Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 55058 invoked from network); 26 Sep 2007 22:48:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Sep 2007 22:48:01 -0000 Received: (qmail 76115 invoked by uid 500); 26 Sep 2007 22:47:52 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 76093 invoked by uid 500); 26 Sep 2007 22:47:51 -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 76082 invoked by uid 99); 26 Sep 2007 22:47:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Sep 2007 15:47:51 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED 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; Wed, 26 Sep 2007 22:48:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C19251A9832; Wed, 26 Sep 2007 15:47:40 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r579848 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CollationTest2.java Date: Wed, 26 Sep 2007 22:47:40 -0000 To: derby-commits@db.apache.org From: myrnavl@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070926224740.C19251A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: myrnavl Date: Wed Sep 26 15:47:36 2007 New Revision: 579848 URL: http://svn.apache.org/viewvc?rev=579848&view=rev Log: DERBY-3055 - workaround a jvm issue by not running runBulkInsert test with J2ME/JSR169. Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CollationTest2.java Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CollationTest2.java URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CollationTest2.java?rev=579848&r1=579847&r2=579848&view=diff ============================================================================== --- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CollationTest2.java (original) +++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CollationTest2.java Wed Sep 26 15:47:36 2007 @@ -2028,7 +2028,10 @@ runAlterTableCompress(conn, db_index); - runBulkInsert(conn, db_index); + // because of jvm issue described in DERBY-3055, do not + // test this with J2ME/JSR169. + if (JDBC.vmSupportsJDBC3()) + runBulkInsert(conn, db_index); runLikeTests(conn, db_index);