]> source.dussan.org Git - sonarqube.git/commitdiff
Fix JDBC batch mode in MyBatis
authorSimon Brandhof <simon.brandhof@gmail.com>
Thu, 2 Feb 2012 11:20:59 +0000 (12:20 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Thu, 2 Feb 2012 11:20:59 +0000 (12:20 +0100)
sonar-core/src/main/java/org/sonar/core/persistence/BatchSession.java

index da48c5f6c76f13303d95e1ff31b236b9ecca8406..0e7a28a63c7c65f45f121b67118641f176b83690 100644 (file)
@@ -31,7 +31,7 @@ import java.util.Map;
 
 public final class BatchSession implements SqlSession {
 
-  public static final int MAX_BATCH_SIZE = 250;
+  public static final int MAX_BATCH_SIZE = 1000;
 
   private final SqlSession session;
   private final int batchSize;
@@ -170,7 +170,7 @@ public final class BatchSession implements SqlSession {
   }
 
   public <T> T getMapper(Class<T> type) {
-    return session.getMapper(type);
+    return getConfiguration().getMapper(type, this);
   }
 
   public Connection getConnection() {