| 209 | } |
| 210 | |
| 211 | void test_cartesProduct() { |
| 212 | const char **queries = array_new(const char *, 1); |
| 213 | array_append(queries, "MATCH (a), (b) RETURN a, b"); |
| 214 | |
| 215 | validate_query_plans_clone(queries); |
| 216 | array_free(queries); |
| 217 | } |
| 218 | |
| 219 | void test_skipLimitSort() { |
| 220 | const char **queries = array_new(const char *, 5); |
nothing calls this directly
no test coverage detected