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

Explain select pgq query leads to segfault #7

Closed Dtenwolde closed 10 months ago

Dtenwolde commented 1 year ago
-EXPLAIN SELECT study.name, study.school
FROM GRAPH_TABLE (pg
     MATCH
     (a:Person)-[s:StudyAt]->(b:School)
     WHERE a.name = 'Daniel'
     COLUMNS (a.name as name, b.name as school)
     ) study;

The following query leads to a segfault

Dtenwolde commented 10 months ago

Related to #66

Dtenwolde commented 10 months ago

Fixed as of https://github.com/cwida/duckpgq-extension/pull/71