mirror of
https://github.com/postgres/postgres.git
synced 2025-09-06 13:46:51 +03:00
Fix compiler warning for non-assert builds.
Reported by Peter Geoghegan David Rowley
This commit is contained in:
@@ -110,7 +110,7 @@ brinRevmapTerminate(BrinRevmap *revmap)
|
|||||||
void
|
void
|
||||||
brinRevmapExtend(BrinRevmap *revmap, BlockNumber heapBlk)
|
brinRevmapExtend(BrinRevmap *revmap, BlockNumber heapBlk)
|
||||||
{
|
{
|
||||||
BlockNumber mapBlk;
|
BlockNumber mapBlk PG_USED_FOR_ASSERTS_ONLY;
|
||||||
|
|
||||||
mapBlk = revmap_extend_and_get_blkno(revmap, heapBlk);
|
mapBlk = revmap_extend_and_get_blkno(revmap, heapBlk);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user