MJinH commented on issue #111:
URL: https://github.com/apache/age-viewer/issues/111#issuecomment-1396219270
If possible, could you run this query in your terminal and share the output
result?
```
SELECT * FROM (
SELECT c.relname AS label, n.oid as namespace_id, c.reltuples AS cnt
FROM pg_catalog.pg_class c
JOIN pg_catalog.pg_namespace n
ON n.oid = c.relnamespace
WHERE c.relkind = 'r'
AND n.nspname = 'goodreads_db'
) as q1
JOIN ag_graph as g ON q1.namespace_id = g.namespace
INNER JOIN ag_label as label
ON label.name = q1.label
AND label.graph = g.oid;
```
Thank you
--
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]