duckpgq-extension icon indicating copy to clipboard operation
duckpgq-extension copied to clipboard

Query fails when GetEntry is called

Open Dtenwolde opened this issue 1 year ago • 0 comments

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.

Dtenwolde avatar Jun 28 '23 15:06 Dtenwolde