Commit 4e54dd2e authored by Simon Riggs's avatar Simon Riggs

Fix typo in recent commit

Typo in 9c7d06d6

Reported-by: Masahiko Sawada
parent a228e44c
...@@ -462,7 +462,7 @@ pg_replication_slot_advance(PG_FUNCTION_ARGS) ...@@ -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 * We can't move slot past what's been flushed/replayed so clamp the
* target possition accordingly. * target position accordingly.
*/ */
if (!RecoveryInProgress()) if (!RecoveryInProgress())
moveto = Min(moveto, GetFlushRecPtr()); moveto = Min(moveto, GetFlushRecPtr());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment