diff options
author | Sergei Golubchik <serg@mariadb.org> | 2019-06-07 00:07:14 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2019-06-07 00:07:14 +0200 |
commit | 9b22354a594570e23cc675d90836743ce7a3ba1c (patch) | |
tree | faae937fa3231071ab90f943c56b95848ed51f47 /mysql-test/lib | |
parent | dfe7968c6ed55b32916b7b84a54abdc66debef4c (diff) | |
download | mariadb-git-9b22354a594570e23cc675d90836743ce7a3ba1c.tar.gz |
Fix mysql-test-run.pl to work after d6d5c168cf1
option values now have to be edited in-place,
instead of replacing an option with another one
that has the same name but a new value.
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/My/ConfigFactory.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/My/ConfigFactory.pm b/mysql-test/lib/My/ConfigFactory.pm index 6d4c7f43390..72d7600e8df 100644 --- a/mysql-test/lib/My/ConfigFactory.pm +++ b/mysql-test/lib/My/ConfigFactory.pm @@ -372,7 +372,7 @@ sub resolve_at_variable { } $res .= $after; - $config->insert($group->name(), $option->name(), $res) + $option->{value}= $res; } |