pgsql: Make sure float4in/float8in accept all standard spellings of "in

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Make sure float4in/float8in accept all standard spellings of "in
Дата
Msg-id E1V5etC-0002rU-JX@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Make sure float4in/float8in accept all standard spellings of "infinity".

The C99 and POSIX standards require strtod() to accept all these spellings
(case-insensitively): "inf", "+inf", "-inf", "infinity", "+infinity",
"-infinity".  However, pre-C99 systems might accept only some or none of
these, and apparently Windows still doesn't accept "inf".  To avoid
surprising cross-platform behavioral differences, manually check for each
of these spellings if strtod() fails.  We were previously handling just
"infinity" and "-infinity" that way, but since C99 is most of the world
now, it seems likely that applications are expecting all these spellings
to work.

Per bug #8355 from Basil Peace.  It turns out this fix won't actually
resolve his problem, because Python isn't being this careful; but that
doesn't mean we shouldn't be.

Branch
------
REL9_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/cbb565f7c397fa8a74b214e1765ed9db66c3d8a4

Modified Files
--------------
src/backend/utils/adt/float.c |   98 +++++++++++++++++++++++++++++++----------
1 file changed, 75 insertions(+), 23 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Make sure float4in/float8in accept all standard spellings of "in
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Make sure float4in/float8in accept all standard spellings of "in