Commit c3462e41 authored by Bruce Momjian's avatar Bruce Momjian

Add C comment that new new pg_dump -X options are to be created.

parent 3f9cf6b3
...@@ -469,7 +469,10 @@ main(int argc, char **argv) ...@@ -469,7 +469,10 @@ main(int argc, char **argv)
break; break;
case 'X': 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) if (strcmp(optarg, "disable-dollar-quoting") == 0)
disable_dollar_quoting = 1; disable_dollar_quoting = 1;
else if (strcmp(optarg, "disable-triggers") == 0) else if (strcmp(optarg, "disable-triggers") == 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment