Re: [BUGS] BUG #2846: inconsistent and confusing handling - Mailing list pgsql-patches

From Roman Kononov
Subject Re: [BUGS] BUG #2846: inconsistent and confusing handling
Date
Msg-id 459305F9.1060403@yahoo.com
Whole thread Raw
In response to Re: [BUGS] BUG #2846: inconsistent and confusing handling of underflows,  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: [BUGS] BUG #2846: inconsistent and confusing
List pgsql-patches
On 12/27/2006 05:19 PM, Tom Lane wrote:
> Roman Kononov <kononov195-pgsql@yahoo.com> writes:
>> On 12/27/2006 03:23 PM, Bruce Momjian wrote:
>>> Are you sure?  As I remember, computation automatically upgrades to
>>> 'double'.  See this program and output:
>
>> This is platform- and compiler- dependent:
>
> ... and probably irrelevant, too.  We should store the result into a
> float4 variable and then test for isinf() on that; that eliminates the
> question of whether the compiler did the multiply in a wider format or
> not.

You are right provided that you want to ignore underflows and silently
produce zeros instead.

If you go this way, I recommend to ignore overflows as well, and silently
produce infinities and NaNs.

Roman

pgsql-patches by date:

Previous
From: Tom Lane
Date:
Subject: Re: [BUGS] BUG #2846: inconsistent and confusing handling of underflows,
Next
From: Bruce Momjian
Date:
Subject: Re: [BUGS] BUG #2846: inconsistent and confusing