Arbitrary precision arithmatic with pgsql - Mailing list pgsql-sql

From Rajesh Kumar Mallah
Subject Arbitrary precision arithmatic with pgsql
Date
Msg-id 41346727.8080901@trade-india.com
Whole thread Raw
Responses Re: Arbitrary precision arithmatic with pgsql  (Michael Glaesemann <grzm@myrealbox.com>)
List pgsql-sql
Hi,

The docs says that numeric type supports numbers upto
any precision

<docs>
8.1.2. Arbitrary Precision NumbersThe type numeric can store numbers with up to 1000 digits of precision 
and perform calculations exactly. It is especially recommended for 
storing monetary amounts and other quantities where exactness is 
required. However, the numeric type is very slow compared to the 
floating-point types described in the next section.
</docs>


However

tradein_clients=# SELECT  cast(2^100 as numeric);
+---------------------------------+
|             numeric             |
+---------------------------------+
| 1267650600228230000000000000000 |
+---------------------------------+
(1 row)
Time: 1036.063 ms

Naturally there is a loss of information here. So my question is

1. Does the specs not require pgsql to print a warning or info ,  will it not be considered silient truncation of
data.

2. Is there any way to do such calculation using pgsql, i understand  bc is a better tool for it.

Warm Regards
Rajesh Kumar Mallah.

-- 

regds
Mallah.

Rajesh Kumar Mallah
+---------------------------------------------------+
| Tradeindia.com  (3,11,246) Registered Users         | 
| Indias' Leading B2B eMarketPlace                  |
| http://www.tradeindia.com/                |
+---------------------------------------------------+



pgsql-sql by date:

Previous
From: Martin Marques
Date:
Subject: colored PL with emacs
Next
From: Stephen Quinney
Date:
Subject: Re: colored PL with emacs