From 72bd19dbddaf5786381377ad3da281572de721b5 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 10 Mar 2011 22:58:18 -0500 Subject: [PATCH] Remove pg_dump -X options that are only in 9.1 and not needed for backward compatibility. --- src/bin/pg_dump/pg_dump.c | 4 ---- 1 file changed, 4 deletions(-) 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, -- 2.39.5