PostgreSQL Source Code  git master
pg_restore.c
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * pg_restore.c
4  * pg_restore is an utility extracting postgres database definitions
5  * from a backup archive created by pg_dump using the archiver
6  * interface.
7  *
8  * pg_restore will read the backup archive and
9  * dump out a script that reproduces
10  * the schema of the database in terms of
11  * user-defined types
12  * user-defined functions
13  * tables
14  * indexes
15  * aggregates
16  * operators
17  * ACL - grant/revoke
18  *
19  * the output script is SQL that is understood by PostgreSQL
20  *
21  * Basic process in a restore operation is:
22  *
23  * Open the Archive and read the TOC.
24  * Set flags in TOC entries, and *maybe* reorder them.
25  * Generate script to stdout
26  * Exit
27  *
28  * Copyright (c) 2000, Philip Warner
29  * Rights are granted to use this software in any way so long
30  * as this notice is not removed.
31  *
32  * The author is not responsible for loss or damages that may
33  * result from its use.
34  *
35  *
36  * IDENTIFICATION
37  * src/bin/pg_dump/pg_restore.c
38  *
39  *-------------------------------------------------------------------------
40  */
41 #include "postgres_fe.h"
42 
43 #include <ctype.h>
44 #ifdef HAVE_TERMIOS_H
45 #include <termios.h>
46 #endif
47 
48 #include "dumputils.h"
49 #include "fe_utils/option_utils.h"
50 #include "filter.h"
51 #include "getopt_long.h"
52 #include "parallel.h"
53 #include "pg_backup_utils.h"
54 
55 static void usage(const char *progname);
56 static void read_restore_filters(const char *filename, RestoreOptions *dopt);
57 
58 int
59 main(int argc, char **argv)
60 {
62  int c;
63  int exit_code;
64  int numWorkers = 1;
65  Archive *AH;
66  char *inputFileSpec;
67  static int disable_triggers = 0;
68  static int enable_row_security = 0;
69  static int if_exists = 0;
70  static int no_data_for_failed_tables = 0;
71  static int outputNoTableAm = 0;
72  static int outputNoTablespaces = 0;
73  static int use_setsessauth = 0;
74  static int no_comments = 0;
75  static int no_publications = 0;
76  static int no_security_labels = 0;
77  static int no_subscriptions = 0;
78  static int strict_names = 0;
79 
80  struct option cmdopts[] = {
81  {"clean", 0, NULL, 'c'},
82  {"create", 0, NULL, 'C'},
83  {"data-only", 0, NULL, 'a'},
84  {"dbname", 1, NULL, 'd'},
85  {"exit-on-error", 0, NULL, 'e'},
86  {"exclude-schema", 1, NULL, 'N'},
87  {"file", 1, NULL, 'f'},
88  {"format", 1, NULL, 'F'},
89  {"function", 1, NULL, 'P'},
90  {"host", 1, NULL, 'h'},
91  {"index", 1, NULL, 'I'},
92  {"jobs", 1, NULL, 'j'},
93  {"list", 0, NULL, 'l'},
94  {"no-privileges", 0, NULL, 'x'},
95  {"no-acl", 0, NULL, 'x'},
96  {"no-owner", 0, NULL, 'O'},
97  {"no-reconnect", 0, NULL, 'R'},
98  {"port", 1, NULL, 'p'},
99  {"no-password", 0, NULL, 'w'},
100  {"password", 0, NULL, 'W'},
101  {"schema", 1, NULL, 'n'},
102  {"schema-only", 0, NULL, 's'},
103  {"superuser", 1, NULL, 'S'},
104  {"table", 1, NULL, 't'},
105  {"trigger", 1, NULL, 'T'},
106  {"use-list", 1, NULL, 'L'},
107  {"username", 1, NULL, 'U'},
108  {"verbose", 0, NULL, 'v'},
109  {"single-transaction", 0, NULL, '1'},
110 
111  /*
112  * the following options don't have an equivalent short option letter
113  */
114  {"disable-triggers", no_argument, &disable_triggers, 1},
115  {"enable-row-security", no_argument, &enable_row_security, 1},
116  {"if-exists", no_argument, &if_exists, 1},
117  {"no-data-for-failed-tables", no_argument, &no_data_for_failed_tables, 1},
118  {"no-table-access-method", no_argument, &outputNoTableAm, 1},
119  {"no-tablespaces", no_argument, &outputNoTablespaces, 1},
120  {"role", required_argument, NULL, 2},
121  {"section", required_argument, NULL, 3},
122  {"strict-names", no_argument, &strict_names, 1},
123  {"transaction-size", required_argument, NULL, 5},
124  {"use-set-session-authorization", no_argument, &use_setsessauth, 1},
125  {"no-comments", no_argument, &no_comments, 1},
126  {"no-publications", no_argument, &no_publications, 1},
127  {"no-security-labels", no_argument, &no_security_labels, 1},
128  {"no-subscriptions", no_argument, &no_subscriptions, 1},
129  {"filter", required_argument, NULL, 4},
130 
131  {NULL, 0, NULL, 0}
132  };
133 
134  pg_logging_init(argv[0]);
136  set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_dump"));
137 
139 
141 
142  progname = get_progname(argv[0]);
143 
144  if (argc > 1)
145  {
146  if (strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-?") == 0)
147  {
148  usage(progname);
149  exit_nicely(0);
150  }
151  if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
152  {
153  puts("pg_restore (PostgreSQL) " PG_VERSION);
154  exit_nicely(0);
155  }
156  }
157 
158  while ((c = getopt_long(argc, argv, "acCd:ef:F:h:I:j:lL:n:N:Op:P:RsS:t:T:U:vwWx1",
159  cmdopts, NULL)) != -1)
160  {
161  switch (c)
162  {
163  case 'a': /* Dump data only */
164  opts->dataOnly = 1;
165  break;
166  case 'c': /* clean (i.e., drop) schema prior to create */
167  opts->dropSchema = 1;
168  break;
169  case 'C':
170  opts->createDB = 1;
171  break;
172  case 'd':
173  opts->cparams.dbname = pg_strdup(optarg);
174  break;
175  case 'e':
176  opts->exit_on_error = true;
177  break;
178  case 'f': /* output file name */
179  opts->filename = pg_strdup(optarg);
180  break;
181  case 'F':
182  if (strlen(optarg) != 0)
183  opts->formatName = pg_strdup(optarg);
184  break;
185  case 'h':
186  if (strlen(optarg) != 0)
187  opts->cparams.pghost = pg_strdup(optarg);
188  break;
189 
190  case 'j': /* number of restore jobs */
191  if (!option_parse_int(optarg, "-j/--jobs", 1,
192  PG_MAX_JOBS,
193  &numWorkers))
194  exit(1);
195  break;
196 
197  case 'l': /* Dump the TOC summary */
198  opts->tocSummary = 1;
199  break;
200 
201  case 'L': /* input TOC summary file name */
202  opts->tocFile = pg_strdup(optarg);
203  break;
204 
205  case 'n': /* Dump data for this schema only */
206  simple_string_list_append(&opts->schemaNames, optarg);
207  break;
208 
209  case 'N': /* Do not dump data for this schema */
210  simple_string_list_append(&opts->schemaExcludeNames, optarg);
211  break;
212 
213  case 'O':
214  opts->noOwner = 1;
215  break;
216 
217  case 'p':
218  if (strlen(optarg) != 0)
219  opts->cparams.pgport = pg_strdup(optarg);
220  break;
221  case 'R':
222  /* no-op, still accepted for backwards compatibility */
223  break;
224  case 'P': /* Function */
225  opts->selTypes = 1;
226  opts->selFunction = 1;
227  simple_string_list_append(&opts->functionNames, optarg);
228  break;
229  case 'I': /* Index */
230  opts->selTypes = 1;
231  opts->selIndex = 1;
232  simple_string_list_append(&opts->indexNames, optarg);
233  break;
234  case 'T': /* Trigger */
235  opts->selTypes = 1;
236  opts->selTrigger = 1;
237  simple_string_list_append(&opts->triggerNames, optarg);
238  break;
239  case 's': /* dump schema only */
240  opts->schemaOnly = 1;
241  break;
242  case 'S': /* Superuser username */
243  if (strlen(optarg) != 0)
244  opts->superuser = pg_strdup(optarg);
245  break;
246  case 't': /* Dump specified table(s) only */
247  opts->selTypes = 1;
248  opts->selTable = 1;
249  simple_string_list_append(&opts->tableNames, optarg);
250  break;
251 
252  case 'U':
253  opts->cparams.username = pg_strdup(optarg);
254  break;
255 
256  case 'v': /* verbose */
257  opts->verbose = 1;
259  break;
260 
261  case 'w':
262  opts->cparams.promptPassword = TRI_NO;
263  break;
264 
265  case 'W':
266  opts->cparams.promptPassword = TRI_YES;
267  break;
268 
269  case 'x': /* skip ACL dump */
270  opts->aclsSkip = 1;
271  break;
272 
273  case '1': /* Restore data in a single transaction */
274  opts->single_txn = true;
275  opts->exit_on_error = true;
276  break;
277 
278  case 0:
279 
280  /*
281  * This covers the long options without a short equivalent.
282  */
283  break;
284 
285  case 2: /* SET ROLE */
286  opts->use_role = pg_strdup(optarg);
287  break;
288 
289  case 3: /* section */
290  set_dump_section(optarg, &(opts->dumpSections));
291  break;
292 
293  case 4: /* filter */
295  break;
296 
297  case 5: /* transaction-size */
298  if (!option_parse_int(optarg, "--transaction-size",
299  1, INT_MAX,
300  &opts->txn_size))
301  exit(1);
302  opts->exit_on_error = true;
303  break;
304 
305  default:
306  /* getopt_long already emitted a complaint */
307  pg_log_error_hint("Try \"%s --help\" for more information.", progname);
308  exit_nicely(1);
309  }
310  }
311 
312  /* Get file name from command line */
313  if (optind < argc)
314  inputFileSpec = argv[optind++];
315  else
316  inputFileSpec = NULL;
317 
318  /* Complain if any arguments remain */
319  if (optind < argc)
320  {
321  pg_log_error("too many command-line arguments (first is \"%s\")",
322  argv[optind]);
323  pg_log_error_hint("Try \"%s --help\" for more information.", progname);
324  exit_nicely(1);
325  }
326 
327  /* Complain if neither -f nor -d was specified (except if dumping TOC) */
328  if (!opts->cparams.dbname && !opts->filename && !opts->tocSummary)
329  pg_fatal("one of -d/--dbname and -f/--file must be specified");
330 
331  /* Should get at most one of -d and -f, else user is confused */
332  if (opts->cparams.dbname)
333  {
334  if (opts->filename)
335  {
336  pg_log_error("options -d/--dbname and -f/--file cannot be used together");
337  pg_log_error_hint("Try \"%s --help\" for more information.", progname);
338  exit_nicely(1);
339  }
340  opts->useDB = 1;
341  }
342 
343  if (opts->dataOnly && opts->schemaOnly)
344  pg_fatal("options -s/--schema-only and -a/--data-only cannot be used together");
345 
346  if (opts->dataOnly && opts->dropSchema)
347  pg_fatal("options -c/--clean and -a/--data-only cannot be used together");
348 
349  if (opts->single_txn && opts->txn_size > 0)
350  pg_fatal("options -1/--single-transaction and --transaction-size cannot be used together");
351 
352  /*
353  * -C is not compatible with -1, because we can't create a database inside
354  * a transaction block.
355  */
356  if (opts->createDB && opts->single_txn)
357  pg_fatal("options -C/--create and -1/--single-transaction cannot be used together");
358 
359  /* Can't do single-txn mode with multiple connections */
360  if (opts->single_txn && numWorkers > 1)
361  pg_fatal("cannot specify both --single-transaction and multiple jobs");
362 
363  opts->disable_triggers = disable_triggers;
364  opts->enable_row_security = enable_row_security;
365  opts->noDataForFailedTables = no_data_for_failed_tables;
366  opts->noTableAm = outputNoTableAm;
367  opts->noTablespace = outputNoTablespaces;
368  opts->use_setsessauth = use_setsessauth;
369  opts->no_comments = no_comments;
370  opts->no_publications = no_publications;
371  opts->no_security_labels = no_security_labels;
372  opts->no_subscriptions = no_subscriptions;
373 
374  if (if_exists && !opts->dropSchema)
375  pg_fatal("option --if-exists requires option -c/--clean");
376  opts->if_exists = if_exists;
378 
379  if (opts->formatName)
380  {
381  switch (opts->formatName[0])
382  {
383  case 'c':
384  case 'C':
385  opts->format = archCustom;
386  break;
387 
388  case 'd':
389  case 'D':
390  opts->format = archDirectory;
391  break;
392 
393  case 't':
394  case 'T':
395  opts->format = archTar;
396  break;
397 
398  default:
399  pg_fatal("unrecognized archive format \"%s\"; please specify \"c\", \"d\", or \"t\"",
400  opts->formatName);
401  }
402  }
403 
404  AH = OpenArchive(inputFileSpec, opts->format);
405 
406  SetArchiveOptions(AH, NULL, opts);
407 
408  /*
409  * We don't have a connection yet but that doesn't matter. The connection
410  * is initialized to NULL and if we terminate through exit_nicely() while
411  * it's still NULL, the cleanup function will just be a no-op.
412  */
414 
415  /* Let the archiver know how noisy to be */
416  AH->verbose = opts->verbose;
417 
418  /*
419  * Whether to keep submitting sql commands as "pg_restore ... | psql ... "
420  */
421  AH->exit_on_error = opts->exit_on_error;
422 
423  if (opts->tocFile)
424  SortTocFromFile(AH);
425 
426  AH->numWorkers = numWorkers;
427 
428  if (opts->tocSummary)
429  PrintTOCSummary(AH);
430  else
431  {
433  RestoreArchive(AH);
434  }
435 
436  /* done, print a summary of ignored errors */
437  if (AH->n_errors)
438  pg_log_warning("errors ignored on restore: %d", AH->n_errors);
439 
440  /* AH may be freed in CloseArchive? */
441  exit_code = AH->n_errors ? 1 : 0;
442 
443  CloseArchive(AH);
444 
445  return exit_code;
446 }
447 
448 static void
449 usage(const char *progname)
450 {
451  printf(_("%s restores a PostgreSQL database from an archive created by pg_dump.\n\n"), progname);
452  printf(_("Usage:\n"));
453  printf(_(" %s [OPTION]... [FILE]\n"), progname);
454 
455  printf(_("\nGeneral options:\n"));
456  printf(_(" -d, --dbname=NAME connect to database name\n"));
457  printf(_(" -f, --file=FILENAME output file name (- for stdout)\n"));
458  printf(_(" -F, --format=c|d|t backup file format (should be automatic)\n"));
459  printf(_(" -l, --list print summarized TOC of the archive\n"));
460  printf(_(" -v, --verbose verbose mode\n"));
461  printf(_(" -V, --version output version information, then exit\n"));
462  printf(_(" -?, --help show this help, then exit\n"));
463 
464  printf(_("\nOptions controlling the restore:\n"));
465  printf(_(" -a, --data-only restore only the data, no schema\n"));
466  printf(_(" -c, --clean clean (drop) database objects before recreating\n"));
467  printf(_(" -C, --create create the target database\n"));
468  printf(_(" -e, --exit-on-error exit on error, default is to continue\n"));
469  printf(_(" -I, --index=NAME restore named index\n"));
470  printf(_(" -j, --jobs=NUM use this many parallel jobs to restore\n"));
471  printf(_(" -L, --use-list=FILENAME use table of contents from this file for\n"
472  " selecting/ordering output\n"));
473  printf(_(" -n, --schema=NAME restore only objects in this schema\n"));
474  printf(_(" -N, --exclude-schema=NAME do not restore objects in this schema\n"));
475  printf(_(" -O, --no-owner skip restoration of object ownership\n"));
476  printf(_(" -P, --function=NAME(args) restore named function\n"));
477  printf(_(" -s, --schema-only restore only the schema, no data\n"));
478  printf(_(" -S, --superuser=NAME superuser user name to use for disabling triggers\n"));
479  printf(_(" -t, --table=NAME restore named relation (table, view, etc.)\n"));
480  printf(_(" -T, --trigger=NAME restore named trigger\n"));
481  printf(_(" -x, --no-privileges skip restoration of access privileges (grant/revoke)\n"));
482  printf(_(" -1, --single-transaction restore as a single transaction\n"));
483  printf(_(" --disable-triggers disable triggers during data-only restore\n"));
484  printf(_(" --enable-row-security enable row security\n"));
485  printf(_(" --filter=FILENAME restore or skip objects based on expressions\n"
486  " in FILENAME\n"));
487  printf(_(" --if-exists use IF EXISTS when dropping objects\n"));
488  printf(_(" --no-comments do not restore comments\n"));
489  printf(_(" --no-data-for-failed-tables do not restore data of tables that could not be\n"
490  " created\n"));
491  printf(_(" --no-publications do not restore publications\n"));
492  printf(_(" --no-security-labels do not restore security labels\n"));
493  printf(_(" --no-subscriptions do not restore subscriptions\n"));
494  printf(_(" --no-table-access-method do not restore table access methods\n"));
495  printf(_(" --no-tablespaces do not restore tablespace assignments\n"));
496  printf(_(" --section=SECTION restore named section (pre-data, data, or post-data)\n"));
497  printf(_(" --strict-names require table and/or schema include patterns to\n"
498  " match at least one entity each\n"));
499  printf(_(" --transaction-size=N commit after every N objects\n"));
500  printf(_(" --use-set-session-authorization\n"
501  " use SET SESSION AUTHORIZATION commands instead of\n"
502  " ALTER OWNER commands to set ownership\n"));
503 
504  printf(_("\nConnection options:\n"));
505  printf(_(" -h, --host=HOSTNAME database server host or socket directory\n"));
506  printf(_(" -p, --port=PORT database server port number\n"));
507  printf(_(" -U, --username=NAME connect as specified database user\n"));
508  printf(_(" -w, --no-password never prompt for password\n"));
509  printf(_(" -W, --password force password prompt (should happen automatically)\n"));
510  printf(_(" --role=ROLENAME do SET ROLE before restore\n"));
511 
512  printf(_("\n"
513  "The options -I, -n, -N, -P, -t, -T, and --section can be combined and specified\n"
514  "multiple times to select multiple objects.\n"));
515  printf(_("\nIf no input file name is supplied, then standard input is used.\n\n"));
516  printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
517  printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
518 }
519 
520 /*
521  * read_restore_filters - retrieve object identifier patterns from file
522  *
523  * Parse the specified filter file for include and exclude patterns, and add
524  * them to the relevant lists. If the filename is "-" then filters will be
525  * read from STDIN rather than a file.
526  */
527 static void
529 {
530  FilterStateData fstate;
531  char *objname;
532  FilterCommandType comtype;
533  FilterObjectType objtype;
534 
535  filter_init(&fstate, filename, exit_nicely);
536 
537  while (filter_read_item(&fstate, &objname, &comtype, &objtype))
538  {
539  if (comtype == FILTER_COMMAND_TYPE_INCLUDE)
540  {
541  switch (objtype)
542  {
544  break;
551  pg_log_filter_error(&fstate, _("%s filter for \"%s\" is not allowed"),
552  "include",
553  filter_object_type_name(objtype));
554  exit_nicely(1);
555 
557  opts->selTypes = 1;
558  opts->selFunction = 1;
559  simple_string_list_append(&opts->functionNames, objname);
560  break;
562  opts->selTypes = 1;
563  opts->selIndex = 1;
564  simple_string_list_append(&opts->indexNames, objname);
565  break;
567  simple_string_list_append(&opts->schemaNames, objname);
568  break;
570  opts->selTypes = 1;
571  opts->selTable = 1;
572  simple_string_list_append(&opts->tableNames, objname);
573  break;
575  opts->selTypes = 1;
576  opts->selTrigger = 1;
577  simple_string_list_append(&opts->triggerNames, objname);
578  break;
579  }
580  }
581  else if (comtype == FILTER_COMMAND_TYPE_EXCLUDE)
582  {
583  switch (objtype)
584  {
586  break;
597  pg_log_filter_error(&fstate, _("%s filter for \"%s\" is not allowed"),
598  "exclude",
599  filter_object_type_name(objtype));
600  exit_nicely(1);
601 
603  simple_string_list_append(&opts->schemaExcludeNames, objname);
604  break;
605  }
606  }
607  else
608  {
609  Assert(comtype == FILTER_COMMAND_TYPE_NONE);
610  Assert(objtype == FILTER_OBJECT_TYPE_NONE);
611  }
612 
613  if (objname)
614  free(objname);
615  }
616 
617  filter_free(&fstate);
618 }
void on_exit_close_archive(Archive *AHX)
Definition: parallel.c:328
void init_parallel_dump_utils(void)
Definition: parallel.c:236
#define PG_MAX_JOBS
Definition: parallel.h:48
#define Assert(condition)
Definition: c.h:858
#define PG_TEXTDOMAIN(domain)
Definition: c.h:1214
void set_pglocale_pgservice(const char *argv0, const char *app)
Definition: exec.c:448
#define _(x)
Definition: elog.c:90
char * pg_strdup(const char *in)
Definition: fe_memutils.c:85
void filter_init(FilterStateData *fstate, const char *filename, exit_function f_exit)
Definition: filter.c:37
void filter_free(FilterStateData *fstate)
Definition: filter.c:61
bool filter_read_item(FilterStateData *fstate, char **objname, FilterCommandType *comtype, FilterObjectType *objtype)
Definition: filter.c:388
void pg_log_filter_error(FilterStateData *fstate, const char *fmt,...)
Definition: filter.c:155
const char * filter_object_type_name(FilterObjectType fot)
Definition: filter.c:83
FilterObjectType
Definition: filter.h:48
@ FILTER_OBJECT_TYPE_TABLE_DATA_AND_CHILDREN
Definition: filter.h:51
@ FILTER_OBJECT_TYPE_SCHEMA
Definition: filter.h:57
@ FILTER_OBJECT_TYPE_INDEX
Definition: filter.h:56
@ FILTER_OBJECT_TYPE_TRIGGER
Definition: filter.h:60
@ FILTER_OBJECT_TYPE_FOREIGN_DATA
Definition: filter.h:54
@ FILTER_OBJECT_TYPE_DATABASE
Definition: filter.h:52
@ FILTER_OBJECT_TYPE_FUNCTION
Definition: filter.h:55
@ FILTER_OBJECT_TYPE_TABLE_DATA
Definition: filter.h:50
@ FILTER_OBJECT_TYPE_NONE
Definition: filter.h:49
@ FILTER_OBJECT_TYPE_TABLE_AND_CHILDREN
Definition: filter.h:59
@ FILTER_OBJECT_TYPE_EXTENSION
Definition: filter.h:53
@ FILTER_OBJECT_TYPE_TABLE
Definition: filter.h:58
FilterCommandType
Definition: filter.h:38
@ FILTER_COMMAND_TYPE_NONE
Definition: filter.h:39
@ FILTER_COMMAND_TYPE_EXCLUDE
Definition: filter.h:41
@ FILTER_COMMAND_TYPE_INCLUDE
Definition: filter.h:40
int getopt_long(int argc, char *const argv[], const char *optstring, const struct option *longopts, int *longindex)
Definition: getopt_long.c:60
#define no_argument
Definition: getopt_long.h:24
#define required_argument
Definition: getopt_long.h:25
#define free(a)
Definition: header.h:65
exit(1)
void pg_logging_increase_verbosity(void)
Definition: logging.c:182
void pg_logging_init(const char *argv0)
Definition: logging.c:83
void pg_logging_set_level(enum pg_log_level new_level)
Definition: logging.c:173
#define pg_log_error(...)
Definition: logging.h:106
#define pg_log_error_hint(...)
Definition: logging.h:112
@ PG_LOG_WARNING
Definition: logging.h:38
const char * progname
Definition: main.c:44
bool option_parse_int(const char *optarg, const char *optname, int min_range, int max_range, int *result)
Definition: option_utils.c:50
static AmcheckOptions opts
Definition: pg_amcheck.c:111
void ProcessArchiveRestoreOptions(Archive *AHX)
RestoreOptions * NewRestoreOptions(void)
void CloseArchive(Archive *AHX)
void SortTocFromFile(Archive *AHX)
void PrintTOCSummary(Archive *AHX)
void SetArchiveOptions(Archive *AH, DumpOptions *dopt, RestoreOptions *ropt)
void RestoreArchive(Archive *AHX)
@ archTar
Definition: pg_backup.h:43
@ archCustom
Definition: pg_backup.h:42
@ archDirectory
Definition: pg_backup.h:45
Archive * OpenArchive(const char *FileSpec, const ArchiveFormat fmt)
void set_dump_section(const char *arg, int *dumpSections)
#define pg_fatal(...)
static int strict_names
Definition: pg_dump.c:108
static int if_exists
Definition: pg_dumpall.c:98
static int disable_triggers
Definition: pg_dumpall.c:97
#define exit_nicely(code)
Definition: pg_dumpall.c:124
static int no_comments
Definition: pg_dumpall.c:103
static int no_publications
Definition: pg_dumpall.c:104
static int no_security_labels
Definition: pg_dumpall.c:105
static int use_setsessauth
Definition: pg_dumpall.c:102
static int no_subscriptions
Definition: pg_dumpall.c:106
static char * filename
Definition: pg_dumpall.c:119
PGDLLIMPORT int optind
Definition: getopt.c:50
PGDLLIMPORT char * optarg
Definition: getopt.c:52
static void usage(const char *progname)
Definition: pg_restore.c:449
int main(int argc, char **argv)
Definition: pg_restore.c:59
static void read_restore_filters(const char *filename, RestoreOptions *dopt)
Definition: pg_restore.c:528
#define pg_log_warning(...)
Definition: pgfnames.c:24
const char * get_progname(const char *argv0)
Definition: path.c:574
#define printf(...)
Definition: port.h:244
char * c
void simple_string_list_append(SimpleStringList *list, const char *val)
Definition: simple_list.c:63
bool strict_names
Definition: pg_amcheck.c:60
bool exit_on_error
Definition: pg_backup.h:237
int n_errors
Definition: pg_backup.h:238
int numWorkers
Definition: pg_backup.h:225
int verbose
Definition: pg_backup.h:217
@ TRI_YES
Definition: vacuumlo.c:38
@ TRI_NO
Definition: vacuumlo.c:37