Skip to content
Permalink
Browse files
MDEV-29348 rpl.rpl_rewrt_db test fails with [gdb,manual-gdb] with wro…
…ng parsing

Reviewer: <serg@mariadb.com>
Closes PR #2244
  • Loading branch information
an3l committed Nov 28, 2022
1 parent 4e92067 commit 3d5ce04
Showing 1 changed file with 1 addition and 1 deletion.
@@ -144,7 +144,7 @@ sub do_args($$$$$) {
my $v = $debuggers{$k};

# on windows mtr args are quoted (for system), otherwise not (for exec)
sub quote($) { $_[0] =~ /[; ]/ ? "\"$_[0]\"" : $_[0] }
sub quote($) { $_[0] =~ /[; >]/ ? "\"$_[0]\"" : $_[0] }
sub unquote($) { $_[0] =~ s/^"(.*)"$/$1/; $_[0] }
sub quote_from_mtr($) { IS_WINDOWS() ? $_[0] : quote($_[0]) }
sub unquote_for_mtr($) { IS_WINDOWS() ? $_[0] : unquote($_[0]) }

0 comments on commit 3d5ce04

Please sign in to comment.