aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2020-01-31 13:58:05 +0900
committerMichael Paquier <michael@paquier.xyz>2020-01-31 13:58:05 +0900
commit706ad6a4df3aa04a83fea07d907057d379f04d40 (patch)
tree7d7bffc1bcb01444b8b4ba27b4637f74a12c1052
parenta4484a6489291d3160767d57ab538f1de6698c21 (diff)
downloadpostgresql-706ad6a4df3aa04a83fea07d907057d379f04d40.tar.gz
postgresql-706ad6a4df3aa04a83fea07d907057d379f04d40.zip
Fix typo in recently-added TAP test for replication slots
Oversight in commit b0afdca.
-rw-r--r--src/test/recovery/t/006_logical_decoding.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/recovery/t/006_logical_decoding.pl b/src/test/recovery/t/006_logical_decoding.pl
index 721d54fc4e6..0bcd1d0b59f 100644
--- a/src/test/recovery/t/006_logical_decoding.pl
+++ b/src/test/recovery/t/006_logical_decoding.pl
@@ -151,7 +151,7 @@ is($psql_rc, '0', 'slot advancing with logical slot');
my $logical_restart_lsn_pre = $node_master->safe_psql('postgres',
"SELECT restart_lsn from pg_replication_slots WHERE slot_name = '$logical_slot';");
chomp($logical_restart_lsn_pre);
-# Slot advance should persists across clean restarts.
+# Slot advance should persist across clean restarts.
$node_master->restart;
my $logical_restart_lsn_post = $node_master->safe_psql('postgres',
"SELECT restart_lsn from pg_replication_slots WHERE slot_name = '$logical_slot';");