Commit 1d3b258c authored by Heikki Linnakangas's avatar Heikki Linnakangas

Fix misc typos in comments.

parent 3ee4fcfc
/*------------------------------------------------------------------------- /*-------------------------------------------------------------------------
* *
* pg_recvlogical.c - receive data from a logical decoding slot in a streaming fashion * pg_recvlogical.c - receive data from a logical decoding slot in a streaming
* and write it to to a local file. * fashion and write it to a local file.
* *
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
* *
...@@ -110,7 +110,7 @@ sendFeedback(PGconn *conn, int64 now, bool force, bool replyRequested) ...@@ -110,7 +110,7 @@ sendFeedback(PGconn *conn, int64 now, bool force, bool replyRequested)
int len = 0; int len = 0;
/* /*
* we normally don't want to send superflous feedbacks, but if it's * we normally don't want to send superfluous feedbacks, but if it's
* because of a timeout we need to, otherwise wal_sender_timeout will * because of a timeout we need to, otherwise wal_sender_timeout will
* kill us. * kill us.
*/ */
......
...@@ -34,7 +34,7 @@ SELECT relreplident FROM pg_class WHERE oid = 'pg_constraint'::regclass; ...@@ -34,7 +34,7 @@ SELECT relreplident FROM pg_class WHERE oid = 'pg_constraint'::regclass;
(1 row) (1 row)
---- ----
-- Make sure we detect inelegible indexes -- Make sure we detect ineligible indexes
---- ----
-- fail, not unique -- fail, not unique
ALTER TABLE test_replica_identity REPLICA IDENTITY USING INDEX test_replica_identity_keyab; ALTER TABLE test_replica_identity REPLICA IDENTITY USING INDEX test_replica_identity_keyab;
......
...@@ -23,7 +23,7 @@ SELECT relreplident FROM pg_class WHERE oid = 'pg_class'::regclass; ...@@ -23,7 +23,7 @@ SELECT relreplident FROM pg_class WHERE oid = 'pg_class'::regclass;
SELECT relreplident FROM pg_class WHERE oid = 'pg_constraint'::regclass; SELECT relreplident FROM pg_class WHERE oid = 'pg_constraint'::regclass;
---- ----
-- Make sure we detect inelegible indexes -- Make sure we detect ineligible indexes
---- ----
-- fail, not unique -- fail, not unique
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment