Re: Postgres storing time in strange manner

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Postgres storing time in strange manner
Дата
Msg-id 21141.1032242851@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Postgres storing time in strange manner  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
I said:
> I had success with this test:

BTW, some digging in the assembly code shows that the actual problem is
this: instead of emitting "x / 3600.0", with -ffast-math the compiler
emits the equivalent of "x * (double) (1.0 / 3600.0)".  It's the
last-bit inaccuracy of the latter constant that's killing us.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Postgres storing time in strange manner
Следующее
От: pgsql-bugs@postgresql.org
Дата:
Сообщение: Bug #771: rewrite rules on update or insert do not report errors