cursor - Search results in mailing lists
Mailing lists >> pgsql-hackers >> Thread
2025-06-16 19:46:29 | Returning nbtree posting list TIDs in DESC order during backwards scans (Peter Geoghegan)
cursor scans that happen to scroll back and forth on the same leaf page. This
Mailing lists >> pgsql-hackers >> Thread >> Search in thread (3)
2025-06-12 16:14:22 | Re: [PATCH] Add additional extended protocol commands to psql: \parse and \bindx (Peter Eisentraut)
cursors. I think it would be useful to keep SQL and psql aligned (e.g., COPY
Mailing lists >> pgsql-hackers >> Thread
2025-06-11 10:58:26 | Re: Proposal: Limitations of palloc inside checkpointer (Xuneng Zhou)
cursor gap-fill we refuse to move SYNC_FORGET_REQUEST / SYNC_FILTER_REQUEST (they’re order
Mailing lists >> pgsql-hackers >> Thread >> Search in thread (4)
2025-05-25 22:53:17 | Re: Fixing memory leaks in postgres_fdw (Tom Lane)
CURSOR_NAME), errmsg("cursor \"%s\" does not exist", curname))); @@ -793,13 +792,13 @@ dblink_record
Mailing lists >> pgsql-hackers >> Thread
2025-05-20 06:06:21 | Re: generic plans and "initial" pruning (Tom Lane)
cursor_options, NULL); - Assert(list_length(plan_list) == list_length(plan->stmt_list)); + if (list
Mailing lists >> pgsql-hackers >> Thread
2025-05-16 04:40:55 | Re: doc: Make logical replication examples executable in bulk and legal sgml. (David G. Johnston)
cursor at column 7 to avoid the prompt means the comment for select has a usability
Mailing lists >> pgsql-hackers >> Thread >> Search in thread (11)
2025-04-30 20:27:31 | Improve explicit cursor handling in pg_stat_statements (Sami Imseih)
cursor utility commands: 2. Normalize the cursor name in CLOSE. 3. Normalize fetch/move sizes in FETCH
Mailing lists >> pgsql-hackers >> Thread >> Search in thread (2)
2025-04-26 21:57:27 | Re: [BUG] temporary file usage report with extended protocol and unnamed portals (Sami Imseih)
cursors ( DECLARE CURSOR ) will only log temp file at cursor close and in which case
Mailing lists >> pgsql-hackers >> Thread
2025-04-26 21:55:51 | Re: Avoid circular header file dependency (Tom Lane)
cursor_query(const char *query); diff --git a/src/pl/plpython/plpy_elog.c b/src/pl/plpython/plpy_elog.c index 70de5ba13d7..ddf3573f0e7 100644 --- a/src/pl/plpython/plpy_elog.c +++ b/src/pl/plpython/plpy_elog.c
Mailing lists >> pgsql-hackers >> Thread
2025-04-26 00:44:05 | Sanding down some edge cases for PL/pgSQL reserved words (Tom Lane)
cursor_variable yyerror(&yylloc, NULL, yyscanner, "syntax error, expected \"FOR\""); tok = yylex(&yylval, &yylloc, yyscanner
Mailing lists >> pgsql-hackers >> Thread
2025-04-22 18:50:49 | Re: Check for tuplestorestate nullness before dereferencing (Tom Lane)
cursor for select (select 42) as x;" The reason that the subsequent bit of code
Mailing lists >> pgsql-hackers >> Thread
2025-04-12 22:10:54 | Re: remove unnecessary explicit type conversion (to char) for appendStringInfoChar function calls (Mahendra Singh Thalor)
cursor is coded as per extra NULL byte. diff --git a/src/backend/libpq/pqformat.c b/src/backend/libpq/pqformat.c We need many
Mailing lists >> pgsql-hackers >> Thread >> Search in thread (3)
2025-03-30 19:10:17 | Re: SQLFunctionCache and generic plans (Tom Lane)
cursor_options = plansource->cursor_options; newsource->fixed_result = plansource->fixed_result; if (plansource->resultDesc) diff
Mailing lists >> pgsql-hackers >> Thread >> Search in thread (2)
2025-03-24 18:43:47 | Re: AIO v2.5 (Andres Freund)
cursor) could have a pin on the target block. The most obvious fix would be to use CheckTableNotInUse
Mailing lists >> pgsql-hackers >> Thread
2025-03-19 08:47:23 | Re: Enhance 'pg_createsubscriber' to retrieve databases automatically when no database is provided. (vignesh C)
cursor CURSOR FOR SELECT datname FROM pg_subscription, pg_database + WHERE subdbid = pg_database.oid and datistemplate