Skip to content

Commit

Permalink
Adding explain analyze test
Browse files Browse the repository at this point in the history
  • Loading branch information
Dtenwolde committed Jan 19, 2024
1 parent 7cf5d68 commit 9a6f526
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/sql/explain_duckpgq.test
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,12 @@ statement ok
) tmp
ORDER BY creationDate DESC, Messageid ASC
LIMIT 20;

#IC 2
statement ok
-EXPLAIN ANALYZE FROM GRAPH_TABLE (snb
MATCH (a:Person WHERE a.id = 17592186044461)-[k:knows]-(b:Person)<-[au:hasAuthor]-(m:message WHERE m.creationDate < '2010-10-16')
COLUMNS (a.id, a.firstName, a.lastName, m.id as messageId, coalesce(m.imageFile, m.content), m.creationDate)
) tmp
ORDER BY creationDate DESC, Messageid ASC
LIMIT 20;

0 comments on commit 9a6f526

Please sign in to comment.