diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/utils/mmgr/mcxt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/mmgr/mcxt.c b/src/backend/utils/mmgr/mcxt.c index 7bbfabe0eab..d52bd2c073c 100644 --- a/src/backend/utils/mmgr/mcxt.c +++ b/src/backend/utils/mmgr/mcxt.c @@ -466,10 +466,10 @@ MemoryContextIsEmpty(MemoryContext context) * Find the memory allocated to blocks for this memory context. If recurse is * true, also include children. */ -int64 +Size MemoryContextMemAllocated(MemoryContext context, bool recurse) { - int64 total = context->mem_allocated; + Size total = context->mem_allocated; AssertArg(MemoryContextIsValid(context)); |