From bee3ce3d74bc9143c56a3aeb68dcbb4ba3d06513 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Wed, 17 Oct 2018 22:45:41 +0200 Subject: Fix bugs, mainly about type casts --- .../src/main/java/org/sonar/db/DatabaseUtils.java | 23 ---------------------- 1 file changed, 23 deletions(-) (limited to 'server/sonar-db-core/src') diff --git a/server/sonar-db-core/src/main/java/org/sonar/db/DatabaseUtils.java b/server/sonar-db-core/src/main/java/org/sonar/db/DatabaseUtils.java index 79ba984c3fe..1df8194edf7 100644 --- a/server/sonar-db-core/src/main/java/org/sonar/db/DatabaseUtils.java +++ b/server/sonar-db-core/src/main/java/org/sonar/db/DatabaseUtils.java @@ -169,29 +169,6 @@ public class DatabaseUtils { } } - /** - * Partition by 1000 elements a list of input and execute a consumer on each part. - * - * The goal is to prevent issue with ORACLE when there's more than 1000 elements in a 'in ('X', 'Y', ...)' - * and with MsSQL when there's more than 2000 parameters in a query - * - * @param inputs the whole list of elements to be partitioned - * @param sqlCaller a {@link Function} which calls the SQL update/delete and returns the number of updated/deleted rows. - * @param partitionSizeManipulations the function that computes the number of usages of a partition, for example - * {@code partitionSize -> partitionSize / 2} when the partition of elements - * in used twice in the SQL request. - * @return the total number of updated/deleted rows (computed as the sum of the values returned by {@code sqlCaller}). - */ - public static > int executeLargeUpdates(Collection inputs, Function, Integer> sqlCaller, - IntFunction partitionSizeManipulations) { - Iterable> partitions = toUniqueAndSortedPartitions(inputs, partitionSizeManipulations); - Integer res = 0; - for (List partition : partitions) { - res += sqlCaller.apply(partition); - } - return res; - } - /** * Ensure values {@code inputs} are unique (which avoids useless arguments) and sorted before creating the partition. */ -- cgit v1.2.3