Declaring empty, non-NULL array in plpgsql - Mailing list pgsql-general

From CSN
Subject Declaring empty, non-NULL array in plpgsql
Date
Msg-id 20031124051135.37111.qmail@web40601.mail.yahoo.com
Whole thread Raw
Responses Re: Declaring empty, non-NULL array in plpgsql  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
Is there a way to declare an array in plpgsql so that
it's empty (not NULL)? The following causes arr to end
up being NULL:

arr varchar[];
-- do stuff with arr..
arr = array_append(arr, '','');


And this causes an unwanted element at the front:

arr varchar[] := array[''''];
-- do stuff with arr..
arr = array_append(arr, '','');


__________________________________
Do you Yahoo!?
Free Pop-Up Blocker - Get it now
http://companion.yahoo.com/

pgsql-general by date:

Previous
From: Scott Ribe
Date:
Subject: Re: Humor me: Postgresql vs. MySql (esp. licensing)
Next
From: CSN
Date:
Subject: Re: Declaring empty, non-NULL array in plpgsql