diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-11-24 16:13:11 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-11-24 16:37:56 -0500 |
commit | f5d9698a8400972bd604069a3f15ca33e535ea6e (patch) | |
tree | 3891f094c749f972b33649ec9f59b09312dd4cb5 /contrib/postgres_fdw/postgres_fdw.c | |
parent | 49b86fb1c97878ea2e3a8118df072c95f60077ac (diff) | |
download | postgresql-f5d9698a8400972bd604069a3f15ca33e535ea6e.tar.gz postgresql-f5d9698a8400972bd604069a3f15ca33e535ea6e.zip |
Add infrastructure to save and restore GUC values.
This is further infrastructure for parallelism.
Amit Khandekar, Noah Misch, Robert Haas
Diffstat (limited to 'contrib/postgres_fdw/postgres_fdw.c')
-rw-r--r-- | contrib/postgres_fdw/postgres_fdw.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index 905a821ad07..76bda739357 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -2104,15 +2104,15 @@ set_transmission_modes(void) if (DateStyle != USE_ISO_DATES) (void) set_config_option("datestyle", "ISO", PGC_USERSET, PGC_S_SESSION, - GUC_ACTION_SAVE, true, 0); + GUC_ACTION_SAVE, true, 0, false); if (IntervalStyle != INTSTYLE_POSTGRES) (void) set_config_option("intervalstyle", "postgres", PGC_USERSET, PGC_S_SESSION, - GUC_ACTION_SAVE, true, 0); + GUC_ACTION_SAVE, true, 0, false); if (extra_float_digits < 3) (void) set_config_option("extra_float_digits", "3", PGC_USERSET, PGC_S_SESSION, - GUC_ACTION_SAVE, true, 0); + GUC_ACTION_SAVE, true, 0, false); return nestlevel; } |