index a6e7b08e2e2f0b83e292aea1529579b92c7c32be..c78f71d9a7acb8551ceef4ca0ed3bf595cae1a5a 100644 (file)
</listitem>
</varlistentry>
- <varlistentry>
- <term><option>-i</></term>
- <term><option>--ignore-version</></term>
- <listitem>
- <para>
- A deprecated option that is now ignored.
- </para>
- </listitem>
- </varlistentry>
-
<varlistentry>
<term><option>-j <replaceable class="parameter">njobs</replaceable></></term>
<term><option>--jobs=<replaceable class="parameter">njobs</replaceable></></term>
index 272af3eb0acd4dad7d1f850a4cb76dbffa4f44d7..6c34c257b3c35ee14357d122038f134c41ab83ad 100644 (file)
</listitem>
</varlistentry>
- <varlistentry>
- <term><option>-i</></term>
- <term><option>--ignore-version</></term>
- <listitem>
- <para>
- A deprecated option that is now ignored.
- </para>
- </listitem>
- </varlistentry>
-
<varlistentry>
<term><option>-o</></term>
<term><option>--oids</></term>
index 9f8dc00480cbe6681d29325c669d65ad8d1fa44b..ebdf58020eed00194a280f0a98583116f75bd44b 100644 (file)
</listitem>
</varlistentry>
- <varlistentry>
- <term><option>-i</option></term>
- <term><option>--ignore-version</option></term>
- <listitem>
- <para>
- A deprecated option that is now ignored.
- </para>
- </listitem>
- </varlistentry>
-
<varlistentry>
<term><option>-I <replaceable class="parameter">index</replaceable></option></term>
<term><option>--index=<replaceable class="parameter">index</replaceable></option></term>
index 687cbaaf7c2dcde4ed7c305f1cb1c4bbce3b3143..a72dfe93da939d466fed007105cc3d408d229bf5 100644 (file)
{"file", required_argument, NULL, 'f'},
{"format", required_argument, NULL, 'F'},
{"host", required_argument, NULL, 'h'},
- {"ignore-version", no_argument, NULL, 'i'},
{"jobs", 1, NULL, 'j'},
{"no-reconnect", no_argument, NULL, 'R'},
{"oids", no_argument, NULL, 'o'},
InitDumpOptions(&dopt);
- while ((c = getopt_long(argc, argv, "abcCd:E:f:F:h:ij:n:N:oOp:RsS:t:T:U:vwWxZ:",
+ while ((c = getopt_long(argc, argv, "abcCd:E:f:F:h:j:n:N:oOp:RsS:t:T:U:vwWxZ:",
long_options, &optindex)) != -1)
{
switch (c)
dopt.pghost = pg_strdup(optarg);
break;
- case 'i':
- /* ignored, deprecated option */
- break;
-
case 'j': /* number of dump jobs */
numWorkers = atoi(optarg);
break;
index c6b9326cb156b713f437aef6e8e71e04b11582f2..d98c83e099c6439b17e4a3f736470ea22d40ab98 100644 (file)
{"file", required_argument, NULL, 'f'},
{"globals-only", no_argument, NULL, 'g'},
{"host", required_argument, NULL, 'h'},
- {"ignore-version", no_argument, NULL, 'i'},
{"dbname", required_argument, NULL, 'd'},
{"database", required_argument, NULL, 'l'},
{"oids", no_argument, NULL, 'o'},
pgdumpopts = createPQExpBuffer();
- while ((c = getopt_long(argc, argv, "acd:f:gh:il:oOp:rsS:tU:vwWx", long_options, &optindex)) != -1)
+ while ((c = getopt_long(argc, argv, "acd:f:gh:l:oOp:rsS:tU:vwWx", long_options, &optindex)) != -1)
{
switch (c)
{
pghost = pg_strdup(optarg);
break;
- case 'i':
- /* ignored, deprecated option */
- break;
-
case 'l':
pgdb = pg_strdup(optarg);
break;
index 9c6e533befaf6faa7f10ea59b7c5eabc42617aea..ec82d0b98d5ca9e2540d36623233ba64439437ef 100644 (file)
{"format", 1, NULL, 'F'},
{"function", 1, NULL, 'P'},
{"host", 1, NULL, 'h'},
- {"ignore-version", 0, NULL, 'i'},
{"index", 1, NULL, 'I'},
{"jobs", 1, NULL, 'j'},
{"list", 0, NULL, 'l'},
}
}
- while ((c = getopt_long(argc, argv, "acCd:ef:F:h:iI:j:lL:n:Op:P:RsS:t:T:U:vwWx1",
+ while ((c = getopt_long(argc, argv, "acCd:ef:F:h:I:j:lL:n:Op:P:RsS:t:T:U:vwWx1",
cmdopts, NULL)) != -1)
{
switch (c)
if (strlen(optarg) != 0)
opts->pghost = pg_strdup(optarg);
break;
- case 'i':
- /* ignored, deprecated option */
- break;
case 'j': /* number of restore jobs */
numWorkers = atoi(optarg);