pgsql: Fix corner case bug in numeric to_char().

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix corner case bug in numeric to_char().
Дата
Msg-id E1R1PLb-0008Ho-7S@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix corner case bug in numeric to_char().

Trailing-zero stripping applied by the FM specifier could strip zeroes
to the left of the decimal point, for a format with no digit positions
after the decimal point (such as "FM999.").

Reported and diagnosed by Marti Raudsepp, though I didn't use his patch.

Branch
------
REL8_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/2ab199b354135f199a895c4ee61c521b03a4d321

Modified Files
--------------
src/backend/utils/adt/formatting.c    |   27 ++++++++++++++++++++-------
src/test/regress/expected/numeric.out |   18 ++++++++++++++++++
src/test/regress/sql/numeric.sql      |    4 ++++
3 files changed, 42 insertions(+), 7 deletions(-)


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: pgsql: Allow bcc32 and win32 batch files to compile libpq.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix corner case bug in numeric to_char().