PostgreSQL Source Code  git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
pg_restore.c File Reference
#include "postgres_fe.h"
#include <ctype.h>
#include "fe_utils/option_utils.h"
#include "filter.h"
#include "getopt_long.h"
#include "parallel.h"
#include "pg_backup_utils.h"
Include dependency graph for pg_restore.c:

Go to the source code of this file.

Functions

static void usage (const char *progname)
 
static void read_restore_filters (const char *filename, RestoreOptions *opts)
 
int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 58 of file pg_restore.c.

59 {
61  int c;
62  int exit_code;
63  int numWorkers = 1;
64  Archive *AH;
65  char *inputFileSpec;
66  static int disable_triggers = 0;
67  static int enable_row_security = 0;
68  static int if_exists = 0;
69  static int no_data_for_failed_tables = 0;
70  static int outputNoTableAm = 0;
71  static int outputNoTablespaces = 0;
72  static int use_setsessauth = 0;
73  static int no_comments = 0;
74  static int no_publications = 0;
75  static int no_security_labels = 0;
76  static int no_subscriptions = 0;
77  static int strict_names = 0;
78 
79  struct option cmdopts[] = {
80  {"clean", 0, NULL, 'c'},
81  {"create", 0, NULL, 'C'},
82  {"data-only", 0, NULL, 'a'},
83  {"dbname", 1, NULL, 'd'},
84  {"exit-on-error", 0, NULL, 'e'},
85  {"exclude-schema", 1, NULL, 'N'},
86  {"file", 1, NULL, 'f'},
87  {"format", 1, NULL, 'F'},
88  {"function", 1, NULL, 'P'},
89  {"host", 1, NULL, 'h'},
90  {"index", 1, NULL, 'I'},
91  {"jobs", 1, NULL, 'j'},
92  {"list", 0, NULL, 'l'},
93  {"no-privileges", 0, NULL, 'x'},
94  {"no-acl", 0, NULL, 'x'},
95  {"no-owner", 0, NULL, 'O'},
96  {"no-reconnect", 0, NULL, 'R'},
97  {"port", 1, NULL, 'p'},
98  {"no-password", 0, NULL, 'w'},
99  {"password", 0, NULL, 'W'},
100  {"schema", 1, NULL, 'n'},
101  {"schema-only", 0, NULL, 's'},
102  {"superuser", 1, NULL, 'S'},
103  {"table", 1, NULL, 't'},
104  {"trigger", 1, NULL, 'T'},
105  {"use-list", 1, NULL, 'L'},
106  {"username", 1, NULL, 'U'},
107  {"verbose", 0, NULL, 'v'},
108  {"single-transaction", 0, NULL, '1'},
109 
110  /*
111  * the following options don't have an equivalent short option letter
112  */
113  {"disable-triggers", no_argument, &disable_triggers, 1},
114  {"enable-row-security", no_argument, &enable_row_security, 1},
115  {"if-exists", no_argument, &if_exists, 1},
116  {"no-data-for-failed-tables", no_argument, &no_data_for_failed_tables, 1},
117  {"no-table-access-method", no_argument, &outputNoTableAm, 1},
118  {"no-tablespaces", no_argument, &outputNoTablespaces, 1},
119  {"role", required_argument, NULL, 2},
120  {"section", required_argument, NULL, 3},
121  {"strict-names", no_argument, &strict_names, 1},
122  {"transaction-size", required_argument, NULL, 5},
123  {"use-set-session-authorization", no_argument, &use_setsessauth, 1},
124  {"no-comments", no_argument, &no_comments, 1},
125  {"no-publications", no_argument, &no_publications, 1},
126  {"no-security-labels", no_argument, &no_security_labels, 1},
127  {"no-subscriptions", no_argument, &no_subscriptions, 1},
128  {"filter", required_argument, NULL, 4},
129 
130  {NULL, 0, NULL, 0}
131  };
132 
133  pg_logging_init(argv[0]);
135  set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_dump"));
136 
138 
140 
141  progname = get_progname(argv[0]);
142 
143  if (argc > 1)
144  {
145  if (strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-?") == 0)
146  {
147  usage(progname);
148  exit_nicely(0);
149  }
150  if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
151  {
152  puts("pg_restore (PostgreSQL) " PG_VERSION);
153  exit_nicely(0);
154  }
155  }
156 
157  while ((c = getopt_long(argc, argv, "acCd:ef:F:h:I:j:lL:n:N:Op:P:RsS:t:T:U:vwWx1",
158  cmdopts, NULL)) != -1)
159  {
160  switch (c)
161  {
162  case 'a': /* Dump data only */
163  opts->dataOnly = 1;
164  break;
165  case 'c': /* clean (i.e., drop) schema prior to create */
166  opts->dropSchema = 1;
167  break;
168  case 'C':
169  opts->createDB = 1;
170  break;
171  case 'd':
172  opts->cparams.dbname = pg_strdup(optarg);
173  break;
174  case 'e':
175  opts->exit_on_error = true;
176  break;
177  case 'f': /* output file name */
178  opts->filename = pg_strdup(optarg);
179  break;
180  case 'F':
181  if (strlen(optarg) != 0)
182  opts->formatName = pg_strdup(optarg);
183  break;
184  case 'h':
185  if (strlen(optarg) != 0)
186  opts->cparams.pghost = pg_strdup(optarg);
187  break;
188 
189  case 'j': /* number of restore jobs */
190  if (!option_parse_int(optarg, "-j/--jobs", 1,
191  PG_MAX_JOBS,
192  &numWorkers))
193  exit(1);
194  break;
195 
196  case 'l': /* Dump the TOC summary */
197  opts->tocSummary = 1;
198  break;
199 
200  case 'L': /* input TOC summary file name */
201  opts->tocFile = pg_strdup(optarg);
202  break;
203 
204  case 'n': /* Dump data for this schema only */
205  simple_string_list_append(&opts->schemaNames, optarg);
206  break;
207 
208  case 'N': /* Do not dump data for this schema */
209  simple_string_list_append(&opts->schemaExcludeNames, optarg);
210  break;
211 
212  case 'O':
213  opts->noOwner = 1;
214  break;
215 
216  case 'p':
217  if (strlen(optarg) != 0)
218  opts->cparams.pgport = pg_strdup(optarg);
219  break;
220  case 'R':
221  /* no-op, still accepted for backwards compatibility */
222  break;
223  case 'P': /* Function */
224  opts->selTypes = 1;
225  opts->selFunction = 1;
226  simple_string_list_append(&opts->functionNames, optarg);
227  break;
228  case 'I': /* Index */
229  opts->selTypes = 1;
230  opts->selIndex = 1;
231  simple_string_list_append(&opts->indexNames, optarg);
232  break;
233  case 'T': /* Trigger */
234  opts->selTypes = 1;
235  opts->selTrigger = 1;
236  simple_string_list_append(&opts->triggerNames, optarg);
237  break;
238  case 's': /* dump schema only */
239  opts->schemaOnly = 1;
240  break;
241  case 'S': /* Superuser username */
242  if (strlen(optarg) != 0)
243  opts->superuser = pg_strdup(optarg);
244  break;
245  case 't': /* Dump specified table(s) only */
246  opts->selTypes = 1;
247  opts->selTable = 1;
248  simple_string_list_append(&opts->tableNames, optarg);
249  break;
250 
251  case 'U':
252  opts->cparams.username = pg_strdup(optarg);
253  break;
254 
255  case 'v': /* verbose */
256  opts->verbose = 1;
258  break;
259 
260  case 'w':
261  opts->cparams.promptPassword = TRI_NO;
262  break;
263 
264  case 'W':
265  opts->cparams.promptPassword = TRI_YES;
266  break;
267 
268  case 'x': /* skip ACL dump */
269  opts->aclsSkip = 1;
270  break;
271 
272  case '1': /* Restore data in a single transaction */
273  opts->single_txn = true;
274  opts->exit_on_error = true;
275  break;
276 
277  case 0:
278 
279  /*
280  * This covers the long options without a short equivalent.
281  */
282  break;
283 
284  case 2: /* SET ROLE */
285  opts->use_role = pg_strdup(optarg);
286  break;
287 
288  case 3: /* section */
289  set_dump_section(optarg, &(opts->dumpSections));
290  break;
291 
292  case 4: /* filter */
294  break;
295 
296  case 5: /* transaction-size */
297  if (!option_parse_int(optarg, "--transaction-size",
298  1, INT_MAX,
299  &opts->txn_size))
300  exit(1);
301  opts->exit_on_error = true;
302  break;
303 
304  default:
305  /* getopt_long already emitted a complaint */
306  pg_log_error_hint("Try \"%s --help\" for more information.", progname);
307  exit_nicely(1);
308  }
309  }
310 
311  /* Get file name from command line */
312  if (optind < argc)
313  inputFileSpec = argv[optind++];
314  else
315  inputFileSpec = NULL;
316 
317  /* Complain if any arguments remain */
318  if (optind < argc)
319  {
320  pg_log_error("too many command-line arguments (first is \"%s\")",
321  argv[optind]);
322  pg_log_error_hint("Try \"%s --help\" for more information.", progname);
323  exit_nicely(1);
324  }
325 
326  /* Complain if neither -f nor -d was specified (except if dumping TOC) */
327  if (!opts->cparams.dbname && !opts->filename && !opts->tocSummary)
328  pg_fatal("one of -d/--dbname and -f/--file must be specified");
329 
330  /* Should get at most one of -d and -f, else user is confused */
331  if (opts->cparams.dbname)
332  {
333  if (opts->filename)
334  {
335  pg_log_error("options -d/--dbname and -f/--file cannot be used together");
336  pg_log_error_hint("Try \"%s --help\" for more information.", progname);
337  exit_nicely(1);
338  }
339  opts->useDB = 1;
340  }
341 
342  if (opts->dataOnly && opts->schemaOnly)
343  pg_fatal("options -s/--schema-only and -a/--data-only cannot be used together");
344 
345  if (opts->dataOnly && opts->dropSchema)
346  pg_fatal("options -c/--clean and -a/--data-only cannot be used together");
347 
348  if (opts->single_txn && opts->txn_size > 0)
349  pg_fatal("options -1/--single-transaction and --transaction-size cannot be used together");
350 
351  /*
352  * -C is not compatible with -1, because we can't create a database inside
353  * a transaction block.
354  */
355  if (opts->createDB && opts->single_txn)
356  pg_fatal("options -C/--create and -1/--single-transaction cannot be used together");
357 
358  /* Can't do single-txn mode with multiple connections */
359  if (opts->single_txn && numWorkers > 1)
360  pg_fatal("cannot specify both --single-transaction and multiple jobs");
361 
362  opts->disable_triggers = disable_triggers;
363  opts->enable_row_security = enable_row_security;
364  opts->noDataForFailedTables = no_data_for_failed_tables;
365  opts->noTableAm = outputNoTableAm;
366  opts->noTablespace = outputNoTablespaces;
367  opts->use_setsessauth = use_setsessauth;
368  opts->no_comments = no_comments;
369  opts->no_publications = no_publications;
370  opts->no_security_labels = no_security_labels;
371  opts->no_subscriptions = no_subscriptions;
372 
373  if (if_exists && !opts->dropSchema)
374  pg_fatal("option --if-exists requires option -c/--clean");
375  opts->if_exists = if_exists;
377 
378  if (opts->formatName)
379  {
380  switch (opts->formatName[0])
381  {
382  case 'c':
383  case 'C':
384  opts->format = archCustom;
385  break;
386 
387  case 'd':
388  case 'D':
389  opts->format = archDirectory;
390  break;
391 
392  case 't':
393  case 'T':
394  opts->format = archTar;
395  break;
396 
397  default:
398  pg_fatal("unrecognized archive format \"%s\"; please specify \"c\", \"d\", or \"t\"",
399  opts->formatName);
400  }
401  }
402 
403  AH = OpenArchive(inputFileSpec, opts->format);
404 
405  SetArchiveOptions(AH, NULL, opts);
406 
407  /*
408  * We don't have a connection yet but that doesn't matter. The connection
409  * is initialized to NULL and if we terminate through exit_nicely() while
410  * it's still NULL, the cleanup function will just be a no-op.
411  */
413 
414  /* Let the archiver know how noisy to be */
415  AH->verbose = opts->verbose;
416 
417  /*
418  * Whether to keep submitting sql commands as "pg_restore ... | psql ... "
419  */
420  AH->exit_on_error = opts->exit_on_error;
421 
422  if (opts->tocFile)
423  SortTocFromFile(AH);
424 
425  AH->numWorkers = numWorkers;
426 
427  if (opts->tocSummary)
428  PrintTOCSummary(AH);
429  else
430  {
432  RestoreArchive(AH);
433  }
434 
435  /* done, print a summary of ignored errors */
436  if (AH->n_errors)
437  pg_log_warning("errors ignored on restore: %d", AH->n_errors);
438 
439  /* AH may be freed in CloseArchive? */
440  exit_code = AH->n_errors ? 1 : 0;
441 
442  CloseArchive(AH);
443 
444  return exit_code;
445 }
void on_exit_close_archive(Archive *AHX)
Definition: parallel.c:330
void init_parallel_dump_utils(void)
Definition: parallel.c:238
#define PG_MAX_JOBS
Definition: parallel.h:48
#define PG_TEXTDOMAIN(domain)
Definition: c.h:1219
void set_pglocale_pgservice(const char *argv0, const char *app)
Definition: exec.c:429
char * pg_strdup(const char *in)
Definition: fe_memutils.c:85
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
exit(1)
void pg_logging_increase_verbosity(void)
Definition: logging.c:185
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:176
#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:43
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:150
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
PGDLLIMPORT int optind
Definition: getopt.c:51
PGDLLIMPORT char * optarg
Definition: getopt.c:53
static void usage(const char *progname)
Definition: pg_restore.c:448
static void read_restore_filters(const char *filename, RestoreOptions *opts)
Definition: pg_restore.c:527
#define pg_log_warning(...)
Definition: pgfnames.c:24
const char * get_progname(const char *argv0)
Definition: path.c:575
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:238
int n_errors
Definition: pg_backup.h:239
int numWorkers
Definition: pg_backup.h:226
int verbose
Definition: pg_backup.h:218
@ TRI_YES
Definition: vacuumlo.c:38
@ TRI_NO
Definition: vacuumlo.c:37

References archCustom, archDirectory, archTar, CloseArchive(), disable_triggers, exit(), exit_nicely, Archive::exit_on_error, get_progname(), getopt_long(), if_exists, init_parallel_dump_utils(), Archive::n_errors, NewRestoreOptions(), no_argument, no_comments, no_publications, no_security_labels, no_subscriptions, Archive::numWorkers, on_exit_close_archive(), OpenArchive(), optarg, optind, option_parse_int(), opts, pg_fatal, pg_log_error, pg_log_error_hint, pg_log_warning, PG_LOG_WARNING, pg_logging_increase_verbosity(), pg_logging_init(), pg_logging_set_level(), PG_MAX_JOBS, pg_strdup(), PG_TEXTDOMAIN, PrintTOCSummary(), ProcessArchiveRestoreOptions(), progname, read_restore_filters(), required_argument, RestoreArchive(), set_dump_section(), set_pglocale_pgservice(), SetArchiveOptions(), simple_string_list_append(), SortTocFromFile(), AmcheckOptions::strict_names, strict_names, TRI_NO, TRI_YES, usage(), use_setsessauth, AmcheckOptions::verbose, and Archive::verbose.

◆ read_restore_filters()

static void read_restore_filters ( const char *  filename,
RestoreOptions opts 
)
static

Definition at line 527 of file pg_restore.c.

528 {
529  FilterStateData fstate;
530  char *objname;
531  FilterCommandType comtype;
532  FilterObjectType objtype;
533 
534  filter_init(&fstate, filename, exit_nicely);
535 
536  while (filter_read_item(&fstate, &objname, &comtype, &objtype))
537  {
538  if (comtype == FILTER_COMMAND_TYPE_INCLUDE)
539  {
540  switch (objtype)
541  {
543  break;
550  pg_log_filter_error(&fstate, _("%s filter for \"%s\" is not allowed"),
551  "include",
552  filter_object_type_name(objtype));
553  exit_nicely(1);
554 
556  opts->selTypes = 1;
557  opts->selFunction = 1;
558  simple_string_list_append(&opts->functionNames, objname);
559  break;
561  opts->selTypes = 1;
562  opts->selIndex = 1;
563  simple_string_list_append(&opts->indexNames, objname);
564  break;
566  simple_string_list_append(&opts->schemaNames, objname);
567  break;
569  opts->selTypes = 1;
570  opts->selTable = 1;
571  simple_string_list_append(&opts->tableNames, objname);
572  break;
574  opts->selTypes = 1;
575  opts->selTrigger = 1;
576  simple_string_list_append(&opts->triggerNames, objname);
577  break;
578  }
579  }
580  else if (comtype == FILTER_COMMAND_TYPE_EXCLUDE)
581  {
582  switch (objtype)
583  {
585  break;
596  pg_log_filter_error(&fstate, _("%s filter for \"%s\" is not allowed"),
597  "exclude",
598  filter_object_type_name(objtype));
599  exit_nicely(1);
600 
602  simple_string_list_append(&opts->schemaExcludeNames, objname);
603  break;
604  }
605  }
606  else
607  {
608  Assert(comtype == FILTER_COMMAND_TYPE_NONE);
609  Assert(objtype == FILTER_OBJECT_TYPE_NONE);
610  }
611 
612  if (objname)
613  free(objname);
614  }
615 
616  filter_free(&fstate);
617 }
#define Assert(condition)
Definition: c.h:863
#define _(x)
Definition: elog.c:90
void filter_init(FilterStateData *fstate, const char *filename, exit_function f_exit)
Definition: filter.c:36
void filter_free(FilterStateData *fstate)
Definition: filter.c:60
bool filter_read_item(FilterStateData *fstate, char **objname, FilterCommandType *comtype, FilterObjectType *objtype)
Definition: filter.c:389
void pg_log_filter_error(FilterStateData *fstate, const char *fmt,...)
Definition: filter.c:154
const char * filter_object_type_name(FilterObjectType fot)
Definition: filter.c:82
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
#define free(a)
Definition: header.h:65
static char * filename
Definition: pg_dumpall.c:119

References _, Assert, exit_nicely, filename, FILTER_COMMAND_TYPE_EXCLUDE, FILTER_COMMAND_TYPE_INCLUDE, FILTER_COMMAND_TYPE_NONE, filter_free(), filter_init(), FILTER_OBJECT_TYPE_DATABASE, FILTER_OBJECT_TYPE_EXTENSION, FILTER_OBJECT_TYPE_FOREIGN_DATA, FILTER_OBJECT_TYPE_FUNCTION, FILTER_OBJECT_TYPE_INDEX, filter_object_type_name(), FILTER_OBJECT_TYPE_NONE, FILTER_OBJECT_TYPE_SCHEMA, FILTER_OBJECT_TYPE_TABLE, FILTER_OBJECT_TYPE_TABLE_AND_CHILDREN, FILTER_OBJECT_TYPE_TABLE_DATA, FILTER_OBJECT_TYPE_TABLE_DATA_AND_CHILDREN, FILTER_OBJECT_TYPE_TRIGGER, filter_read_item(), free, opts, pg_log_filter_error(), and simple_string_list_append().

Referenced by main().

◆ usage()

static void usage ( const char *  progname)
static

Definition at line 448 of file pg_restore.c.

449 {
450  printf(_("%s restores a PostgreSQL database from an archive created by pg_dump.\n\n"), progname);
451  printf(_("Usage:\n"));
452  printf(_(" %s [OPTION]... [FILE]\n"), progname);
453 
454  printf(_("\nGeneral options:\n"));
455  printf(_(" -d, --dbname=NAME connect to database name\n"));
456  printf(_(" -f, --file=FILENAME output file name (- for stdout)\n"));
457  printf(_(" -F, --format=c|d|t backup file format (should be automatic)\n"));
458  printf(_(" -l, --list print summarized TOC of the archive\n"));
459  printf(_(" -v, --verbose verbose mode\n"));
460  printf(_(" -V, --version output version information, then exit\n"));
461  printf(_(" -?, --help show this help, then exit\n"));
462 
463  printf(_("\nOptions controlling the restore:\n"));
464  printf(_(" -a, --data-only restore only the data, no schema\n"));
465  printf(_(" -c, --clean clean (drop) database objects before recreating\n"));
466  printf(_(" -C, --create create the target database\n"));
467  printf(_(" -e, --exit-on-error exit on error, default is to continue\n"));
468  printf(_(" -I, --index=NAME restore named index\n"));
469  printf(_(" -j, --jobs=NUM use this many parallel jobs to restore\n"));
470  printf(_(" -L, --use-list=FILENAME use table of contents from this file for\n"
471  " selecting/ordering output\n"));
472  printf(_(" -n, --schema=NAME restore only objects in this schema\n"));
473  printf(_(" -N, --exclude-schema=NAME do not restore objects in this schema\n"));
474  printf(_(" -O, --no-owner skip restoration of object ownership\n"));
475  printf(_(" -P, --function=NAME(args) restore named function\n"));
476  printf(_(" -s, --schema-only restore only the schema, no data\n"));
477  printf(_(" -S, --superuser=NAME superuser user name to use for disabling triggers\n"));
478  printf(_(" -t, --table=NAME restore named relation (table, view, etc.)\n"));
479  printf(_(" -T, --trigger=NAME restore named trigger\n"));
480  printf(_(" -x, --no-privileges skip restoration of access privileges (grant/revoke)\n"));
481  printf(_(" -1, --single-transaction restore as a single transaction\n"));
482  printf(_(" --disable-triggers disable triggers during data-only restore\n"));
483  printf(_(" --enable-row-security enable row security\n"));
484  printf(_(" --filter=FILENAME restore or skip objects based on expressions\n"
485  " in FILENAME\n"));
486  printf(_(" --if-exists use IF EXISTS when dropping objects\n"));
487  printf(_(" --no-comments do not restore comment commands\n"));
488  printf(_(" --no-data-for-failed-tables do not restore data of tables that could not be\n"
489  " created\n"));
490  printf(_(" --no-publications do not restore publications\n"));
491  printf(_(" --no-security-labels do not restore security labels\n"));
492  printf(_(" --no-subscriptions do not restore subscriptions\n"));
493  printf(_(" --no-table-access-method do not restore table access methods\n"));
494  printf(_(" --no-tablespaces do not restore tablespace assignments\n"));
495  printf(_(" --section=SECTION restore named section (pre-data, data, or post-data)\n"));
496  printf(_(" --strict-names require table and/or schema include patterns to\n"
497  " match at least one entity each\n"));
498  printf(_(" --transaction-size=N commit after every N objects\n"));
499  printf(_(" --use-set-session-authorization\n"
500  " use SET SESSION AUTHORIZATION commands instead of\n"
501  " ALTER OWNER commands to set ownership\n"));
502 
503  printf(_("\nConnection options:\n"));
504  printf(_(" -h, --host=HOSTNAME database server host or socket directory\n"));
505  printf(_(" -p, --port=PORT database server port number\n"));
506  printf(_(" -U, --username=NAME connect as specified database user\n"));
507  printf(_(" -w, --no-password never prompt for password\n"));
508  printf(_(" -W, --password force password prompt (should happen automatically)\n"));
509  printf(_(" --role=ROLENAME do SET ROLE before restore\n"));
510 
511  printf(_("\n"
512  "The options -I, -n, -N, -P, -t, -T, and --section can be combined and specified\n"
513  "multiple times to select multiple objects.\n"));
514  printf(_("\nIf no input file name is supplied, then standard input is used.\n\n"));
515  printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
516  printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
517 }
#define printf(...)
Definition: port.h:244

References _, printf, and progname.

Referenced by main().