Re: Floating point error

Поиск
Список
Период
Сортировка
От John R Pierce
Тема Re: Floating point error
Дата
Msg-id 512ACBD9.4030700@hogranch.com
обсуждение исходный текст
Ответ на Re: Floating point error  (John R Pierce <pierce@hogranch.com>)
Ответы Re: Floating point error  (Edson Richter <edsonrichter@hotmail.com>)
Список pgsql-general
On 2/24/2013 6:20 PM, John R Pierce wrote:
> On 2/24/2013 6:13 PM, Tom Duffey wrote:
>> - The Java app on production shows "10.3884573" while the test app
>> shows "10.3885"
>
> 'real' is single precision, which is only about 6 digits of decimal
> accuracy.   if your java variables were double precision, you probably
> should have used double in postgres too.
>
> 0.1 decimal is a repeating fraction in binary.

ooops, missed my third point.    if precise decimal numbers are
important, use a decimal data type, which is NUMERIC in SQL (I'm not
familiar enough with Java to know if it has a BCD or other decimal type).

--
john r pierce                                      37N 122W
somewhere on the middle of the left coast

В списке pgsql-general по дате отправления:

Предыдущее
От: John R Pierce
Дата:
Сообщение: Re: Floating point error
Следующее
От: Edson Richter
Дата:
Сообщение: Re: Floating point error