From: Bruce Momjian Date: Fri, 11 Mar 2011 03:36:14 +0000 (-0500) Subject: Add C comment that new new pg_dump -X options are to be created. X-Git-Tag: REL9_1_ALPHA5~115 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c3462e413e8700b4710a6d23252fd095291c27e3;p=postgresql Add C comment that new new pg_dump -X options are to be created. --- diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 0884517331..feeeae8e56 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -469,7 +469,10 @@ main(int argc, char **argv) break; case 'X': - /* -X is a deprecated alternative to long options */ + /* + * -X is a deprecated alternative to long options; + * no new -X options are to be added. + */ if (strcmp(optarg, "disable-dollar-quoting") == 0) disable_dollar_quoting = 1; else if (strcmp(optarg, "disable-triggers") == 0)