diff options
author | Michael Paquier | 2024-09-03 05:49:04 +0000 |
---|---|---|
committer | Michael Paquier | 2024-09-03 05:49:04 +0000 |
commit | 4236825197e8b7f26f8fd2ce0ac287a696e7264e (patch) | |
tree | 14629d4520f55b175c54667547e6feb648e92f52 /src/bin/pg_combinebackup | |
parent | c7cd2d6ed082a4638172acece33ed6f36da96263 (diff) |
Fix typos and grammar in code comments and docs
Author: Alexander Lakhin
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/bin/pg_combinebackup')
-rw-r--r-- | src/bin/pg_combinebackup/t/008_promote.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_combinebackup/t/008_promote.pl b/src/bin/pg_combinebackup/t/008_promote.pl index 1154a5d8b22..0ee96ff037c 100644 --- a/src/bin/pg_combinebackup/t/008_promote.pl +++ b/src/bin/pg_combinebackup/t/008_promote.pl @@ -54,7 +54,7 @@ recovery_target_action = 'pause' EOM $node2->start(); -# Wait until recoveery pauses, then promote. +# Wait until recovery pauses, then promote. $node2->poll_query_until('postgres', "SELECT pg_get_wal_replay_pause_state() = 'paused';"); $node2->safe_psql('postgres', "SELECT pg_promote()"); @@ -65,7 +65,7 @@ INSERT INTO mytable VALUES (2, 'blackberry'); EOM # Now take an incremental backup. If WAL summarization didn't follow the -# timeline cange correctly, something should break at this point. +# timeline change correctly, something should break at this point. my $backup2path = $node1->backup_dir . '/backup2'; $node2->command_ok( [ 'pg_basebackup', '-D', $backup2path, '--no-sync', '-cfast', |