Re: Comment in portal.h - Mailing list pgsql-hackers

From Andy Fan
Subject Re: Comment in portal.h
Date
Msg-id 87plqusadg.fsf@163.com
Whole thread Raw
In response to Comment in portal.h  (Etsuro Fujita <etsuro.fujita@gmail.com>)
Responses Re: Comment in portal.h
List pgsql-hackers
Etsuro Fujita <etsuro.fujita@gmail.com> writes:

> Hi,
>
> I noticed $SUBJECT while working on something else:
>
>     /*
>      * Where we store tuples for a held cursor or a PORTAL_ONE_RETURNING or
>      * PORTAL_UTIL_SELECT query.  (A cursor held past the end of its
>      * transaction no longer has any active executor state.)
>      */
>     Tuplestorestate *holdStore; /* store for holdable cursors */
>     MemoryContext holdContext;  /* memory containing holdStore */
>
> We do that for PORTAL_ONE_MOD_WITH as well, so the comment should be
> "Where we store tuples for a held cursor or a PORTAL_ONE_RETURNING,
> PORTAL_ONE_MOD_WITH, or PORTAL_UTIL_SELECT query.".  Attached is a
> patch for that.

Patch looks good to me.

All the codes of PortalRun & FillPortalStore & PortalRunSelect are
consistent with this idea. 

-- 
Best Regards
Andy Fan




pgsql-hackers by date:

Previous
From: Noah Misch
Date:
Subject: Re: race condition when writing pg_control
Next
From: David Rowley
Date:
Subject: Re: Do we still need parent column in pg_backend_memory_context?