diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-04-26 12:04:44 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-04-26 12:07:11 -0400 |
commit | e495c1683f2c243f6769b34a009cf9c28526b555 (patch) | |
tree | 4412f09990752c33bd843c92aebdf83cee645ba6 /src/backend/replication/logical/tablesync.c | |
parent | 1f8b060121d654fbb08702752f63d251f5ce8088 (diff) | |
download | postgresql-e495c1683f2c243f6769b34a009cf9c28526b555.tar.gz postgresql-e495c1683f2c243f6769b34a009cf9c28526b555.zip |
Spelling fixes in code comments
Author: Euler Taveira <euler@timbira.com.br>
Diffstat (limited to 'src/backend/replication/logical/tablesync.c')
-rw-r--r-- | src/backend/replication/logical/tablesync.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/replication/logical/tablesync.c b/src/backend/replication/logical/tablesync.c index b4b48d92cf4..edd0adcb127 100644 --- a/src/backend/replication/logical/tablesync.c +++ b/src/backend/replication/logical/tablesync.c @@ -33,12 +33,12 @@ * When the desired state appears it will compare its position in the * stream with the SYNCWAIT position and based on that changes the * state to based on following rules: - * - if the apply is in front of the sync in the wal stream the new + * - if the apply is in front of the sync in the WAL stream the new * state is set to CATCHUP and apply loops until the sync process * catches up to the same LSN as apply - * - if the sync is in front of the apply in the wal stream the new + * - if the sync is in front of the apply in the WAL stream the new * state is set to SYNCDONE - * - if both apply and sync are at the same position in the wal stream + * - if both apply and sync are at the same position in the WAL stream * the state of the table is set to READY * - If the state was set to CATCHUP sync will read the stream and * apply changes until it catches up to the specified stream @@ -698,7 +698,7 @@ copy_table(Relation rel) /* * Start syncing the table in the sync worker. * - * The returned slot name is palloced in current memory context. + * The returned slot name is palloc'ed in current memory context. */ char * LogicalRepSyncTableStart(XLogRecPtr *origin_startpos) |