Fix code indentation violations

Commits ce5aaea8cd, 2b8b2852bb and 28d03feac3 violated the expected code
indentation rules, upsetting the new buildfarm member "koel."

Discussion: https://postgr.es/m/ZKIU4mhWpgJOM0W0%40paquier.xyz
pull/137/head
Tomas Vondra 2 years ago
parent 6d56c501a7
commit a4cfeeca5a
  1. 8
      src/backend/access/brin/brin_bloom.c

@ -616,8 +616,8 @@ brin_bloom_consistent(PG_FUNCTION_ARGS)
Assert(filter);
/*
* Assume all scan keys match. We'll be searching for a scan key eliminating
* the page range (we can stop on the first such key).
* Assume all scan keys match. We'll be searching for a scan key
* eliminating the page range (we can stop on the first such key).
*/
matches = true;
@ -636,8 +636,8 @@ brin_bloom_consistent(PG_FUNCTION_ARGS)
case BloomEqualStrategyNumber:
/*
* We want to return the current page range if the bloom filter
* seems to contain the value.
* We want to return the current page range if the bloom
* filter seems to contain the value.
*/
finfo = bloom_get_procinfo(bdesc, attno, PROCNUM_HASH);

Loading…
Cancel
Save