The query following fails due to the edge table reference a non-existing vertex table. This is correct, however DuckDB then triggers an internal query: "SELECT database_oid AS seq, database_name AS name, path AS file FROM duckdb_databases() WHERE NOT internal ORDER BY 1". This includes the word path which has become a reserved keyword. Related to cwida/duckdb-pgq#86
-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
)
The query following fails due to the edge table reference a non-existing vertex table. This is correct, however DuckDB then triggers an internal query:
"SELECT database_oid AS seq, database_name AS name, path AS file FROM duckdb_databases() WHERE NOT internal ORDER BY 1"
. This includes the word path which has become a reserved keyword. Related to cwida/duckdb-pgq#86