Re: [pgadmin-support] Bug: Issue with Default Parameters

2011-12-04 Thread Guillaume Lelarge
On Tue, 2011-11-22 at 20:19 -0500, Paragon Corporation wrote: > I noticed another issue with default parameters which I didn't see listed. > I see it in 1.14 at any rate not sure it is an issue in lower versions. > > That is if I write a function like this: > CREATE OR REPLACE FUNCTION test_defa

[pgadmin-support] Bug: Issue with Default Parameters

2011-11-22 Thread Paragon Corporation
I noticed another issue with default parameters which I didn't see listed. I see it in 1.14 at any rate not sure it is an issue in lower versions. That is if I write a function like this: CREATE OR REPLACE FUNCTION test_defaults(test text DEFAULT '') RETURNS text AS $$ SELECT 'hello'::t