summaryrefslogtreecommitdiff
path: root/mysql-test
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
commit0121bdc8d40bc57d8cc19fb805f8ab5f5103a874 (patch)
treec344542ccb06ceb73255a5f28b521703b0bf6985 /mysql-test
parent63a205d4a00670298f0c3568ba7af8c5a1b3fee2 (diff)
downloadmariadb-git-0121bdc8d40bc57d8cc19fb805f8ab5f5103a874.tar.gz
Bug #17654275 - MTR EXTRACT_WARNING_LINES IS NOT REMOVING TIMESTAMP IN UTC FORMAT WITH TIMEZONES
Diffstat (limited to 'mysql-test')
-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 {