Re: [pgadmin-support] Problems reverse engineering functions

2010-02-16 Thread Guillaume Lelarge
Le 16/02/2010 18:57, Kieran McCusker a écrit : > [...] > Sorry if this has been raised before but the following function will not > be reverse engineered correctly - The final default clause will be removed. > > CREATE FUNCTION fn(a text, b integer DEFAULT NULL::integer, c integer > DEFAULT NULL::

[pgadmin-support] Problems reverse engineering functions

2010-02-16 Thread Kieran McCusker
Hi Sorry if this has been raised before but the following function will not be reverse engineered correctly - The final default clause will be removed. CREATE FUNCTION fn(a text, b integer DEFAULT NULL::integer, c integer DEFAULT NULL::integer) returns text as $$ BEGIN return 't'; END; $$