Adjust help message for --no-owner, per Alvaro Herrera.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 3 Dec 2004 18:48:19 +0000 (18:48 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 3 Dec 2004 18:48:19 +0000 (18:48 +0000)
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dumpall.c
src/bin/pg_dump/pg_restore.c

index af39dc3a036d4f31e8d4d988594a9f5d96f3577d..23613851c8b95aa3dc4d76348ef285e6c6a66c77 100644 (file)
@@ -682,7 +682,7 @@ help(const char *progname)
        printf(_("  -D, --column-inserts     dump data as INSERT commands with column names\n"));
        printf(_("  -n, --schema=SCHEMA      dump the named schema only\n"));
        printf(_("  -o, --oids               include OIDs in dump\n"));
-       printf(_("  -O, --no-owner           do not output commands to set object ownership\n"
+       printf(_("  -O, --no-owner           skip restoration of object ownership\n"
                         "                           in plain text format\n"));
        printf(_("  -s, --schema-only        dump only the schema, no data\n"));
        printf(_("  -S, --superuser=NAME     specify the superuser user name to use in\n"
index ae1c608b6cb3c497a8d4009f6b5ec77ef1298703..2d61deaec389b1ac917a21afc8c2f47f165ba476 100644 (file)
@@ -349,7 +349,7 @@ help(void)
        printf(_("  -D, --column-inserts     dump data as INSERT commands with column names\n"));
        printf(_("  -g, --globals-only       dump only global objects, no databases\n"));
        printf(_("  -o, --oids               include OIDs in dump\n"));
-       printf(_("  -O, --no-owner           do not output commands to set object ownership\n"));
+       printf(_("  -O, --no-owner           skip restoration of object ownership\n"));
        printf(_("  -s, --schema-only        dump only the schema, no data\n"));
        printf(_("  -S, --superuser=NAME     specify the superuser user name to use in the dump\n"));
        printf(_("  -x, --no-privileges      do not dump privileges (grant/revoke)\n"));
index 9ce0e21e71c51f40749b9a486923411ac7ba6095..3ffa3e97914a082744952f831d0c1ff476da9975 100644 (file)
@@ -376,7 +376,7 @@ usage(const char *progname)
        printf(_("  -I, --index=NAME         restore named index\n"));
        printf(_("  -L, --use-list=FILENAME  use specified table of contents for ordering\n"
                         "                           output from this file\n"));
-       printf(_("  -O, --no-owner           do not issue commands to set object ownership\n"));
+       printf(_("  -O, --no-owner           skip restoration of object ownership\n"));
        printf(_("  -P, --function=NAME(args)\n"
                         "                           restore named function\n"));
        printf(_("  -s, --schema-only        restore only the schema, no data\n"));