summaryrefslogtreecommitdiff
path: root/mysql-test/mysql-test-run.pl
diff options
context:
space:
mode:
authorsayantan dutta <sayantan.dutta@oracle.com>2013-10-25 11:38:34 +0530
committersayantan dutta <sayantan.dutta@oracle.com>2013-10-25 11:38:34 +0530
commit711888f697861ffe8edabbdd729936452add4683 (patch)
treec344542ccb06ceb73255a5f28b521703b0bf6985 /mysql-test/mysql-test-run.pl
parentf1c8a03e54e27ef6d5d33b4f25438ce4bab0d208 (diff)
downloadmariadb-git-711888f697861ffe8edabbdd729936452add4683.tar.gz
Bug #17654275 - MTR EXTRACT_WARNING_LINES IS NOT REMOVING TIMESTAMP IN UTC FORMAT WITH TIMEZONES
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-xmysql-test/mysql-test-run.pl2
1 files changed, 1 insertions, 1 deletions
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 {