Browse Source

Bug#42027: Incorrect parsing of debug and verbose options for mysqldumpslow

Options got normalised to long rather than short options
since we gave primary name and alias in wrong order.
Consequently querying for the option using the short
options (the correct primary name) didn't work, rendering
the options in question inaccessible.

We restore the right order of the universe, or at least
the alii for --debug and --verbose.

scripts/mysqldumpslow.sh:
  Normalise --verbose/-v and --debug/-d to short
  options, not long options.
pull/374/head
Tatiana A. Nurnberg 17 years ago
parent
commit
ec8de22f9f
  1. 4
      scripts/mysqldumpslow.sh

4
scripts/mysqldumpslow.sh

@ -17,9 +17,9 @@ my %opt = (
);
GetOptions(\%opt,
'verbose|v+',# verbose
'v|verbose+',# verbose
'help+', # write usage info
'debug|d+', # debug
'd|debug+', # debug
's=s', # what to sort by (t, at, l, al, r, ar etc)
'r!', # reverse the sort order (largest last instead of first)
't=i', # just show the top n queries

Loading…
Cancel
Save