diff options
author | Amit Kapila <akapila@postgresql.org> | 2024-11-27 14:54:26 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2024-11-27 14:54:26 +0530 |
commit | 9d7aa406d04ce51da38eb5b6402079f60a601aec (patch) | |
tree | 27f8a1e438a6cf98ce0c8dbd9c106558e3191ca6 /src | |
parent | 85b7efa1cdd63c2fe2b70b725b8285743ee5787f (diff) | |
download | postgresql-9d7aa406d04ce51da38eb5b6402079f60a601aec.tar.gz postgresql-9d7aa406d04ce51da38eb5b6402079f60a601aec.zip |
Fix buildfarm failure from commit 8fcd80258b.
The test case was incorrectly matching the error code.
Author: Vignesh C
Discussion: https://postgr.es/m/CALDaNm0C5LPiTxkdqsxiyeaL=nuUP8t6ne81sp9jE0=MFz=-ew@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/test/subscription/t/011_generated.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/subscription/t/011_generated.pl b/src/test/subscription/t/011_generated.pl index 66e6d8da5ac..b1b87cf85e3 100644 --- a/src/test/subscription/t/011_generated.pl +++ b/src/test/subscription/t/011_generated.pl @@ -361,7 +361,7 @@ $node_subscriber->safe_psql( # Verify that an error occurs. my $offset = -s $node_subscriber->logfile; $node_subscriber->wait_for_log( - qr/ERROR: ( [A-Z0-9]:)? logical replication target relation "public.t1" has incompatible generated columns: "c2", "c3"/, + qr/ERROR: ( [A-Z0-9]+:)? logical replication target relation "public.t1" has incompatible generated columns: "c2", "c3"/, $offset); # cleanup |