Mercurial > hg-stable
diff mercurial/localrepo.py @ 43778:09409a3fc3cc
localrepo: recognize trivial "null" queries in `anyrev`
Bypassing the revset logic for trivial "null" queries means we can avoid to
trigger the filtering logic in some cases.
Differential Revision: https://phab.mercurial-scm.org/D7481
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Sun, 17 Nov 2019 07:25:14 +0100 |
parents | 998dd6a8fd98 |
children | b38cd2e6e12d |
line wrap: on
line diff
--- a/mercurial/localrepo.py Sun Nov 17 06:36:50 2019 +0100 +++ b/mercurial/localrepo.py Sun Nov 17 07:25:14 2019 +0100 @@ -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,