duckpgq-extension
duckpgq-extension copied to clipboard
DuckDB extension that adds support for SQL/PGQ
We should write what the extension does, how the new syntax looks like, etc. Perhaps also a logo
See #108 for instructions, there have also been updates to the extension-template & extension-ci-tools
This PR introduces the path-finding operator developed by Pingan Ren during his [MSc thesis](https://homepages.cwi.nl/~boncz/msc/2024-PinganRen.pdf). It doesn't work with the PGQ syntax yet but will be added in future commits. The...
Hi, I would like this extension to be supported on windows since I am on windows.
This issue will be used as a central place to gather graph algorithms that can/will be implemented in DuckPGQ (without sticking to a specific timeline). There are many graph algorithms,...
### What happens? A query with an * or + directly attached to the -> results in a syntax error. ### To Reproduce ```sql create table student(id INT); INSERT INTO...
### What happens? A segmentation fault occurs in pgq.y with the following query: ``` -FROM GRAPH_TABLE (g MATCH ANY SHORTEST p = (src:Student WHERE src.id = 10)-[k:knows]-> *(dst:Student) COLUMNS (element_id(p)...