diff options
author | Fujii Masao | 2015-09-15 14:38:01 +0000 |
---|---|---|
committer | Fujii Masao | 2015-09-15 14:38:01 +0000 |
commit | 05ec71eea265622e1a311c9de3d3b186924e736a (patch) | |
tree | 18cd2cbb166bb0b4a2252384b7c593a15c29a688 | |
parent | 10fbb79f1a918124f39fc8a87b8d19db3712202f (diff) |
Fix comment regarding the meaning of infinity for timeline history entry
Michael Paquier
-rw-r--r-- | src/include/access/timeline.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/access/timeline.h b/src/include/access/timeline.h index 2b62a56aa0..01437c04bc 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); |