revset: make optimize() reject unknown operators
authorYuya Nishihara <yuya@tcha.org>
Sun, 07 Aug 2016 15:01:42 +0900
changeset 29900 104914b03b83
parent 29899 b1ebc767563d
child 29901 90a1886a203b
revset: make optimize() reject unknown operators This should have caught the bug of 'keyvalue' operator fixed at 5004ef47f437. The catch-all pattern is useless since optimize() should be aware of all known operators.
mercurial/revset.py
--- a/mercurial/revset.py	Thu Sep 01 22:06:42 2016 +0200
+++ b/mercurial/revset.py	Sun Aug 07 15:01:42 2016 +0900
@@ -2463,7 +2463,7 @@
         else:
             w = 1
         return w + wa, (op, x[1], ta)
-    return 1, x
+    raise ValueError('invalid operator %r' % op)
 
 def optimize(tree):
     _weight, newtree = _optimize(tree, small=True)