mirror of
https://github.com/postgres/postgres.git
synced 2026-03-09 01:31:22 -04:00
Fix compiler warning for non-assert builds.
Reported by Peter Geoghegan David Rowley
This commit is contained in:
parent
095d40123c
commit
96a73fcdac
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ brinRevmapTerminate(BrinRevmap *revmap)
|
|||
void
|
||||
brinRevmapExtend(BrinRevmap *revmap, BlockNumber heapBlk)
|
||||
{
|
||||
BlockNumber mapBlk;
|
||||
BlockNumber mapBlk PG_USED_FOR_ASSERTS_ONLY;
|
||||
|
||||
mapBlk = revmap_extend_and_get_blkno(revmap, heapBlk);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue