Commit b21e7af2 authored by Alexey Botchkov's avatar Alexey Botchkov

MDEV-9969 mysql_install_db error processing ignore_db_dirs.

        Changes to the mysql_install_db scripts so they don't repeat
        arguments twice.
parent 0e50b924
...@@ -238,7 +238,7 @@ sub quote_options { ...@@ -238,7 +238,7 @@ sub quote_options {
############################################################################## ##############################################################################
my $opt = {}; my $opt = {};
parse_arguments($opt, 'PICK-ARGS-FROM-ARGV', @ARGV); parse_arguments($opt, @ARGV);
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# We can now find my_print_defaults. This script supports: # We can now find my_print_defaults. This script supports:
......
...@@ -216,7 +216,7 @@ cannot_find_file() ...@@ -216,7 +216,7 @@ cannot_find_file()
# Ok, let's go. We first need to parse arguments which are required by # Ok, let's go. We first need to parse arguments which are required by
# my_print_defaults so that we can execute it first, then later re-parse # my_print_defaults so that we can execute it first, then later re-parse
# the command line to add any extra bits that we need. # the command line to add any extra bits that we need.
parse_arguments PICK-ARGS-FROM-ARGV "$@" parse_arguments "$@"
# #
# We can now find my_print_defaults. This script supports: # We can now find my_print_defaults. This script supports:
......
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