We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11a078c commit fa2fe04Copy full SHA for fa2fe04
src/backend/utils/mmgr/aset.c
@@ -571,7 +571,8 @@ AllocSetReset(MemoryContext context)
571
{
572
AllocSet set = (AllocSet) context;
573
AllocBlock block;
574
- Size keepersize = set->keeper->endptr - ((char *) set);
+ Size keepersize PG_USED_FOR_ASSERTS_ONLY
575
+ = set->keeper->endptr - ((char *) set);
576
577
AssertArg(AllocSetIsValid(set));
578
@@ -638,7 +639,8 @@ AllocSetDelete(MemoryContext context)
638
639
640
641
AllocBlock block = set->blocks;
642
643
644
645
646
0 commit comments