Fix code indentation violations introduced by recent commit

The two culprit commits are 5765cfe and 5e0c761.

Per buildfarm member koel for the first commit, while I have noticed the
second one in passing.
This commit is contained in:
Michael Paquier 2023-08-11 20:43:34 +09:00
parent 5765cfe18c
commit 5dc456b7dd
3 changed files with 15 additions and 14 deletions

View File

@ -669,7 +669,8 @@ fmgr_security_definer(PG_FUNCTION_ARGS)
&isnull); &isnull);
if (!isnull) if (!isnull)
{ {
ArrayType *array; ArrayType *array;
oldcxt = MemoryContextSwitchTo(fcinfo->flinfo->fn_mcxt); oldcxt = MemoryContextSwitchTo(fcinfo->flinfo->fn_mcxt);
array = DatumGetArrayTypeP(datum); array = DatumGetArrayTypeP(datum);
TransformGUCArray(array, &fcache->configNames, TransformGUCArray(array, &fcache->configNames,
@ -686,7 +687,7 @@ fmgr_security_definer(PG_FUNCTION_ARGS)
/* GetUserIdAndSecContext is cheap enough that no harm in a wasted call */ /* GetUserIdAndSecContext is cheap enough that no harm in a wasted call */
GetUserIdAndSecContext(&save_userid, &save_sec_context); GetUserIdAndSecContext(&save_userid, &save_sec_context);
if (fcache->configNames != NIL) /* Need a new GUC nesting level */ if (fcache->configNames != NIL) /* Need a new GUC nesting level */
save_nestlevel = NewGUCNestLevel(); save_nestlevel = NewGUCNestLevel();
else else
save_nestlevel = 0; /* keep compiler quiet */ save_nestlevel = 0; /* keep compiler quiet */
@ -697,11 +698,11 @@ fmgr_security_definer(PG_FUNCTION_ARGS)
forboth(lc1, fcache->configNames, lc2, fcache->configValues) forboth(lc1, fcache->configNames, lc2, fcache->configValues)
{ {
GucContext context = superuser() ? PGC_SUSET : PGC_USERSET; GucContext context = superuser() ? PGC_SUSET : PGC_USERSET;
GucSource source = PGC_S_SESSION; GucSource source = PGC_S_SESSION;
GucAction action = GUC_ACTION_SAVE; GucAction action = GUC_ACTION_SAVE;
char *name = lfirst(lc1); char *name = lfirst(lc1);
char *value = lfirst(lc2); char *value = lfirst(lc2);
(void) set_config_option(name, value, (void) set_config_option(name, value,
context, source, context, source,

View File

@ -6280,16 +6280,16 @@ void
ProcessGUCArray(ArrayType *array, ProcessGUCArray(ArrayType *array,
GucContext context, GucSource source, GucAction action) GucContext context, GucSource source, GucAction action)
{ {
List *gucNames; List *gucNames;
List *gucValues; List *gucValues;
ListCell *lc1; ListCell *lc1;
ListCell *lc2; ListCell *lc2;
TransformGUCArray(array, &gucNames, &gucValues); TransformGUCArray(array, &gucNames, &gucValues);
forboth(lc1, gucNames, lc2, gucValues) forboth(lc1, gucNames, lc2, gucValues)
{ {
char *name = lfirst(lc1); char *name = lfirst(lc1);
char *value = lfirst(lc2); char *value = lfirst(lc2);
(void) set_config_option(name, value, (void) set_config_option(name, value,
context, source, context, source,

View File

@ -2246,7 +2246,7 @@ evalStandardFunc(CState *st,
* This value is double braced to workaround GCC bug 53119, which seems to * This value is double braced to workaround GCC bug 53119, which seems to
* exist at least on gcc (Debian 4.7.2-5) 4.7.2, 32-bit. * exist at least on gcc (Debian 4.7.2-5) 4.7.2, 32-bit.
*/ */
PgBenchValue vargs[MAX_FARGS] = { { 0 } }; PgBenchValue vargs[MAX_FARGS] = {{0}};
for (nargs = 0; nargs < MAX_FARGS && l != NULL; nargs++, l = l->next) for (nargs = 0; nargs < MAX_FARGS && l != NULL; nargs++, l = l->next)
{ {