]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Rewrite pg_size_pretty() to avoid compiler bug.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 29 Apr 2011 05:45:27 +0000 (01:45 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 29 Apr 2011 05:45:27 +0000 (01:45 -0400)
commit9b51d50c2f55ec71a800a48f2955567695c9d26d
tree41d426a923f8a114a59892c3e8ddb2660c96e316
parent1aa24e20241710020926a271609811ef96dea6c6
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.
src/backend/utils/adt/dbsize.c