comparison mercurial/help/internals/revlogs.txt @ 30499:22d05b53b0e8

help: clarify contents of revlog index The previous wording indicated that field at index 3 was the size of the decompressed chunk, not the size of the full revision text.
author Gregory Szorc <gregory.szorc@gmail.com>
date Tue, 22 Nov 2016 18:13:02 -0800
parents aba2bb2a6d0f
children 726d30a6d89b
comparison
equal deleted inserted replaced
30498:d7a05d8351d0 30499:22d05b53b0e8
90 6-7 (2 bytes) 90 6-7 (2 bytes)
91 Bit flags impacting revision behavior. 91 Bit flags impacting revision behavior.
92 8-11 (4 bytes) 92 8-11 (4 bytes)
93 Compressed length of revision data / chunk as stored in revlog. 93 Compressed length of revision data / chunk as stored in revlog.
94 12-15 (4 bytes) 94 12-15 (4 bytes)
95 Uncompressed length of revision data / chunk. 95 Uncompressed length of revision data. This is the size of the full
96 revision data, not the size of the chunk post decompression.
96 16-19 (4 bytes) 97 16-19 (4 bytes)
97 Base or previous revision this revision's delta was produced against. 98 Base or previous revision this revision's delta was produced against.
98 -1 means this revision holds full text (as opposed to a delta). 99 -1 means this revision holds full text (as opposed to a delta).
99 For generaldelta repos, this is the previous revision in the delta 100 For generaldelta repos, this is the previous revision in the delta
100 chain. For non-generaldelta repos, this is the base or first 101 chain. For non-generaldelta repos, this is the base or first