From 5a5fe92ae416b6002fd9a027012f6f97b22bb517 Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Sun, 18 Dec 2016 16:54:39 +0100 Subject: [PATCH] Remove matchsub regex no longer required Commit 0bf31cd66217c ensured that we are using proper error codes instead of internal errors with filename:location. Remove this left over regex which will no longer be useful. --- src/test/regress/atmsort.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/regress/atmsort.pm b/src/test/regress/atmsort.pm index ff99266589..d62dc47ea3 100644 --- a/src/test/regress/atmsort.pm +++ b/src/test/regress/atmsort.pm @@ -268,8 +268,8 @@ sub init_match_subs $here_matchsubs = << 'EOF_matchsubs'; # some cleanup of greenplum-specific messages -m/\s+(?:\W)?(?:\W)?\(seg.*pid.*\)/ -s/\s+(\W)?(\W)?\(seg.*pid.*\)// +m/\s+\(seg.*pid.*\)/ +s/\s+\(seg.*pid.*\)// # distributed transactions m/^(?:ERROR|WARNING|CONTEXT|NOTICE):.*gid\s+=\s+(?:\d+)/ -- GitLab