From 0121bdc8d40bc57d8cc19fb805f8ab5f5103a874 Mon Sep 17 00:00:00 2001 From: sayantan dutta Date: Fri, 25 Oct 2013 11:38:34 +0530 Subject: [PATCH] Bug #17654275 - MTR EXTRACT_WARNING_LINES IS NOT REMOVING TIMESTAMP IN UTC FORMAT WITH TIMEZONES --- mysql-test/mysql-test-run.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 54dcd982a4c..27f99941637 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -4353,7 +4353,7 @@ sub extract_warning_lines ($$) { { # Remove initial timestamp and look for consecutive identical lines my $line_pat= $line; - $line_pat =~ s/^[0-9: ]*//; + $line_pat =~ s/^[0-9:\-\+\.TZ ]*//; if ($line_pat eq $last_pat) { $num_rep++; } else {