File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -274,9 +274,9 @@ static void
274274bloom_filter_size (int ndistinct , double false_positive_rate ,
275275 int * nbytesp , int * nbitsp , int * nhashesp )
276276{
277- double k ;
278- int nbits ,
279- nbytes ;
277+ double k ;
278+ int nbits ,
279+ nbytes ;
280280
281281 /* sizing bloom filter: -(n * ln(p)) / (ln(2))^2 */
282282 nbits = ceil (- (ndistinct * log (false_positive_rate )) / pow (log (2.0 ), 2 ));
@@ -616,8 +616,8 @@ brin_bloom_consistent(PG_FUNCTION_ARGS)
616616 Assert (filter );
617617
618618 /*
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).
621621 */
622622 matches = true;
623623
@@ -636,8 +636,8 @@ brin_bloom_consistent(PG_FUNCTION_ARGS)
636636 case BloomEqualStrategyNumber :
637637
638638 /*
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.
641641 */
642642 finfo = bloom_get_procinfo (bdesc , attno , PROCNUM_HASH );
643643
Original file line number Diff line number Diff line change @@ -3986,8 +3986,8 @@ afterTriggerCheckState(AfterTriggerShared evtshared)
39863986static Bitmapset *
39873987afterTriggerCopyBitmap (Bitmapset * src )
39883988{
3989- Bitmapset * dst ;
3990- MemoryContext oldcxt ;
3989+ Bitmapset * dst ;
3990+ MemoryContext oldcxt ;
39913991
39923992 if (src == NULL )
39933993 return NULL ;
You can’t perform that action at this time.
0 commit comments