From: Fujii Masao Date: Tue, 15 Sep 2015 14:38:01 +0000 (+0900) Subject: Fix comment regarding the meaning of infinity for timeline history entry X-Git-Tag: REL9_6_BETA1~1365 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=05ec71eea265622e1a311c9de3d3b186924e736a;p=postgresql.git Fix comment regarding the meaning of infinity for timeline history entry Michael Paquier --- diff --git a/src/include/access/timeline.h b/src/include/access/timeline.h index 2b62a56aa0e..01437c04bc0 100644 --- a/src/include/access/timeline.h +++ b/src/include/access/timeline.h @@ -26,7 +26,8 @@ typedef struct { TimeLineID tli; XLogRecPtr begin; /* inclusive */ - XLogRecPtr end; /* exclusive, 0 means infinity */ + XLogRecPtr end; /* exclusive, InvalidXLogRecPtr means + * infinity */ } TimeLineHistoryEntry; extern List *readTimeLineHistory(TimeLineID targetTLI);