[Request] [+ ] D10658: revlogv2: no longer attempt to use inline for new revlog
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Tue May 4 14:20:41 UTC 2021
marmoute created this revision.
Herald added a reviewer: indygreg.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
revlogv2 steered away for the inline feature.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D10658
AFFECTED FILES
mercurial/revlog.py
tests/test-revlog-v2.t
CHANGE DETAILS
diff --git a/tests/test-revlog-v2.t b/tests/test-revlog-v2.t
--- a/tests/test-revlog-v2.t
+++ b/tests/test-revlog-v2.t
@@ -61,8 +61,8 @@
$ f --hexdump --bytes 4 .hg/store/00changelog.i
.hg/store/00changelog.i:
- 0000: 00 01 de ad |....|
+ 0000: 00 00 de ad |....|
$ f --hexdump --bytes 4 .hg/store/data/foo.i
.hg/store/data/foo.i:
- 0000: 00 01 de ad |....|
+ 0000: 00 00 de ad |....|
diff --git a/mercurial/revlog.py b/mercurial/revlog.py
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -458,7 +458,7 @@
opts = self.opener.options
if b'revlogv2' in opts:
- new_header = REVLOGV2 | FLAG_INLINE_DATA
+ new_header = REVLOGV2
elif b'revlogv1' in opts:
new_header = REVLOGV1 | FLAG_INLINE_DATA
if b'generaldelta' in opts:
To: marmoute, indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210504/5d91f1f7/attachment-0001.html>
More information about the Mercurial-patches
mailing list