summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2011-03-11 03:58:18 +0000
committerBruce Momjian2011-03-11 03:58:18 +0000
commit72bd19dbddaf5786381377ad3da281572de721b5 (patch)
tree926b99d847d7be84f212cb156f826e33331c0f63
parentc3462e413e8700b4710a6d23252fd095291c27e3 (diff)
Remove pg_dump -X options that are only in 9.1 and not needed for
backward compatibility.
-rw-r--r--src/bin/pg_dump/pg_dump.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index feeeae8e56..546a04c951 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,