I'm trying to display hypertable information but can't seem to access the information table.
This request succeeds
select * from _timescaledb_catalog.hypertable;
But this one doesn't, says the table doesn't exist:
select * from timescaledb_information.hypertable;
As expected, creating a hypertable doesn't make any difference.
The former command was found in https://github.com/timescale/timescaledb/issues/648 and I would understand if it was obsolete as the user refers to the 0.10 docs.
The latter comes from the docs: https://docs.timescale.com/latest/api#utilities so it should work.
I'm using Timescale DB 2.2.0 (official Timescale repos) with PostgreSQL 11 (Debian repos).
_timescaledb_catalog
but nottimescaledb_information
. – Neogaea