duckpgq-extension
duckpgq-extension copied to clipboard
Query fails when GetEntry is called
Following query fails:
-CREATE PROPERTY GRAPH pg3
VERTEX TABLES (
School LABEL School IN School_kind (Hogeschool, University)
)
EDGE TABLES (
Students SOURCE KEY ( src ) REFERENCES School ( id )
DESTINATION KEY ( dst ) REFERENCES Student ( id )
PROPERTIES ( createDate ) LABEL Knows
)
auto &table = catalog.GetEntry<TableCatalogEntry>(context, info->schema, edge_table->table_name);
leads to many recursive table function calls, eventually leading to a conversion error.