D7481: localrepo: recognize trivial "null" queries in `anyrev`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Fri Nov 22 09:21:41 UTC 2019
marmoute created this revision.
Herald added subscribers: mercurial-devel, mjpieters.
Herald added a reviewer: hg-reviewers.
REVISION SUMMARY
Bypassing the revset logic for trivial "null" queries means we can avoid to
trigger the filtering logic in some cases.
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D7481
AFFECTED FILES
mercurial/localrepo.py
tests/test-repo-filters-tiptoe.t
CHANGE DETAILS
diff --git a/tests/test-repo-filters-tiptoe.t b/tests/test-repo-filters-tiptoe.t
--- a/tests/test-repo-filters-tiptoe.t
+++ b/tests/test-repo-filters-tiptoe.t
@@ -49,5 +49,4 @@
$ hg init test-repo
$ cd test-repo
$ hg log -r null -T "{node}\n"
- debug.filters: computing revision filter for "visible"
0000000000000000000000000000000000000000
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -1652,6 +1652,8 @@
definitions overriding user aliases, set ``localalias`` to
``{name: definitionstring}``.
'''
+ if specs == [b'null']:
+ return revset.baseset([nullrev])
if user:
m = revset.matchany(
self.ui,
To: marmoute, #hg-reviewers
Cc: mjpieters, mercurial-devel
More information about the Mercurial-devel
mailing list