summaryrefslogtreecommitdiff
path: root/contrib/dblink
diff options
context:
space:
mode:
authorRobert Haas2014-11-24 21:13:11 +0000
committerRobert Haas2014-11-24 21:37:56 +0000
commitf5d9698a8400972bd604069a3f15ca33e535ea6e (patch)
tree3891f094c749f972b33649ec9f59b09312dd4cb5 /contrib/dblink
parent49b86fb1c97878ea2e3a8118df072c95f60077ac (diff)
Add infrastructure to save and restore GUC values.
This is further infrastructure for parallelism. Amit Khandekar, Noah Misch, Robert Haas
Diffstat (limited to 'contrib/dblink')
-rw-r--r--contrib/dblink/dblink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c
index d77b3ee34b..18ae318cd3 100644
--- a/contrib/dblink/dblink.c
+++ b/contrib/dblink/dblink.c
@@ -2980,7 +2980,7 @@ applyRemoteGucs(PGconn *conn)
/* Apply the option (this will throw error on failure) */
(void) set_config_option(gucName, remoteVal,
PGC_USERSET, PGC_S_SESSION,
- GUC_ACTION_SAVE, true, 0);
+ GUC_ACTION_SAVE, true, 0, false);
}
return nestlevel;