| From: | Vicktor <vic(at)adv(dot)ru> |
|---|---|
| To: | Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com> |
| Cc: | pgsql-bugs(at)postgresql(dot)org |
| Subject: | Re: text(bool), text(numeric) |
| Date: | 2001-11-28 17:30:05 |
| Message-ID: | 20011128203005.478a7ade.vic@adv.ru |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-bugs |
On Wed, 28 Nov 2001 08:35:00 -0800 (PST)
Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com> wrote:
Ok, thank !
Vicktor
> On Wed, 28 Nov 2001, Vicktor wrote:
>
> > Hello All,
> >
> > Why not exists functions for convert any type to text?
> > I can't find text(bool), text(numeric) ...
> > May be it posiible in 7.2?
>
> Don't think so. You need those functions and noone has written
> them officially.
>
> The former is easy, something like:
>
> create function text(bool) returns text as 'select case when $1 then
> ''true'' else ''false'' end;' language 'sql';
>
> should suffice.
>
>
> I'm not entirely sure this is entirely safe for the latter, but you can
> try :)
>
> create function numericout(numeric) returns int as 'numeric_out' language
> 'internal';
> create function text(numeric) returns text as 'select
> textin(numericout($1));' language 'sql';
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Peter Eisentraut | 2001-11-28 20:50:09 | Re: text(bool), text(numeric) |
| Previous Message | Stephan Szabo | 2001-11-28 16:35:00 | Re: text(bool), text(numeric) |