List:Commits« Previous MessageNext Message »
From:mmatthews Date:January 31 2008 7:25am
Subject:Connector/J commit: r6721 - in branches/branch_5_1: . src/testsuite/regression
View as plain text  
Modified:
   branches/branch_5_1/CHANGES
   branches/branch_5_1/src/testsuite/regression/StatementRegressionTest.java
Log:
Fixed typo in bug # for Bug#34093

Modified: branches/branch_5_1/CHANGES
===================================================================
--- branches/branch_5_1/CHANGES	2008-01-31 05:28:50 UTC (rev 6720)
+++ branches/branch_5_1/CHANGES	2008-01-31 06:25:29 UTC (rev 6721)
@@ -103,7 +103,7 @@
       trace as a string into the message, set the underlying Throwable as the cause for
       the SQLException, making it accessible via getCause().  
      
-    - Fixed BUG#30493 - Statements with batched values do not return correct values for 
+    - Fixed BUG#34093 - Statements with batched values do not return correct values for 
       getGeneratedKeys() when "rewriteBatchedStatements" is set to "true", and the 
       statement has an "ON DUPLICATE KEY UPDATE" clause.
 

Modified: branches/branch_5_1/src/testsuite/regression/StatementRegressionTest.java
===================================================================
--- branches/branch_5_1/src/testsuite/regression/StatementRegressionTest.java	2008-01-31
05:28:50 UTC (rev 6720)
+++ branches/branch_5_1/src/testsuite/regression/StatementRegressionTest.java	2008-01-31
06:25:29 UTC (rev 6721)
@@ -5334,13 +5334,13 @@
 	}
 	
 	/**
-	 * Tests fix for BUG#30493 - Statements with batched values do not
+	 * Tests fix for BUG#34093 - Statements with batched values do not
 	 * return correct values for getGeneratedKeys() when "rewriteBatchedStatements"
 	 * is set to "true", and the statement has an "ON DUPLICATE KEY UPDATE" clause.
 	 * 
 	 * @throws Exception if the test fails.
 	 */
-	public void testBug30493() throws Exception {
+	public void testBug34093() throws Exception {
 		Connection rewriteConn = null;
 		
 		try {

Thread
Connector/J commit: r6721 - in branches/branch_5_1: . src/testsuite/regressionmmatthews31 Jan 2008