Re: BUG #3387: mod on non-integer returns bad result - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #3387: mod on non-integer returns bad result
Date
Msg-id 6531.1181929653@sss.pgh.pa.us
Whole thread Raw
In response to Re: BUG #3387: mod on non-integer returns bad result  (Gregory Stark <stark@enterprisedb.com>)
Responses Re: BUG #3387: mod on non-integer returns bad result  (Bruce Momjian <bruce@momjian.us>)
List pgsql-bugs
Gregory Stark <stark@enterprisedb.com> writes:
> In the case reported div_var was getting 70/70 = 0.99999. Which is
> really just wrong.

Agreed, but I think your proposed patch is just a band-aid.  The real
problem with div_var is that it generates inaccurate output digits at
all --- it's assuming that computing a few guard digits before rounding
will suffice to ensure that all the delivered digits are correct, but
I think there will always be corner cases where it fails.

I just blew the dust off my old copy of Knuth vol 2, and see that his
algorithm for multi-precision division generates output digits that are
correct to start with (or at least he never needs to revisit a digit
after moving on to the next).  ISTM we should go over to an approach
like that.  For the truncated-output case the result will be exact,
and for the rounded-output case you generate exactly one guard digit
to see if it's >= base/2.

            regards, tom lane

pgsql-bugs by date:

Previous
From: Gregory Stark
Date:
Subject: Re: BUG #3387: mod on non-integer returns bad result
Next
From: "Alvaro"
Date:
Subject: BUG #3390: initdb fails on install