Re: Why repalloc() != realloc() ? - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Why repalloc() != realloc() ?
Date
Msg-id 19631.1086147597@sss.pgh.pa.us
Whole thread Raw
In response to Why repalloc() != realloc() ?  (Alvaro Herrera <alvherre@dcc.uchile.cl>)
Responses Re: Why repalloc() != realloc() ?  (Alvaro Herrera <alvherre@dcc.uchile.cl>)
List pgsql-hackers
Alvaro Herrera <alvherre@dcc.uchile.cl> writes:
> Is there a reason why repalloc() does not behave the same as realloc?
> realloc(NULL, size) behaves the same as malloc(size), and it seems
> useful behavior -- I wonder why repalloc() chooses to Assert() against
> this exact condition?

We don't allow palloc(0) either, and we don't return NULL on failure,
and for that matter we don't allow pfree(NULL).  Please don't argue that
"we ought to be just like libc".

> I assume this is because the NULL pointer would not know what context it
> belongs to,

That's a sufficient reason from my point of view.  One of the main
properties of repalloc is that the alloc'd memory stays in the same
context it was first allocated in.  I'm not excited about allowing
a special exception that makes that behavior less predictable.

To give a concrete example of why this sort of corner-case exception is
bad, imagine an aggregate function or similar thing that concatenates
strings.  It starts with a palloc() in a specific context and then
assumes that repalloc's will stay in that context without prodding.
The code works fine --- unless there are corner cases for palloc(0)
returning NULL and repalloc() accepting NULL.

> Can this behavior be changed?

Not without a significantly better argument than you've offered.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: Nested transactions and tuple header info
Next
From: Tom Lane
Date:
Subject: Re: Nested transactions and tuple header info