pgsql: Rewrite pg_size_pretty() to avoid compiler bug. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Rewrite pg_size_pretty() to avoid compiler bug.
Date
Msg-id E1QFgWn-0002OH-FY@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Rewrite pg_size_pretty() to avoid compiler bug.

Convert it to use successive shifts right instead of increasing a divisor.
This is probably a tad more efficient than the original coding, and it's
nicer-looking than the previous patch because we don't need a special case
to avoid overflow in the last branch.  But the real reason to do it is to
avoid a Solaris compiler bug, as per results from buildfarm member moa.

Branch
------
REL8_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/9b51d50c2f55ec71a800a48f2955567695c9d26d

Modified Files
--------------
src/backend/utils/adt/dbsize.c |   32 +++++++++++++-------------------
1 files changed, 13 insertions(+), 19 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Rewrite pg_size_pretty() to avoid compiler bug.
Next
From: Tom Lane
Date:
Subject: pgsql: Rewrite pg_size_pretty() to avoid compiler bug.