Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1d3b258

Browse files
committed
Fix misc typos in comments.
1 parent 3ee4fcf commit 1d3b258

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/bin/pg_basebackup/pg_recvlogical.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* pg_recvlogical.c - receive data from a logical decoding slot in a streaming fashion
4-
* and write it to to a local file.
3+
* pg_recvlogical.c - receive data from a logical decoding slot in a streaming
4+
* fashion and write it to a local file.
55
*
66
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
77
*
@@ -110,7 +110,7 @@ sendFeedback(PGconn *conn, int64 now, bool force, bool replyRequested)
110110
int len = 0;
111111

112112
/*
113-
* we normally don't want to send superflous feedbacks, but if it's
113+
* we normally don't want to send superfluous feedbacks, but if it's
114114
* because of a timeout we need to, otherwise wal_sender_timeout will
115115
* kill us.
116116
*/

src/test/regress/expected/replica_identity.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ SELECT relreplident FROM pg_class WHERE oid = 'pg_constraint'::regclass;
3434
(1 row)
3535

3636
----
37-
-- Make sure we detect inelegible indexes
37+
-- Make sure we detect ineligible indexes
3838
----
3939
-- fail, not unique
4040
ALTER TABLE test_replica_identity REPLICA IDENTITY USING INDEX test_replica_identity_keyab;

src/test/regress/sql/replica_identity.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SELECT relreplident FROM pg_class WHERE oid = 'pg_class'::regclass;
2323
SELECT relreplident FROM pg_class WHERE oid = 'pg_constraint'::regclass;
2424

2525
----
26-
-- Make sure we detect inelegible indexes
26+
-- Make sure we detect ineligible indexes
2727
----
2828

2929
-- fail, not unique

0 commit comments

Comments
 (0)