On Sat, Dec 03, 2005 at 11:43:00 -0500, Tom Lane <tgl@xxxxxxxxxxxxx> wrote: > Martijn van Oosterhout <kleptog@xxxxxxxxx> writes: > > On Fri, Dec 02, 2005 at 07:37:49PM -0500, Tom Lane wrote: > >> So the product I fancifully mentioned would weigh in somewhere around > >> 10^300, and thus be *well* within the capability of even the proposed > >> restricted numeric format. > > > I think numbers much bigger than that are only useful for theoretical > > mathemeticians. > > There are practical applications, eg, 1024-bit keys are fairly common > objects in cryptography these days, and that equates to about 10^308. > I don't really foresee anyone trying to run crypto algorithms with SQL > NUMERIC arithmetic, though ... 2046 bit keys are becoming more common. However, math using these keys is usually done modulo a product of two primes and there are ways of doing the calculations that are going to be much faster than doing them the way Postgres does. So it is unlikely that anyone would be using Postgres' numeric type to do this in any case.