Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita4cfeec

Browse files
committed
Fix code indentation violations
Commitsce5aaea,2b8b285 and28d03fe violated the expected codeindentation rules, upsetting the new buildfarm member "koel."Discussion:https://postgr.es/m/ZKIU4mhWpgJOM0W0%40paquier.xyz
1 parent6d56c50 commita4cfeec

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(intndistinct,doublefalse_positive_rate,
275275
int*nbytesp,int*nbitsp,int*nhashesp)
276276
{
277-
doublek;
278-
intnbits,
279-
nbytes;
277+
doublek;
278+
intnbits,
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+
*eliminatingthe 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
caseBloomEqualStrategyNumber:
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+
*filterseems 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
staticBitmapset*
39873987
afterTriggerCopyBitmap(Bitmapset*src)
39883988
{
3989-
Bitmapset*dst;
3990-
MemoryContextoldcxt;
3989+
Bitmapset*dst;
3990+
MemoryContextoldcxt;
39913991

39923992
if (src==NULL)
39933993
returnNULL;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp