Re: create function atof?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: postgresql(at)novacolor(dot)ca
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: create function atof?
Date: 2004-02-20 14:54:14
Message-ID: 27684.1077288854@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

mark <postgresql(at)novacolor(dot)ca> writes:
> Is it possible to create a database function that mimics the C function atof?

Just cast.

There doesn't seem to be a pg_cast entry for varchar to float8, but you
could cast to text and then float8, or you could use functional notation
for the cast (which is a tad more forgiving than CAST or ::).

regression=# select '1234.5'::varchar::float8;
ERROR: cannot cast type character varying to double precision
regression=# select '1234.5'::text::float8;
float8
--------
1234.5
(1 row)

regression=# select float8('1234.5'::varchar);
float8
--------
1234.5
(1 row)

Or write a plpgsql function that simply tries to return its input.
I believe that whenever plpgsql is called on to make a type conversion,
it will invoke the output function of the given type and then the input
function of the other type, so it will work for any cases where the
external textual representation looks the same.

regression=# create function atof(varchar) returns float as
regression-# 'begin
regression'# return $1;
regression'# end' language plpgsql strict immutable;
CREATE FUNCTION

regression=# select atof('1234.5');
atof
--------
1234.5
(1 row)

regression=# select atof('zit');
ERROR: invalid input syntax for type double precision: "zit"
CONTEXT: PL/pgSQL function "atof" while casting return value to function's return type

regards, tom lane

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Silke Trissl 2004-02-20 14:58:10 date format in 7.4
Previous Message Achilleus Mantzios 2004-02-20 14:24:53 Re: create function atof?