Re: CommandStatus from insert returning when using a portal.

Поиск
Список
Период
Сортировка
От Gurjeet Singh
Тема Re: CommandStatus from insert returning when using a portal.
Дата
Msg-id CABwTF4WhMJBuV_3A0x8_zsc5d0pYzv57FaS5KuR4aktFcg6pmQ@mail.gmail.com
обсуждение исходный текст
Ответ на CommandStatus from insert returning when using a portal.  (Dave Cramer <davecramer@gmail.com>)
Список pgsql-hackers
On Wed, Jul 12, 2023 at 1:03 PM Dave Cramer <davecramer@gmail.com> wrote:
>
> With a simple insert such as
>
> INSERT INTO test_table (cnt) VALUES (1), (2) RETURNING id
>
> if a portal is used to get the results then the CommandStatus is not returned on the execute only when the portal is
closed.After looking at this more it is really after all of the data is read which is consistent if you don't use a
portal,however it would be much more useful if we received the CommandStatus after the insert was completed and before
thedata 
>
> Obviously I am biased by the JDBC API which would like to have
>
> PreparedStatement.execute() return the number of rows inserted without having to wait to read all of the rows
returned

I believe if RETURNING clause is use, the protocol-level behaviour of
INSERT is expected to match that of SELECT. If the SELECT command
behaves like that (resultset followed by CommandStatus), then I'd say
the INSERT RETURNING is behaving as expected.

Best regards,
Gurjeet
http://Gurje.et



В списке pgsql-hackers по дате отправления:

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: CommandStatus from insert returning when using a portal.
Следующее
От: Dave Cramer
Дата:
Сообщение: Re: CommandStatus from insert returning when using a portal.