"Tom Lane" <[EMAIL PROTECTED]> wrote: > "Mendola Gaetano" <[EMAIL PROTECTED]> writes: > > if ( !ret_value ) { > > ereport(FATAL, > > (errcode(ERRCODE_OUT_OF_MEMORY), > > errmsg("strdup out of memory"))); > > } > > Should be ERROR not FATAL (the places that are insisting on FATAL are > special cases that won't be able to use this code). Also the text > should just be "out of memory".
Ok. > Per previous discussion, I don't believe in the test for null input, > either ... Ok ok, I just tried :-) > It might be worth creating an xmalloc as well, since I think there > are some unchecked malloc's in some places. I'll see > As for where to put it, mcxt.c may be the best place. aset.c does > not contain any routines that are supposed to be globally known. Ok Regards Gaetano Mendola ---------------------------(end of broadcast)--------------------------- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match