List:Commits« Previous MessageNext Message »
From:mark Date:April 7 2009 10:03pm
Subject:bzr push into connector-j/branches/branch_5_1 branch (mark:770 to 771)
View as plain text  
  771 mark@stripped	2009-04-07
      Remove debug output
      modified:
        src/com/mysql/jdbc/ServerPreparedStatement.java

  770 markm@stripped	2009-04-07
      Fixed issues with server-side prepared statement batch re-writing caused by the fix to Bug#41532.
      
      Rewriting of batched statements now works the same between normal prepared statements and server-side prepared statements.
      modified:
        CHANGES
        src/com/mysql/jdbc/PreparedStatement.java
        src/com/mysql/jdbc/ServerPreparedStatement.java
        src/testsuite/regression/StatementRegressionTest.java

=== modified file 'src/com/mysql/jdbc/ServerPreparedStatement.java'
--- a/src/com/mysql/jdbc/ServerPreparedStatement.java	2009-04-07 20:55:48 +0000
+++ b/src/com/mysql/jdbc/ServerPreparedStatement.java	2009-04-07 22:02:33 +0000
@@ -2815,7 +2815,6 @@ public class ServerPreparedStatement ext
 	protected int setOneBatchedParameterSet(
 			java.sql.PreparedStatement batchedStatement, int batchedParamIndex,
 			Object paramSet) throws SQLException {
-		System.out.println("batchedParamIndex[in] " + batchedParamIndex);
 		BindValue[] paramArg = ((BatchedBindValues) paramSet).batchedParameterValues;
 	
 		for (int j = 0; j < paramArg.length; j++) {
@@ -2907,8 +2906,7 @@ public class ServerPreparedStatement ext
 				}
 			}
 		}
-	
-		System.out.println("batchedParamIndex[out] " + batchedParamIndex);
+
 		return batchedParamIndex;
 	}
 

Thread
bzr push into connector-j/branches/branch_5_1 branch (mark:770 to 771) mark8 Apr