CREATE OR REPLACE FUNCTION to_number(integer)
RETURNS "numeric" AS
$BODY$
BEGIN
RETURN to_number($1, 'S99999999999999D999999');
EXCEPTION
WHEN OTHERS THEN
RETURN NULL;
END;
$BODY$
LANGUAGE 'plpgsql' IMMUTABLE;
/-- ENDpgsql is telling me /-- END has a sintax error, just to confirm, is it okay if i get rid of that line? -- Sent via pgsql-general mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general
