From a64cf9ad1ae07808621d640e6771137d0f81c797 Mon Sep 17 00:00:00 2001 From: Valerii Ponomarov Date: Tue, 29 Oct 2024 17:59:49 +0200 Subject: [PATCH] Change default for the multi-row partitions distribution Make it be 100% with multiplier "1" -> "100:1". --- src/scripting/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/context.rs b/src/scripting/context.rs index 2ad9be8..e028bca 100644 --- a/src/scripting/context.rs +++ b/src/scripting/context.rs @@ -309,7 +309,7 @@ impl Context { // Parse the 'rows_per_partitions_groups' string parameter into a HashMap let mut partn_multipliers: HashMap = HashMap::new(); if rows_per_partitions_groups.is_empty() { - rows_per_partitions_groups = "95:1,4:2,1:4"; + rows_per_partitions_groups = "100:1"; } let mut summary_percentage: f64 = 0.0; let mut duplicates_dump: Vec = Vec::new();