Munmud commented on issue #1032:
URL: https://github.com/apache/age/issues/1032#issuecomment-1634335147
ag_label tables should not be empty.
'When you create a graph using the command as follow
```sql
SELECT create_graph('graph_name') ;
```
The default behaviour is that it creats a graph where default vertex is
`_ag_label_vertex`and default edge is `_ag_label_edge`
You can check them by the command
```sql
SELECT table_catalog, table_schema, table_name, table_type
FROM information_schema.tables
WHERE table_schema = 'graph_name'
ORDER BY table_name ASC;
```
You can check the label by following commad
```sql
select * from ag_catalog.ag_label;
```
Can you please share more details from where your are trying to restore
database ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]