aboutsummaryrefslogtreecommitdiff
path: root/src/backend/replication/logical/worker.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-04-04 09:03:24 -0400
committerPeter Eisentraut <peter_e@gmx.net>2017-04-04 09:03:24 -0400
commitd1f103c7396b667e64141412a8a0d12a2eef2930 (patch)
tree20ccd0e4e764bcdb0b226a937ac861d37dd2bf3f /src/backend/replication/logical/worker.c
parent553c3bef4cb47bdacb65b87c5460a2775f535a2b (diff)
downloadpostgresql-d1f103c7396b667e64141412a8a0d12a2eef2930.tar.gz
postgresql-d1f103c7396b667e64141412a8a0d12a2eef2930.zip
Fix typo
Author: Masahiko Sawada <sawada.mshk@gmail.com>
Diffstat (limited to 'src/backend/replication/logical/worker.c')
-rw-r--r--src/backend/replication/logical/worker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/worker.c b/src/backend/replication/logical/worker.c
index fc01cd344ca..8a984a41508 100644
--- a/src/backend/replication/logical/worker.c
+++ b/src/backend/replication/logical/worker.c
@@ -126,7 +126,7 @@ static void reread_subscription(void);
* changes coming to the main apply worker during the sync of a table.
*
* Note we need to do smaller or equals comparison for SYNCDONE state because
- * it might hold position of end of intitial slot consistent point WAL
+ * it might hold position of end of initial slot consistent point WAL
* record + 1 (ie start of next record) and next record can be COMMIT of
* transaction we are now processing (which is what we set remote_final_lsn
* to in apply_handle_begin).