Re: [HACKERS] Another nasty cache problem - Mailing list pgsql-hackers

From Patrick Welche
Subject Re: [HACKERS] Another nasty cache problem
Date
Msg-id 20000214161444.D13823@quartz.newn.cam.ac.uk
Whole thread Raw
In response to Re: [HACKERS] Another nasty cache problem  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
On Mon, Feb 14, 2000 at 11:00:16AM -0500, Tom Lane wrote:
> Patrick Welche <prlw1@newn.cam.ac.uk> writes:
>   
> > +       if (!string)
> > +               elog(ERROR, "Trying to convert NULL text to integer (int2)");
> 
> This is unreasonable behavior.  The correct patch is just
> 
>     if (!string)
>         return 0;
> 
> which will allow the function manager to plow ahead with returning the
> NULL that it's going to return anyway.  See the past pghackers threads
> about redesigning the function manager interface if you don't understand
> what's going on here.

Off top of head, that means that null and the string "0" both return 0..
OK - I'll look for the mail thread.

Cheers,

Patrick


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: [HACKERS] Another nasty cache problem
Next
From: The Hermit Hacker
Date:
Subject: Programmers needed to implement Replication ...