This commit is contained in:
maoling 2026-08-01 14:10:26 +03:00 committed by GitHub
commit 7171ab40ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class OffHeapBitSet implements IBitSet
/** returns the number of 64 bit words it would take to hold numBits */
long wordCount = (((numBits - 1) >>> 6) + 1);
if (wordCount > Integer.MAX_VALUE)
throw new UnsupportedOperationException("Bloom filter size is > 16GB, reduce the bloom_filter_fp_chance");
throw new UnsupportedOperationException("Bloom filter size is > 16GB, increase the bloom_filter_fp_chance");
try
{
long byteCount = wordCount * 8L;