Remove pg_dump -X options that are only in 9.1 and not needed for
authorBruce Momjian <[email protected]>
Fri, 11 Mar 2011 03:58:18 +0000 (22:58 -0500)
committerBruce Momjian <[email protected]>
Fri, 11 Mar 2011 03:58:18 +0000 (22:58 -0500)
backward compatibility.

src/bin/pg_dump/pg_dump.c

index feeeae8e560e661bf83f44090f091320653702bc..546a04c95137392a84914db8cc36a7179fad8e4b 100644 (file)
@@ -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,