We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49b86fb commit f5d9698Copy full SHA for f5d9698
contrib/dblink/dblink.c
@@ -2980,7 +2980,7 @@ applyRemoteGucs(PGconn *conn)
2980
/* Apply the option (this will throw error on failure) */
2981
(void) set_config_option(gucName, remoteVal,
2982
PGC_USERSET, PGC_S_SESSION,
2983
- GUC_ACTION_SAVE, true, 0);
+ GUC_ACTION_SAVE, true, 0, false);
2984
}
2985
2986
return nestlevel;
contrib/postgres_fdw/postgres_fdw.c
@@ -2104,15 +2104,15 @@ set_transmission_modes(void)
2104
if (DateStyle != USE_ISO_DATES)
2105
(void) set_config_option("datestyle", "ISO",
2106
2107
2108
if (IntervalStyle != INTSTYLE_POSTGRES)
2109
(void) set_config_option("intervalstyle", "postgres",
2110
2111
2112
if (extra_float_digits < 3)
2113
(void) set_config_option("extra_float_digits", "3",
2114
2115
2116
2117
2118
src/backend/commands/extension.c
@@ -814,11 +814,11 @@ execute_extension_script(Oid extensionOid, ExtensionControlFile *control,
814
if (client_min_messages < WARNING)
815
(void) set_config_option("client_min_messages", "warning",
816
817
818
if (log_min_messages < WARNING)
819
(void) set_config_option("log_min_messages", "warning",
820
PGC_SUSET, PGC_S_SESSION,
821
822
823
/*
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
844
(void) set_config_option("search_path", pathbuf.data,
845
846
847
848
849
* Set creating_extension and related variables so that
src/backend/utils/adt/ri_triggers.c
@@ -2422,7 +2422,7 @@ RI_Initial_Check(Trigger *trigger, Relation fk_rel, Relation pk_rel)
2422
snprintf(workmembuf, sizeof(workmembuf), "%d", maintenance_work_mem);
2423
(void) set_config_option("work_mem", workmembuf,
2424
2425
2426
2427
if (SPI_connect() != SPI_OK_CONNECT)
2428
elog(ERROR, "SPI_connect failed");
src/backend/utils/misc/guc-file.l
@@ -318,7 +318,7 @@ ProcessConfigFile(GucContext context)
318
/* Now we can re-apply the wired-in default (i.e., the boot_val) */
319
if (set_config_option(gconf->name, NULL,
320
context, PGC_S_DEFAULT,
321
- GUC_ACTION_SET, true, 0) > 0)
+ GUC_ACTION_SET, true, 0, false) > 0)
322
{
323
/* Log the change if appropriate */
324
if (context == PGC_SIGHUP)
@@ -373,7 +373,7 @@ ProcessConfigFile(GucContext context)
373
374
scres = set_config_option(item->name, item->value,
375
context, PGC_S_FILE,
376
- GUC_ACTION_SET, true, 0);
+ GUC_ACTION_SET, true, 0, false);
377
if (scres > 0)
378
379
/* variable was updated, so log the change if appropriate */
0 commit comments