From f6cab43fde3c043ecf45505df1b9acb2b34f7d80 Mon Sep 17 00:00:00 2001 From: dtenwolde Date: Thu, 14 Nov 2024 11:52:42 +0100 Subject: [PATCH] Extend the test with more path length and full path --- test/sql/path_finding/edgeless_graph.test | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/test/sql/path_finding/edgeless_graph.test b/test/sql/path_finding/edgeless_graph.test index ec613d71..8c7717ba 100644 --- a/test/sql/path_finding/edgeless_graph.test +++ b/test/sql/path_finding/edgeless_graph.test @@ -21,12 +21,9 @@ statement ok LABEL E ); -query II +query IIIII -FROM GRAPH_TABLE(testgraph MATCH p = ANY SHORTEST (n1:N)-[e:E]-> * (n2:N) - COLUMNS (n1.id, edges(p) AS path_edges) + COLUMNS (n1.id, n2.id, element_id(p), edges(p) AS path_edges, path_length(p)) ); ----- -1 [] -2 [] -3 [] \ No newline at end of file +---- \ No newline at end of file