[Request] [+ ] D10544: revlog: highlight current incompatibility in `rewrite_sidedata`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sun May 2 13:29:50 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
See comment for details. We will need to fix the test coverage when this
incompatibility is lifted.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D10544
AFFECTED FILES
mercurial/revlog.py
CHANGE DETAILS
diff --git a/mercurial/revlog.py b/mercurial/revlog.py
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -3211,6 +3211,18 @@
# Nothing to generate or remove
return
+ # changelog implement some "delayed" writing mechanism that assume that
+ # all index data is writen in append mode and is therefor incompatible
+ # with the seeked write done in this method. The use of such "delayed"
+ # writing will soon be removed for revlog version that support side
+ # data, so for now, we only keep this simple assert to highlight the
+ # situation.
+ delayed = getattr(self, '_delayed', False)
+ diverted = getattr(self, '_divert', False)
+ if delayed and not diverted:
+ msg = "cannot rewrite_sidedata of a delayed revlog"
+ raise error.ProgrammingError(msg)
+
new_entries = []
# append the new sidedata
with self._datafp(b'a+') as fp:
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/20210502/f63c8fcd/attachment-0001.html>
More information about the Mercurial-patches
mailing list