From: Masahiko Sawada Date: Thu, 15 Jun 2023 08:04:19 +0000 (+0900) Subject: Replace GUC_UNIT_MEMORY|GUC_UNIT_TIME with GUC_UNIT. X-Git-Tag: REL_16_BETA2~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a54fc892ad0a5673d75b199128b1f5fcf5e1a41d;p=thirdparty%2Fpostgresql.git Replace GUC_UNIT_MEMORY|GUC_UNIT_TIME with GUC_UNIT. We used (GUC_UNIT_MEMORY | GUC_UNIT_TIME) instead of GUC_UNIT some places but we already define it in guc.h. This commit replaces them with GUC_UNIT for better consistency with their surrounding code. Author: Japin Li Reviewed-by: Richard Guo, Michael Paquier, Masahiko Sawada Discussion: https://postgr.es/m/MEYP282MB1669EC0FED922F7A151673ACB65AA@MEYP282MB1669.AUSP282.PROD.OUTLOOK.COM --- diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index a9033b7a54d..5308896c87f 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -2766,7 +2766,7 @@ convert_real_from_base_unit(double base_value, int base_unit, const char * get_config_unit_name(int flags) { - switch (flags & (GUC_UNIT_MEMORY | GUC_UNIT_TIME)) + switch (flags & GUC_UNIT) { case 0: return NULL; /* GUC has no units */ @@ -2802,7 +2802,7 @@ get_config_unit_name(int flags) return "min"; default: elog(ERROR, "unrecognized GUC units value: %d", - flags & (GUC_UNIT_MEMORY | GUC_UNIT_TIME)); + flags & GUC_UNIT); return NULL; } }