summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2011-03-11 03:36:14 +0000
committerBruce Momjian2011-03-11 03:36:14 +0000
commitc3462e413e8700b4710a6d23252fd095291c27e3 (patch)
tree19fee8e15acdf60488b4069e3be30e0ba465300f
parent3f9cf6b336fb93f4e13943d9e873f5a4a167177a (diff)
Add C comment that new new pg_dump -X options are to be created.
-rw-r--r--src/bin/pg_dump/pg_dump.c5
1 files changed, 4 insertions, 1 deletions
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)