Re: fix a bogus line in dynahash.c - Mailing list pgsql-patches

From Neil Conway
Subject Re: fix a bogus line in dynahash.c
Date
Msg-id 4293EC08.5080304@samurai.com
Whole thread Raw
In response to Re: fix a bogus line in dynahash.c  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: fix a bogus line in dynahash.c  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-patches
Tom Lane wrote:
> That test is a no-op in the case where hashp->alloc in fact points to
> palloc.  But it doesn't always point there --- see shmem_alloc.

Perhaps it would be a net win to change ShmemAlloc() to elog(ERROR) on
out-of-memory? A fair few of the ShmemAlloc() call sites don't bother to
check the return value anyway, and a few more just elog(ERROR). For the
few cases when we do need to do some cleanup, PG_TRY() could be used, or
we could just provide a variant of ShmemAlloc() that returns NULL on OOM
and could be used when error recovery is required.

-Neil

pgsql-patches by date:

Previous
From: Tom Lane
Date:
Subject: Re: fix a bogus line in dynahash.c
Next
From: "Qingqing Zhou"
Date:
Subject: Re: fix a bogus line in dynahash.c