@@ -814,11 +814,11 @@ execute_extension_script(Oid extensionOid, ExtensionControlFile *control,
814
814
if (client_min_messages < WARNING )
815
815
(void ) set_config_option ("client_min_messages" , "warning" ,
816
816
PGC_USERSET , PGC_S_SESSION ,
817
- GUC_ACTION_SAVE , true, 0 );
817
+ GUC_ACTION_SAVE , true, 0 , false );
818
818
if (log_min_messages < WARNING )
819
819
(void ) set_config_option ("log_min_messages" , "warning" ,
820
820
PGC_SUSET , PGC_S_SESSION ,
821
- GUC_ACTION_SAVE , true, 0 );
821
+ GUC_ACTION_SAVE , true, 0 , false );
822
822
823
823
/*
824
824
* Set up the search path to contain the target schema, then the schemas
@@ -843,7 +843,7 @@ execute_extension_script(Oid extensionOid, ExtensionControlFile *control,
843
843
844
844
(void ) set_config_option ("search_path" , pathbuf .data ,
845
845
PGC_USERSET , PGC_S_SESSION ,
846
- GUC_ACTION_SAVE , true, 0 );
846
+ GUC_ACTION_SAVE , true, 0 , false );
847
847
848
848
/*
849
849
* Set creating_extension and related variables so that
0 commit comments