Skip to content

Commit

Permalink
Adding a test with group by
Browse files Browse the repository at this point in the history
  • Loading branch information
Dtenwolde committed Mar 4, 2024
1 parent 6755a5e commit 7aac01b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/sql/optional_columns.test
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ query I
8796093022237

query I
-SELECT p_id FROM GRAPH_TABLE (snb MATCH (p:Person) COLUMNS (p.id as p_id)) limit 10;
-SELECT p_id FROM GRAPH_TABLE (snb MATCH (p:Person) COLUMNS (p.id as p_id,)) limit 10;
----
14
16
Expand Down Expand Up @@ -81,3 +81,8 @@ query II
6597069766702 Alejandro
8796093022234 Rahul
8796093022237 Lei

query I
-SELECT count(*) FROM GRAPH_TABLE (snb MATCH (p:Person)) GROUP BY ALL limit 10;
----
50

0 comments on commit 7aac01b

Please sign in to comment.