Re: Numeric 508 datatype

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
Cc: Alvaro Herrera <alvherre(at)commandprompt(dot)com>, Simon Riggs <simon(at)2ndquadrant(dot)com>, pgsql-patches(at)postgresql(dot)org
Subject: Re: Numeric 508 datatype
Date: 2005-12-02 20:55:46
Message-ID: 6988.1133556946@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-hackers pgsql-patches

Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> writes:
> I just tested from a standalone backend:
> backend> select pow(10::numeric, 131071) + 1
> and got 4095 zeros and no trailing '1' (wrong), so it isn't psql, it
> must be something in the backend.

If the backend is truncating the result length, I don't see why psql
would decide it needs 12K dashes for the header. There's something
awfully fishy going on in your machine.

Try something like

regression=# select length((pow(10::numeric, 131071))::text);
length
--------
131089
(1 row)

If that gives the right answer then the NUMERIC code is off the hook,
and what you've got is a strange limitation on output column length.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Bruce Momjian 2005-12-02 20:59:36 Re: Numeric 508 datatype
Previous Message Bruce Momjian 2005-12-02 20:52:48 Re: createuser ignores stdin in 8.1.0?

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2005-12-02 20:59:36 Re: Numeric 508 datatype
Previous Message Rod Taylor 2005-12-02 20:51:52 Re: generalizing the planner knobs

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2005-12-02 20:59:36 Re: Numeric 508 datatype
Previous Message Bruce Momjian 2005-12-02 20:44:11 Re: Numeric 508 datatype