From aa8dfa497800317bbe490356a292cdcb14d3c7b8 Mon Sep 17 00:00:00 2001 From: dtenwolde Date: Fri, 23 Feb 2024 13:57:54 +0100 Subject: [PATCH] Remove condition --- test/sql/path-finding/complex_matching.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sql/path-finding/complex_matching.test b/test/sql/path-finding/complex_matching.test index 455e550f..411f8479 100644 --- a/test/sql/path-finding/complex_matching.test +++ b/test/sql/path-finding/complex_matching.test @@ -481,7 +481,7 @@ Parser Error: syntax error at or near "{" query IIII -FROM GRAPH_TABLE (snb - MATCH p = (a:Person where a.id = 16)-[k:knows]->{1,3}(b:Person where) + MATCH p = (a:Person where a.id = 16)-[k:knows]->{1,3}(b:Person) COLUMNS (element_id(p), a.id, b.id, path_length(p)) ) tmp; ----