From: Bruce Momjian Date: Fri, 11 Mar 2011 03:58:18 +0000 (-0500) Subject: Remove pg_dump -X options that are only in 9.1 and not needed for X-Git-Tag: REL9_1_ALPHA5~114 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=72bd19dbddaf5786381377ad3da281572de721b5;p=thirdparty%2Fpostgresql.git Remove pg_dump -X options that are only in 9.1 and not needed for backward compatibility. --- diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index feeeae8e560..546a04c9513 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -481,10 +481,6 @@ main(int argc, char **argv) outputNoTablespaces = 1; else if (strcmp(optarg, "use-set-session-authorization") == 0) use_setsessauth = 1; - else if (strcmp(optarg, "no-security-label") == 0) - no_security_label = 1; - else if (strcmp(optarg, "no-unlogged-table-data") == 0) - no_unlogged_table_data = 1; else { fprintf(stderr,