Christophe Pettus wrote:
On Oct 4, 2009, at 7:09 PM, Guy Rouillier wrote:
There is no reason why PG could not support packed decimal.
Is that not NUMERIC?
No, that is not NUMERIC. All numeric types are stored as binary
representations. Packed decimal is not. Perhaps an example would
clarify. The number 1234 would be represented as follows:
binary: 10011010010
packed decimal: 12 34
Packed decimal needs to be able to represent 10 distinct characters,
0-9, so it uses half a byte for each. So a 4 digit number can be
represented in 2 bytes (for simplicity, I'm ignoring sign. That takes a
half byte.)
The IBM implementation provides a corresponding arithmetic library to
use packed decimal. These numbers are never converted to binary, so
there is no loss in precision.
--
Guy Rouillier
--
Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general