diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2009-04-14 00:06:35 +0000 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2009-04-14 00:06:35 +0000 |
commit | 14a4f6f3748df4ff63bb2d2d01146b2b98df20ef (patch) | |
tree | f91fb51dda0393e3754f992d0d9c27ed38e0b39e | |
parent | d29a2ee3c0731f5f922e21562c6d9ffd84583a07 (diff) |
pg_restore -jN does not equate "multiple jobs", so partly revert the
previous patch.
Per note from Tom.
-rw-r--r-- | src/bin/pg_dump/pg_restore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c index b7cdcae45ef..f7723dc72c9 100644 --- a/src/bin/pg_dump/pg_restore.c +++ b/src/bin/pg_dump/pg_restore.c @@ -34,7 +34,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.98 2009/04/13 21:03:36 alvherre Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.99 2009/04/14 00:06:35 alvherre Exp $ * *------------------------------------------------------------------------- */ @@ -316,7 +316,7 @@ main(int argc, char **argv) /* Can't do single-txn mode with multiple connections */ if (opts->single_txn && opts->number_of_jobs > 1) { - fprintf(stderr, _("%s: options -1/--single-transaction and -j/--jobs cannot be used together\n"), + fprintf(stderr, _("%s: cannot specify both --single-transaction and multiple jobs\n"), progname); exit(1); } |