Typo in slotfuncs.c
Hi,
Attached patch for fixing a typo in slotfuncs.c
s/possition/position/
Regards,
--
Masahiko Sawada
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center
Attachments:
fix_typo_in_slotfuncs_c.patchapplication/octet-stream; name=fix_typo_in_slotfuncs_c.patchDownload
diff --git a/src/backend/replication/slotfuncs.c b/src/backend/replication/slotfuncs.c
index 93d2e20..cf2195b 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());
On 19 January 2018 at 05:38, Masahiko Sawada <sawada.mshk@gmail.com> wrote:
Hi,
Attached patch for fixing a typo in slotfuncs.c
s/possition/position/
Fixed, thanks.
--
Simon Riggs http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
On Fri, Jan 19, 2018 at 3:39 PM, Simon Riggs <simon@2ndquadrant.com> wrote:
On 19 January 2018 at 05:38, Masahiko Sawada <sawada.mshk@gmail.com> wrote:
Hi,
Attached patch for fixing a typo in slotfuncs.c
s/possition/position/
Fixed, thanks.
Thank you!
Regards,
--
Masahiko Sawada
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center