| 248 | } |
| 249 | |
| 250 | void test_unwind() { |
| 251 | const char **queries = array_new(const char *, 1); |
| 252 | array_append(queries, "UNWIND [1,2,3] as x RETURN x"); |
| 253 | |
| 254 | validate_query_plans_clone(queries); |
| 255 | array_free(queries); |
| 256 | } |
| 257 | |
| 258 | void test_with() { |
| 259 | const char **queries = array_new(const char *, 6); |
nothing calls this directly
no test coverage detected