Skip to content

Commit

Permalink
Fix mysql-test-run.pl to work after d6d5c16
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
vuvova committed Jun 6, 2019
1 parent dfe7968 commit 9b22354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mysql-test/lib/My/ConfigFactory.pm
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ sub resolve_at_variable {
}
$res .= $after;

$config->insert($group->name(), $option->name(), $res)
$option->{value}= $res;
}


Expand Down

0 comments on commit 9b22354

Please sign in to comment.