cwida / duckpgq-extension

DuckDB extension that adds support for SQL/PGQ
https://duckpgq.notion.site/b8ac652667964f958bfada1c3e53f1bb?v=3b47a8d44bdf4e0c8b503bf23f1b76f2
MIT License
86 stars 7 forks source link

Allow path finding on edgeless graphs #164

Closed Dtenwolde closed 1 week ago

Dtenwolde commented 1 week ago

Fixes #163

With an edgeless graph, we don't "initialize" the edge array in the CSR, because there is nothing to initialize. This caused an error to be thrown when doing the path-finding UDFs but that error was unnecessary. This PR allows the path-finding to be done on the edgeless graph.