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

Started by Tom Lanealmost 15 years ago1 messagescomitters
Jump to latest
#1Tom Lane
tgl@sss.pgh.pa.us

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_3_STABLE

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

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(-)