| 239 | } |
| 240 | |
| 241 | void test_procCall() { |
| 242 | const char **queries = array_new(const char *, 1); |
| 243 | array_append(queries, |
| 244 | "CALL db.idx.fulltext.queryNodes('fruit', 'Orange*') YIELD node RETURN node"); |
| 245 | |
| 246 | validate_query_plans_clone(queries); |
| 247 | array_free(queries); |
| 248 | } |
| 249 | |
| 250 | void test_unwind() { |
| 251 | const char **queries = array_new(const char *, 1); |
nothing calls this directly
no test coverage detected