From 4e54dd2e0a750352ce2a5c45d1cc9183e887eec3 Mon Sep 17 00:00:00 2001 From: Simon Riggs Date: Fri, 19 Jan 2018 06:36:17 +0000 Subject: [PATCH] Fix typo in recent commit Typo in 9c7d06d60680c7f00d931233873dee81fdb311c6 Reported-by: Masahiko Sawada --- src/backend/replication/slotfuncs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/replication/slotfuncs.c b/src/backend/replication/slotfuncs.c index 93d2e20f76..cf2195bc93 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());