aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/pg_restore.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-01-13 17:48:33 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2016-01-13 17:48:33 -0500
commit5b5fea2a11741e651f7c25e981dd29b610a08426 (patch)
treea1c894f26ca809c8e9a6b10a9c974d641a0b2c40 /src/bin/pg_dump/pg_restore.c
parent26905e009babe6020fddcf3820e57e2f87c5539c (diff)
downloadpostgresql-5b5fea2a11741e651f7c25e981dd29b610a08426.tar.gz
postgresql-5b5fea2a11741e651f7c25e981dd29b610a08426.zip
Access pg_dump's options structs through Archive struct, not directly.
Rather than passing around DumpOptions and RestoreOptions as separate arguments, add fields to struct Archive to carry pointers to these objects, and access them through those fields when needed. There already was a RestoreOptions pointer in Archive, though for no obvious reason it was part of the "private" struct rather than out where pg_dump.c could see it. Doing this allows reversion of quite a lot of parameter-addition changes made in commit 0eea8047bf, which is a good thing IMO because this will reduce the code delta between 9.4 and 9.5, probably easing a few future back-patch efforts. Moreover, the previous commit only added a DumpOptions argument to functions that had to have it at the time, which means we could anticipate still more code churn (and more back-patch hazard) as the requirement spread further. I'd hit exactly that problem in my upcoming patch to fix extension membership marking, which is what motivated me to do this.
Diffstat (limited to 'src/bin/pg_dump/pg_restore.c')
-rw-r--r--src/bin/pg_dump/pg_restore.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c
index 5be06930e2d..c426189f927 100644
--- a/src/bin/pg_dump/pg_restore.c
+++ b/src/bin/pg_dump/pg_restore.c
@@ -377,6 +377,8 @@ main(int argc, char **argv)
AH = OpenArchive(inputFileSpec, opts->format);
+ SetArchiveOptions(AH, NULL, opts);
+
/*
* We don't have a connection yet but that doesn't matter. The connection
* is initialized to NULL and if we terminate through exit_nicely() while
@@ -393,7 +395,7 @@ main(int argc, char **argv)
AH->exit_on_error = opts->exit_on_error;
if (opts->tocFile)
- SortTocFromFile(AH, opts);
+ SortTocFromFile(AH);
/* See comments in pg_dump.c */
#ifdef WIN32
@@ -408,10 +410,10 @@ main(int argc, char **argv)
AH->numWorkers = numWorkers;
if (opts->tocSummary)
- PrintTOCSummary(AH, opts);
+ PrintTOCSummary(AH);
else
{
- SetArchiveRestoreOptions(AH, opts);
+ ProcessArchiveRestoreOptions(AH);
RestoreArchive(AH);
}
@@ -423,7 +425,7 @@ main(int argc, char **argv)
/* AH may be freed in CloseArchive? */
exit_code = AH->n_errors ? 1 : 0;
- CloseArchive(AH, NULL);
+ CloseArchive(AH);
return exit_code;
}