From 5ec69b71f17c353b27754deb8d94bb1f5cf7a029 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Wed, 12 Apr 2023 11:00:37 -0700 Subject: Improve error messages introduced in be87200efd9 and 0fdab27ad68 Author: Kyotaro Horiguchi Discussion: https://postgr.es/m/20230411.120301.93333867350615278.horikyota.ntt@gmail.com Discussion: https://postgr.es/m/20230412174244.6njadz4uoiez3l74@awork3.anarazel.de --- src/test/recovery/t/035_standby_logical_decoding.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/test') diff --git a/src/test/recovery/t/035_standby_logical_decoding.pl b/src/test/recovery/t/035_standby_logical_decoding.pl index 94a8384c31c..20838d49b53 100644 --- a/src/test/recovery/t/035_standby_logical_decoding.pl +++ b/src/test/recovery/t/035_standby_logical_decoding.pl @@ -596,8 +596,8 @@ check_for_invalidation('wal_level_', $logstart, 'due to wal_level'); check_slots_conflicting_status(1); $handle = make_slot_active($node_standby, 'wal_level_', 0, \$stdout, \$stderr); -# We are not able to read from the slot as it requires wal_level at least logical on the primary server -check_pg_recvlogical_stderr($handle, "logical decoding on a standby requires wal_level to be at least logical on the primary"); +# We are not able to read from the slot as it requires wal_level >= logical on the primary server +check_pg_recvlogical_stderr($handle, "logical decoding on standby requires wal_level >= logical on the primary"); # Restore primary wal_level $node_primary->append_conf('postgresql.conf',q[ -- cgit v1.2.3