Mercurial > hg-stable
changeset 51829:87a8190e66fe
manifest: use read_any_fast_delta in changectx
The new API is clearer but also more expressive. It allow to detect case where
we did return a full read and populated the associated cache. Saving time!
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Thu, 01 Aug 2024 13:42:34 +0200 |
parents | e1fd715df257 |
children | 7e5ea2a0c3ef |
files | mercurial/context.py |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/context.py Thu Aug 01 13:40:46 2024 +0200 +++ b/mercurial/context.py Thu Aug 01 13:42:34 2024 +0200 @@ -541,7 +541,10 @@ @propertycache def _manifestdelta(self): - return self._manifestctx.readdelta() + base, delta = self._manifestctx.read_any_fast_delta() + if base is None: + self._manifest = delta + return delta @propertycache def _parents(self):