Return-Path: X-Original-To: apmail-db-derby-commits-archive@www.apache.org Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E8183101E4 for ; Mon, 3 Jun 2013 19:59:28 +0000 (UTC) Received: (qmail 77994 invoked by uid 500); 3 Jun 2013 19:59:28 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 77975 invoked by uid 500); 3 Jun 2013 19:59:28 -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 77967 invoked by uid 99); 3 Jun 2013 19:59:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Jun 2013 19:59:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Jun 2013 19:59:27 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 781FD2388847; Mon, 3 Jun 2013 19:59:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1489135 - /db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ParameterMappingTest.java Date: Mon, 03 Jun 2013 19:59:08 -0000 To: derby-commits@db.apache.org From: mamta@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130603195908.781FD2388847@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mamta Date: Mon Jun 3 19:59:08 2013 New Revision: 1489135 URL: http://svn.apache.org/r1489135 Log: DERBY-6237(PreparedStatement.execute() fails starting 10.2 when multiple rows are updated and PreparedStatement.setCharacterStream(int, Reader, int) is used) Fixing comment Modified: db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ParameterMappingTest.java Modified: db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ParameterMappingTest.java URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ParameterMappingTest.java?rev=1489135&r1=1489134&r2=1489135&view=diff ============================================================================== --- db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ParameterMappingTest.java (original) +++ db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ParameterMappingTest.java Mon Jun 3 19:59:08 2013 @@ -3869,14 +3869,14 @@ public class ParameterMappingTest extend //Once DERBY-6237 is fixed, we should remove following if condition // Following if condition will skip the test for 2 row update when // testing CLOB columns in both embedded and network server with - // short data. This results in failure in 10.4 + // short data. This results in failure in 10.5 if ((!testCLOB)) helperTestDerby6237(2,1, testCLOB); //update two rows and use large data //Once DERBY-6237 is fixed, we should remove following if condition // Following if condition will skip the test for 2 row update when // testing CLOB columns in both embedded and network server with - // large data. This results in failure in 10.4 + // large data. This results in failure in 10.5 if (!(testCLOB)) helperTestDerby6237(2,2, testCLOB);