summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Riggs <simon@2ndQuadrant.com>2018-01-19 06:36:17 +0000
committerSimon Riggs <simon@2ndQuadrant.com>2018-01-19 06:36:17 +0000
commit4e54dd2e0a750352ce2a5c45d1cc9183e887eec3 (patch)
tree9125df16a1257efaea27d2948fddada7ba09c9d0
parenta228e44ce4a2bfd1de3764763039cfcb009d7864 (diff)
Fix typo in recent commit
Typo in 9c7d06d60680c7f00d931233873dee81fdb311c6 Reported-by: Masahiko Sawada
-rw-r--r--src/backend/replication/slotfuncs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/slotfuncs.c b/src/backend/replication/slotfuncs.c
index 93d2e20f760..cf2195bc93f 100644
--- a/src/backend/replication/slotfuncs.c
+++ b/src/backend/replication/slotfuncs.c
@@ -462,7 +462,7 @@ pg_replication_slot_advance(PG_FUNCTION_ARGS)
/*
* We can't move slot past what's been flushed/replayed so clamp the
- * target possition accordingly.
+ * target position accordingly.
*/
if (!RecoveryInProgress())
moveto = Min(moveto, GetFlushRecPtr());