| From: | "Daniel Verite" <daniel(at)manitou-mail(dot)org> |
|---|---|
| To: | "Jakub Wartak" <jakub(dot)wartak(at)enterprisedb(dot)com> |
| Cc: | "PostgreSQL Hackers" <pgsql-hackers(at)postgresql(dot)org> |
| Subject: | Re: psql's FETCH_COUNT (cursor) is not being respected for CTEs |
| Date: | 2023-01-04 15:22:03 |
| Message-ID: | 3a3451a2-7d05-4dd7-b7ac-e75d2accf327@manitou-mail.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
Jakub Wartak wrote:
> It might be a not so well known fact (?) that CTEs are not executed
> with cursor when asked to do so, but instead silently executed with
> potential huge memory allocation going on. Patch is attached. My one
> doubt is that not every statement starting with "WITH" is WITH(..)
> SELECT of course.
Yes, that's why WITH queries are currently filtered out by the
FETCH_COUNT feature.
Case in point:
test=> begin;
BEGIN
test=> create table tbl(i int);
CREATE TABLE
test=> declare psql_cursor cursor for
with r(i) as (values (1))
insert into tbl(i) select i from r;
ERROR: syntax error at or near "insert"
LINE 3: insert into tbl(i) select i from r;
So the fix you're proposing would fail on that kind of queries.
A solution would be for psql to use PQsetSingleRowMode() to retrieve
results row-by-row, as opposed to using a cursor, and then allocate
memory for only FETCH_COUNT rows at a time. Incidentally it solves
other problems like queries containing multiple statements, that also
fail to work properly with cursors, or UPDATE/INSERT... RETURNING.. on
large number of rows that could also benefit from pagination in
memory.
Best regards,
--
Daniel Vérité
https://postgresql.verite.pro/
Twitter: @DanielVerite
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Ankit Kumar Pandey | 2023-01-04 15:30:50 | Re: Todo: Teach planner to evaluate multiple windows in the optimal order |
| Previous Message | Ankit Kumar Pandey | 2023-01-04 15:11:27 | Re: Todo: Teach planner to evaluate multiple windows in the optimal order |