Re: Add PortalDrop in exec_execute_message

From: Yura Sokolov <y(dot)sokolov(at)postgrespro(dot)ru>
To: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: Add PortalDrop in exec_execute_message
Date: 2021-05-27 11:45:50
Message-ID: 349ddd1e838c30b5efd3b14eb9345ccd@postgrespro.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Alvaro Herrera писал 2021-05-26 23:59:
> On 2021-May-25, Yura Sokolov wrote:
>
>> Tom Lane писал 2021-05-21 21:23:
>> > Yura Sokolov <y(dot)sokolov(at)postgrespro(dot)ru> writes:
>> > > I propose to add PortalDrop at the 'if (completed)' branch of
>> > > exec_execute_message.
>> >
>> > This violates our wire protocol specification, which
>> > specifically says
>> >
>> > If successfully created, a named portal object lasts till the end of
>> > the current transaction, unless explicitly destroyed. An unnamed
>> > portal is destroyed at the end of the transaction, or as soon as the
>> > next Bind statement specifying the unnamed portal as destination is
>> > issued. (Note that a simple Query message also destroys the unnamed
>> > portal.)
>> >
>> > I'm inclined to think that your complaint would be better handled
>> > by having the client send a portal-close command, if it's not
>> > going to do something else immediately.
>>
>> I thought about it as well. Then, if I understand correctly,
>> PQsendQueryGuts and PQsendQueryInternal in pipeline mode should send
>> "close portal" (CP) message after "execute" message, right?
>
> I don't think they should do that. The portal remains open, and the
> libpq interface does that. The portal gets closed at end of
> transaction
> without the need for any client message. I think if the client wanted
> to close the portal ahead of time, it would need a new libpq entry
> point
> to send the message to do that.

- PQsendQuery issues Query message, and exec_simple_query closes its
portal.
- people doesn't expect PQsendQueryParams to be different from
PQsendQuery aside of parameter sending. The fact that the portal
remains open is a significant, unexpected and undesired difference.
- PQsendQueryGuts is used in PQsendQueryParams and PQsendQueryPrepared.
It is always sends empty portal name and always "send me all rows"
limit (zero). Both usages are certainly to just perform query and
certainly no one expects portal remains open.

> (I didn't add a Close Portal message to PQsendQueryInternal in pipeline
> mode precisely because there is no such message in PQsendQueryGuts.

But PQsendQueryInternal should replicate behavior of PQsendQuery and
not PQsendQueryParams. Despite it has to use new protocol, it should
be indistinguishable to user, therefore portal should be closed.

> I think it would be wrong to unconditionally add a Close Portal message
> to any of those places.)

Why? If you foresee problems, please share your mind.

regards,
Sokolov Yura aka funny_falcon

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Yura Sokolov 2021-05-27 11:54:11 Re: Add PortalDrop in exec_execute_message
Previous Message Marko Tiikkaja 2021-05-27 11:23:35 security_definer_search_path GUC