This branch removes the assumption of order from queries without a sort() filter. It also reorganizes the tests so that tests with identical results are grouped together. E.g. .offset(x).limit(y) should produce the same result as .limit(y).offset(x), since offset is always applied before limit. This branch builds on lazy-queryset-eval (PR #83).
This branch removes the assumption of order from queries without a sort() filter. It also reorganizes the tests so that tests with identical results are grouped together. E.g. .offset(x).limit(y) should produce the same result as .limit(y).offset(x), since offset is always applied before limit. This branch builds on lazy-queryset-eval (PR #83).