pgsql: Fix non-portable use of round().

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Fix non-portable use of round().
Дата
Msg-id E1f2ThN-0003G5-Tf@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix non-portable use of round().

round() is from C99.  Use rint() instead.  There are behavioral
differences between round() and rint(), but they should not matter to
the Bloom filter optimal_k() function.  We already assume POSIX
behavior for rint(), so there is no question of rint() not using
"rounds towards nearest" as its rounding mode.

Cleanup from commit 51bc271790eb234a1ba4d14d3e6530f70de92ab5.

Per buildfarm member thrips.

Author: Peter Geoghegan
Discussion: https://postgr.es/m/CAH2-Wzn76eCGUonARy-wrVtMHsf+4cvbK_oJAWTLfORTU5ki0w@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/686d399f2be6eea4b74d59cdadd427d09cb0e246

Modified Files
--------------
src/backend/lib/bloomfilter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: Add amcheck verification of heap relations belonging to btreein
Следующее
От: Michael Paquier
Дата:
Сообщение: Re: pgsql: Set random seed for pgbench.