Re: BUG #17546: power() function - value is distorted via automatic type cast

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: su(dot)sinodan(at)gmail(dot)com
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #17546: power() function - value is distorted via automatic type cast
Date: 2022-07-11 15:49:49
Message-ID: 1119193.1657554589@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> When a certain number (p, s) with a fractional part (specific examples -
> 1.11 and 69.96) is multiplied by a power (10, N), the resulting value is
> distorted.
> However, if the power(10, N) is manually converted to an integer, the
> resulting value is correct.
> It looks like there is some kind of problem with the automatic type
> conversion of the power() function.

Your query is invoking the float8 variant of power(), which is
necessarily of limited precision. If I change "w.degree::integer"
to "w.degree::numeric", then it invokes the numeric variant of
power(), and I get correctly rounded results (much more slowly
unfortunately :-(). So I don't see any bug here.

It might be surprising that the parser prefers float8 over numeric
when the given function arguments don't exactly match either one.
But that's a very ancient decision that we're not going to change.
There is support for it in the SQL standard, which directs
implementations to prefer inexact numeric types over exact ones
when they have to make a choice.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Антон Потапов 2022-07-11 16:04:04 Re: BUG #17546: power() function - value is distorted via automatic type cast
Previous Message PG Bug reporting form 2022-07-11 15:20:21 BUG #17546: power() function - value is distorted via automatic type cast