1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Fix typo in recent commit

Typo in 9c7d06d606

Reported-by: Masahiko Sawada
This commit is contained in:
Simon Riggs
2018-01-19 06:36:17 +00:00
parent a228e44ce4
commit 4e54dd2e0a

View File

@ -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());