Re: [BUGS] i cannot able to delete the sql function permenently

2012-05-29 Thread Tom Lane
Fijil Stephen writes: > Hi I am created a function > CREATE FUNCTION one(float,float) RETURNS float AS $$ > select $1+$2 AS result; > $$ LANGUAGE SQL; > Its worked > Then > I droped the function > Drop function one(float,float) > Its also worked > Then I typed >Select one(1

[BUGS] i cannot able to delete the sql function permenently

2012-05-29 Thread Fijil Stephen
Hi I am created a function CREATE FUNCTION one(float,float) RETURNS float AS $$ select $1+$2 AS result; $$ LANGUAGE SQL; Its worked Then I droped the function Drop function one(float,float) Its also worked Then I typed Select one(18.5,12.4) Ho… the result appers as 31.9