fix: remove duplicate comment

Co-Authored-By: Lada Kesseler <23501754+lexler@users.noreply.github.com>
This commit is contained in:
Danny Faught 2024-09-27 11:19:48 -07:00
parent 3fa20ebcfd
commit 9f5d99a77a
No known key found for this signature in database
GPG Key ID: 28A992107D6E8DF4
1 changed files with 0 additions and 1 deletions

View File

@ -3555,7 +3555,6 @@ public class StorageService extends NotificationBroadcasterSupport implements IE
static int calculateSplitCount(int keysPerSplit, long totalRowCountEstimate, int numberOfKeys)
{
// splitCount should be much smaller than number of key samples, to avoid huge sampling error
int minSamplesPerSplit = 4;
int maxSplitCount = numberOfKeys / minSamplesPerSplit + 1;
int splitCount = Math.max(1,