From 8826d850781cb328482c8f92af2a3d93385cd63b Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Tue, 3 May 2016 10:52:25 -0400 Subject: Tweak a few more things in preparation for upcoming pgindent run. These adjustments adjust code and comments in minor ways to prevent pgindent from mangling them. Among other things, I tried to avoid situations where pgindent would emit "a +b" instead of "a + b", and I tried to avoid having it break up inline comments across multiple lines. --- src/backend/utils/adt/dbsize.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/backend/utils/adt/dbsize.c') diff --git a/src/backend/utils/adt/dbsize.c b/src/backend/utils/adt/dbsize.c index 1db4acf175e..4ec2fed2b35 100644 --- a/src/backend/utils/adt/dbsize.c +++ b/src/backend/utils/adt/dbsize.c @@ -817,11 +817,14 @@ pg_size_bytes(PG_FUNCTION_ARGS) else if (pg_strcasecmp(strptr, "kb") == 0) multiplier = (int64) 1024; else if (pg_strcasecmp(strptr, "mb") == 0) - multiplier = (int64) 1024 * 1024; + multiplier = ((int64) 1024) * 1024; + else if (pg_strcasecmp(strptr, "gb") == 0) - multiplier = (int64) 1024 * 1024 * 1024; + multiplier = ((int64) 1024) * 1024 * 1024; + else if (pg_strcasecmp(strptr, "tb") == 0) - multiplier = (int64) 1024 * 1024 * 1024 * 1024; + multiplier = ((int64) 1024) * 1024 * 1024 * 1024; + else ereport(ERROR, (errcode(ERRCODE_INVALID_PARAMETER_VALUE), -- cgit v1.2.3