Re: Arbitrary precision modulo operation - Mailing list pgsql-general

From Bruno Wolff III
Subject Re: Arbitrary precision modulo operation
Date
Msg-id 20040426172337.GC18684@wolff.to
Whole thread Raw
In response to Arbitrary precision modulo operation  (Chadwick Boggs <chadwickboggs@yahoo.com>)
List pgsql-general
On Mon, Apr 26, 2004 at 10:18:52 -0400,
  Chadwick Boggs <chadwickboggs@yahoo.com> wrote:
> I need to perform modulo operations on extremely large numbers.  The %
> operator is giving me number out of range errors and the mod(x, y)
> function simply seems to return the wrong results.  Also, my numerator
> is in the format of a quoted string, which the mod function can't take.

How large is extremely large?
You can cast the strings to a numeric type to solve the string problem.
'numeric' should work for numbers up to about 1000 digits.
For example:
area=> select '1234567890'::numeric % '123'::numeric;
 ?column?
----------
       39
(1 row)

If you are getting wrong results you should post a specific example so
that the developers can figure out what is going wrong.

pgsql-general by date:

Previous
From: Kris Jurka
Date:
Subject: Re: Postgres DB
Next
From: "Uwe C. Schroeder"
Date:
Subject: Re: loading data into postgresql became slow after i used VACUUME command.