I have a Timescale database that someone else created.
- How do I determine if
create_hypertablewas called on a table ?
For now I use this, but there must be a better way:
SELECT * FROM hypertable_relation_size('public.data');
- And if
create_hypertablewas called on a table, which parameters (including chunk_time_interval) were used when callingcreate_hypertable?
(In some cases there is a from_date and to_date)