printf(_(" --extra-float-digits=NUM override default setting for extra_float_digits\n"));
printf(_(" --if-exists use IF EXISTS when dropping objects\n"));
printf(_(" --include-foreign-data=PATTERN\n"
- " include data of foreign tables in\n"
- " foreign servers matching PATTERN\n"));
+ " include data of foreign tables on foreign\n"
+ " servers matching PATTERN\n"));
printf(_(" --inserts dump data as INSERT commands, rather than COPY\n"));
printf(_(" --load-via-partition-root load partitions via the root table\n"));
printf(_(" --no-comments do not dump comments\n"));
res = PQexec(conn, sql);
if (PQresultStatus(res) != PGRES_TUPLES_OK)
- pg_fatal("error running query (%s) in source server: %s",
+ pg_fatal("error running query (%s) on source server: %s",
sql, PQresultErrorMessage(res));
/* sanity check the result set */
(void) pg_strip_crlf(cmd_output);
if (strcmp(cmd_output, "") == 0)
- pg_fatal("restore_command is not set on the target cluster");
+ pg_fatal("restore_command is not set in the target cluster");
restore_command = pg_strdup(cmd_output);
if (system(cmd) != 0)
{
- pg_log_error("postgres single-user mode of target instance failed");
+ pg_log_error("postgres single-user mode in target cluster failed");
pg_fatal("Command was: %s", cmd);
}
}
name, PQdb(conn), PQerrorMessage(conn));
break;
case REINDEX_SYSTEM:
- pg_log_error("reindexing of system catalogs on database \"%s\" failed: %s",
+ pg_log_error("reindexing of system catalogs in database \"%s\" failed: %s",
PQdb(conn), PQerrorMessage(conn));
break;
case REINDEX_TABLE: