From 9b22354a594570e23cc675d90836743ce7a3ba1c Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Fri, 7 Jun 2019 00:07:14 +0200 Subject: [PATCH] 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. --- mysql-test/lib/My/ConfigFactory.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }