Fix typo in recently-added TAP test for replication slots
authorMichael Paquier <michael@paquier.xyz>
Fri, 31 Jan 2020 04:57:56 +0000 (13:57 +0900)
committerMichael Paquier <michael@paquier.xyz>
Fri, 31 Jan 2020 04:57:56 +0000 (13:57 +0900)
Oversight in commit b0afdca.

src/test/recovery/t/006_logical_decoding.pl

index 721d54fc4e6cee9cc925f893713821a195d8cd4d..0bcd1d0b59f2b3145829e7a555ae3caa5515385e 100644 (file)
@@ -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';");