Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a4cfeec

Browse files
committed
Fix code indentation violations
Commits ce5aaea, 2b8b285 and 28d03fe violated the expected code indentation rules, upsetting the new buildfarm member "koel." Discussion: https://postgr.es/m/ZKIU4mhWpgJOM0W0%40paquier.xyz
1 parent 6d56c50 commit a4cfeec

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/backend/access/brin/brin_bloom.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,9 @@ static void
274274
bloom_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

src/backend/commands/trigger.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3986,8 +3986,8 @@ afterTriggerCheckState(AfterTriggerShared evtshared)
39863986
static Bitmapset *
39873987
afterTriggerCopyBitmap(Bitmapset *src)
39883988
{
3989-
Bitmapset *dst;
3990-
MemoryContext oldcxt;
3989+
Bitmapset *dst;
3990+
MemoryContext oldcxt;
39913991

39923992
if (src == NULL)
39933993
return NULL;

0 commit comments

Comments
 (0)