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

Make EDGE TABLE in Property graph definition optional #83

Closed Dtenwolde closed 9 months ago

Dtenwolde commented 9 months ago

According to the specification, the edge tables clause is optional, See section 11.19 <property graph definition>

<property graph content> ::=
  <vertex tables clause> [ <edge tables clause> ]

The vertex table clause is not optional

The following property graph definition should be allowed:

CREATE PROPERTY GRAPH snb
VERTEX TABLES (Message);