| From: | Robert Haas <rhaas(at)postgresql(dot)org> |
|---|---|
| To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
| Subject: | pgsql: dshash: Make it possible to suppress out of memory errors |
| Date: | 2026-03-19 15:55:58 |
| Message-ID: | E1w3Fj3-000VxW-1x@gemulon.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
dshash: Make it possible to suppress out of memory errors
Introduce dshash_find_or_insert_extended, which is just like
dshash_find_or_insert except that it takes a flags argument.
Currently, the only supported flag is DSHASH_INSERT_NO_OOM, but
I have chosen to use an integer rather than a boolean in case we
end up with more flags in the future.
Reviewed-by: Chao Li <li(dot)evan(dot)chao(at)gmail(dot)com>
Reviewed-by: Sami Imseih <samimseih(at)gmail(dot)com>
Discussion: http://postgr.es/m/CA+TgmoaJwUukUZGu7_yL74oMTQQz2=zqucMhF9+9xBmSC5us1w@mail.gmail.com
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/6f0738ddec85b416e7186e3099be70a3420bf3ea
Modified Files
--------------
src/backend/lib/dshash.c | 94 +++++++++++++++++++++++++++++++++++-------------
src/include/lib/dshash.h | 12 +++++--
2 files changed, 79 insertions(+), 27 deletions(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Nathan Bossart | 2026-03-19 16:44:00 | pgsql: Allow choosing specific grantors via GRANT/REVOKE ... GRANTED BY |
| Previous Message | Tom Lane | 2026-03-19 15:37:29 | pgsql: Fix transient memory leakage in jsonpath evaluation. |