diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2018-01-19 06:36:17 +0000 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2018-01-19 06:36:17 +0000 |
commit | 4e54dd2e0a750352ce2a5c45d1cc9183e887eec3 (patch) | |
tree | 9125df16a1257efaea27d2948fddada7ba09c9d0 | |
parent | a228e44ce4a2bfd1de3764763039cfcb009d7864 (diff) |
Fix typo in recent commit
Typo in 9c7d06d60680c7f00d931233873dee81fdb311c6
Reported-by: Masahiko Sawada
-rw-r--r-- | src/backend/replication/slotfuncs.c | 2 |
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()); |