@@ -107,7 +107,6 @@ main(int argc, char *argv[])
107
107
{"host" , required_argument , NULL , 'h' },
108
108
{"dbname" , required_argument , NULL , 'd' },
109
109
{"database" , required_argument , NULL , 'l' },
110
- {"oids" , no_argument , NULL , 'o' },
111
110
{"no-owner" , no_argument , NULL , 'O' },
112
111
{"port" , required_argument , NULL , 'p' },
113
112
{"roles-only" , no_argument , NULL , 'r' },
@@ -211,7 +210,7 @@ main(int argc, char *argv[])
211
210
212
211
pgdumpopts = createPQExpBuffer ();
213
212
214
- while ((c = getopt_long (argc , argv , "acd:E:f:gh:l:oOp :rsS:tU:vwWx" , long_options , & optindex )) != -1 )
213
+ while ((c = getopt_long (argc , argv , "acd:E:f:gh:l:Op :rsS:tU:vwWx" , long_options , & optindex )) != -1 )
215
214
{
216
215
switch (c )
217
216
{
@@ -252,10 +251,6 @@ main(int argc, char *argv[])
252
251
pgdb = pg_strdup (optarg );
253
252
break ;
254
253
255
- case 'o' :
256
- appendPQExpBufferStr (pgdumpopts , " -o" );
257
- break ;
258
-
259
254
case 'O' :
260
255
appendPQExpBufferStr (pgdumpopts , " -O" );
261
256
break ;
@@ -628,7 +623,6 @@ help(void)
628
623
printf (_ (" -c, --clean clean (drop) databases before recreating\n" ));
629
624
printf (_ (" -E, --encoding=ENCODING dump the data in encoding ENCODING\n" ));
630
625
printf (_ (" -g, --globals-only dump only global objects, no databases\n" ));
631
- printf (_ (" -o, --oids include OIDs in dump\n" ));
632
626
printf (_ (" -O, --no-owner skip restoration of object ownership\n" ));
633
627
printf (_ (" -r, --roles-only dump only roles, no databases or tablespaces\n" ));
634
628
printf (_ (" -s, --schema-only dump only the schema, no data\n" ));
0 commit comments