diff --git a/tests/cql/CqlQueryTests.xml b/tests/cql/CqlQueryTests.xml index c7ce167..2504fed 100644 --- a/tests/cql/CqlQueryTests.xml +++ b/tests/cql/CqlQueryTests.xml @@ -20,6 +20,69 @@ {{ A: 2, B: 5 }, { A: 2, B: 6 }, { A: 3, B: 5 }, { A: 3, B: 6 }} + + + + + + ({1, 2, 3, 4, 5}) N where N > 3 + {4, 5} + + + + + ({1, 2, 3}) N where N > 10 + {} + + + + + + + + ({1, 2, 3}) N let Y: N + 1 return Y + {2, 3, 4} + + + + + + + + ({1, 2, 3}) N return N * 2 + {2, 4, 6} + + + + + ({1, 1, 2, 2, 3}) N return N + {1, 2, 3} + + + + + ({1, 1, 2, 2, 3}) N return all N + {1, 1, 2, 2, 3} + + + + + + + + ({1, 2, 3}) A with ({2, 3, 4}) B such that A = B + {2, 3} + + + + + + + + ({1, 2, 3}) A without ({2, 3, 4}) B such that A = B + {1} + +