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/dblink/dblink.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/dblink/dblink.c')
-rw-r--r-- | contrib/dblink/dblink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c index d77b3ee34ba..18ae318cd3b 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; |