File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -274,9 +274,9 @@ static void
274
274
bloom_filter_size (int ndistinct , double false_positive_rate ,
275
275
int * nbytesp , int * nbitsp , int * nhashesp )
276
276
{
277
- double k ;
278
- int nbits ,
279
- nbytes ;
277
+ double k ;
278
+ int nbits ,
279
+ nbytes ;
280
280
281
281
/* sizing bloom filter: -(n * ln(p)) / (ln(2))^2 */
282
282
nbits = ceil (- (ndistinct * log (false_positive_rate )) / pow (log (2.0 ), 2 ));
@@ -616,8 +616,8 @@ brin_bloom_consistent(PG_FUNCTION_ARGS)
616
616
Assert (filter );
617
617
618
618
/*
619
- * Assume all scan keys match. We'll be searching for a scan key eliminating
620
- * the page range (we can stop on the first such key).
619
+ * Assume all scan keys match. We'll be searching for a scan key
620
+ * eliminating the page range (we can stop on the first such key).
621
621
*/
622
622
matches = true;
623
623
@@ -636,8 +636,8 @@ brin_bloom_consistent(PG_FUNCTION_ARGS)
636
636
case BloomEqualStrategyNumber :
637
637
638
638
/*
639
- * We want to return the current page range if the bloom filter
640
- * seems to contain the value.
639
+ * We want to return the current page range if the bloom
640
+ * filter seems to contain the value.
641
641
*/
642
642
finfo = bloom_get_procinfo (bdesc , attno , PROCNUM_HASH );
643
643
Original file line number Diff line number Diff line change @@ -3986,8 +3986,8 @@ afterTriggerCheckState(AfterTriggerShared evtshared)
3986
3986
static Bitmapset *
3987
3987
afterTriggerCopyBitmap (Bitmapset * src )
3988
3988
{
3989
- Bitmapset * dst ;
3990
- MemoryContext oldcxt ;
3989
+ Bitmapset * dst ;
3990
+ MemoryContext oldcxt ;
3991
3991
3992
3992
if (src == NULL )
3993
3993
return NULL ;
You can’t perform that action at this time.
0 commit comments