Re: NULLS and string concatenation - Mailing list pgsql-sql

From Bruno Wolff III
Subject Re: NULLS and string concatenation
Date
Msg-id 20041119174543.GA26505@wolff.to
Whole thread Raw
In response to NULLS and string concatenation  (Don Drake <dondrake@gmail.com>)
Responses Re: NULLS and string concatenation  (Michael Fuhr <mike@fuhr.org>)
List pgsql-sql
On Fri, Nov 19, 2004 at 11:12:38 -0600, Don Drake <dondrake@gmail.com> wrote:
> I have a function that uses an execute statement to insert data into a
> table, I do in my implementation of table partitioning.
> 
> Anyway, I ran into trouble when NULL values were being passed in
> (fields are nullable) and my insert statement turned into a big NULL.
> 
> Here's an equivalent statement that caused trouble:
> 
> select 'some text, should be null:'|| NULL
> 
> This returns NULL and no other text.  Why is that?  I wasn't expecting
> the "some text.." to disappear altogether.
> 
> Is this a bug?

No.
> 
> I was able to work around the problem by using COALESCE (and casting
> variables since it wants the same data types passed to it).

This is what you should do.

> 
> -Don
> 
> -- 
> Donald Drake
> President
> Drake Consulting
> http://www.drakeconsult.com/
> 312-560-1574
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
>       subscribe-nomail command to majordomo@postgresql.org so that your
>       message can get through to the mailing list cleanly


pgsql-sql by date:

Previous
From: Don Drake
Date:
Subject: NULLS and string concatenation
Next
From: Richard Huxton
Date:
Subject: Re: NULLS and string concatenation