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 LABEL <label> optional #80

Closed Dtenwolde closed 9 months ago

Dtenwolde commented 9 months ago

It is quite tedious and redundant to write

VERTEX TABLES (
Person LABEL Person
)

Instead, I propose to make the label keyword optional, Oracle 23c already allows this. It reduces typing when creating the property graph. If the label is omitted, it will be equal to the table name, otherwise it will be the label specified

Dtenwolde commented 9 months ago

Partially same as #41