diff options
author | Álvaro Herrera <alvherre@alvh.no-ip.org> | 2024-11-26 17:10:07 +0100 |
---|---|---|
committer | Álvaro Herrera <alvherre@alvh.no-ip.org> | 2024-11-26 17:10:07 +0100 |
commit | e6c32d9fad18f5a1dcb13c13f02445061b60523b (patch) | |
tree | 21723768ff5e3e0f75e71749d943e0ea88f30987 /contrib | |
parent | 2a7b2d97171dd39dca7cefb91008a3c84ec003ba (diff) | |
download | postgresql-e6c32d9fad18f5a1dcb13c13f02445061b60523b.tar.gz postgresql-e6c32d9fad18f5a1dcb13c13f02445061b60523b.zip |
Clean up newlines following left parentheses
Most came in during the 17 cycle, so backpatch there. Some
(particularly reorderbuffer.h) are very old, but backpatching doesn't
seem useful.
Like commits c9d297751959, c4f113e8fef9.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/bloom/bloom.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/contrib/bloom/bloom.h b/contrib/bloom/bloom.h index fba3ba77711..83c81e640f9 100644 --- a/contrib/bloom/bloom.h +++ b/contrib/bloom/bloom.h @@ -110,12 +110,9 @@ typedef struct BloomOptions * FreeBlockNumberArray - array of block numbers sized so that metadata fill * all space in metapage. */ -typedef BlockNumber FreeBlockNumberArray[ - MAXALIGN_DOWN( - BLCKSZ - SizeOfPageHeaderData - MAXALIGN(sizeof(BloomPageOpaqueData)) - - MAXALIGN(sizeof(uint16) * 2 + sizeof(uint32) + sizeof(BloomOptions)) - ) / sizeof(BlockNumber) -]; +typedef BlockNumber FreeBlockNumberArray[MAXALIGN_DOWN(BLCKSZ - SizeOfPageHeaderData - MAXALIGN(sizeof(BloomPageOpaqueData)) + - MAXALIGN(sizeof(uint16) * 2 + sizeof(uint32) + sizeof(BloomOptions))) + / sizeof(BlockNumber)]; /* Metadata of bloom index */ typedef struct BloomMetaPageData |