@@ -669,7 +669,8 @@ fmgr_security_definer(PG_FUNCTION_ARGS)
669669 & isnull );
670670 if (!isnull )
671671 {
672- ArrayType * array ;
672+ ArrayType * array ;
673+
673674 oldcxt = MemoryContextSwitchTo (fcinfo -> flinfo -> fn_mcxt );
674675 array = DatumGetArrayTypeP (datum );
675676 TransformGUCArray (array , & fcache -> configNames ,
@@ -686,7 +687,7 @@ fmgr_security_definer(PG_FUNCTION_ARGS)
686687
687688 /* GetUserIdAndSecContext is cheap enough that no harm in a wasted call */
688689 GetUserIdAndSecContext (& save_userid , & save_sec_context );
689- if (fcache -> configNames != NIL ) /* Need a new GUC nesting level */
690+ if (fcache -> configNames != NIL ) /* Need a new GUC nesting level */
690691 save_nestlevel = NewGUCNestLevel ();
691692 else
692693 save_nestlevel = 0 ; /* keep compiler quiet */
@@ -697,11 +698,11 @@ fmgr_security_definer(PG_FUNCTION_ARGS)
697698
698699 forboth (lc1 , fcache -> configNames , lc2 , fcache -> configValues )
699700 {
700- GucContext context = superuser () ? PGC_SUSET : PGC_USERSET ;
701- GucSource source = PGC_S_SESSION ;
702- GucAction action = GUC_ACTION_SAVE ;
703- char * name = lfirst (lc1 );
704- char * value = lfirst (lc2 );
701+ GucContext context = superuser () ? PGC_SUSET : PGC_USERSET ;
702+ GucSource source = PGC_S_SESSION ;
703+ GucAction action = GUC_ACTION_SAVE ;
704+ char * name = lfirst (lc1 );
705+ char * value = lfirst (lc2 );
705706
706707 (void ) set_config_option (name , value ,
707708 context , source ,
0 commit comments