| 182 | } |
| 183 | |
| 184 | void test_deleteClause() { |
| 185 | const char **queries = array_new(const char *, 2); |
| 186 | array_append(queries, "MATCH (n) DELETE n"); |
| 187 | array_append(queries, "MATCH ()-[e]->() DELETE e"); |
| 188 | |
| 189 | validate_query_plans_clone(queries); |
| 190 | array_free(queries); |
| 191 | } |
| 192 | |
| 193 | void test_mergeClause() { |
| 194 | const char **queries = array_new(const char *, 9); |
nothing calls this directly
no test coverage detected