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 ma...@apache.org on 2013/06/03 21:59:08 UTC

svn commit: r1489135 - /db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ParameterMappingTest.java

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);