tests/test-revset.t
changeset 14153 f8047a059ca0
parent 14098 9f5a0acb0056
child 14650 93731b3efd0d
equal deleted inserted replaced
14152:00121103546a 14153:f8047a059ca0
   433   $ try 'rs(2 or 3, date)'
   433   $ try 'rs(2 or 3, date)'
   434   ('func', ('symbol', 'rs'), ('list', ('or', ('symbol', '2'), ('symbol', '3')), ('symbol', 'date')))
   434   ('func', ('symbol', 'rs'), ('list', ('or', ('symbol', '2'), ('symbol', '3')), ('symbol', 'date')))
   435   ('func', ('symbol', 'reverse'), ('func', ('symbol', 'sort'), ('list', ('or', ('symbol', '2'), ('symbol', '3')), ('symbol', 'date'))))
   435   ('func', ('symbol', 'reverse'), ('func', ('symbol', 'sort'), ('list', ('or', ('symbol', '2'), ('symbol', '3')), ('symbol', 'date'))))
   436   3
   436   3
   437   2
   437   2
       
   438 
       
   439 issue2549 - correct optimizations
       
   440 
       
   441   $ log 'limit(1 or 2 or 3, 2) and not 2'
       
   442   1
       
   443   $ log 'max(1 or 2) and not 2'
       
   444   $ log 'min(1 or 2) and not 1'
       
   445   $ log 'last(1 or 2, 1) and not 2'