Re: Memory context can be its own parent and child in replication command - Mailing list pgsql-hackers

From Anthonin Bonnefoy
Subject Re: Memory context can be its own parent and child in replication command
Date
Msg-id CAO6_XqrSYJdmp9EOpj1RztEEpdwgtAiXK5m+OCg0LMY0JK1Njg@mail.gmail.com
Whole thread Raw
In response to Re: Memory context can be its own parent and child in replication command  (Anthonin Bonnefoy <anthonin.bonnefoy@datadoghq.com>)
Responses Re: Memory context can be its own parent and child in replication command
List pgsql-hackers
On Tue, Mar 11, 2025 at 10:26 AM Anthonin Bonnefoy
<anthonin.bonnefoy@datadoghq.com> wrote:
> --- a/src/backend/utils/mmgr/mcxt.c
> +++ b/src/backend/utils/mmgr/mcxt.c
> @@ -527,6 +527,7 @@ MemoryContextDeleteOnly(MemoryContext context)
>
>         context->methods->delete_context(context);
>
> +       context->type = T_Invalid;
>         VALGRIND_DESTROY_MEMPOOL(context);
>  }
>
> However, when testing this on my mac, it seems to trigger a heap
> corruption during initdb.

Which is normal since this would only work with AllocSet as other
delelte_context methods would just free the context... A better spot
would be just before putting the context in the freelist in
AllocSetDelete.



pgsql-hackers by date:

Previous
From: Amit Kapila
Date:
Subject: Re: Parallel heap vacuum
Next
From: jian he
Date:
Subject: Re: bogus error message for ALTER TABLE ALTER CONSTRAINT