summaryrefslogtreecommitdiff
path: root/mysql-test/lib
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2019-06-07 00:07:14 +0200
committerSergei Golubchik <serg@mariadb.org>2019-06-07 00:07:14 +0200
commit9b22354a594570e23cc675d90836743ce7a3ba1c (patch)
treefaae937fa3231071ab90f943c56b95848ed51f47 /mysql-test/lib
parentdfe7968c6ed55b32916b7b84a54abdc66debef4c (diff)
downloadmariadb-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.pm2
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;
}