[Updated] D10782: revlog: use `self.sidedata` directly in `revlog.clone`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Mon Jun 7 09:23:00 UTC 2021
Closed by commit rHGfec306b05328: revlog: use `self.sidedata` directly in `revlog.clone` (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
This revision was not accepted when it landed; it landed in state "Needs Review".
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D10782?vs=28441&id=28485
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D10782/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D10782
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
@@ -3109,7 +3109,8 @@
cachedelta = None
rawtext = None
if deltareuse == self.DELTAREUSEFULLADD:
- text, sidedata = self._revisiondata(rev)
+ text = self._revisiondata(rev)[0]
+ sidedata = self.sidedata(rev)
if sidedata_helpers is not None:
(sidedata, new_flags) = sidedatautil.run_sidedata_helpers(
@@ -3137,7 +3138,8 @@
sidedata = None
if not cachedelta:
- rawtext, sidedata = self._revisiondata(rev)
+ rawtext = self._revisiondata(rev)[0]
+ sidedata = self.sidedata(rev)
if sidedata is None:
sidedata = self.sidedata(rev)
To: marmoute, indygreg, #hg-reviewers, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210607/76ad07f8/attachment.html>
More information about the Mercurial-patches
mailing list