Continous aggregate creates chunks of 1800 days

When creating a continous aggregate with WITH NO DATA and time_bucket('1 day'::interval, tf."Timestamp", 'Europe/Paris') AS "Timestamp" I noticed that it creates chunk size of 1800 days
even if I run the below before I start filling data

SELECT set_chunk_time_interval((materialization_hypertable_schema || ‘.’||materialization_hypertable_name)::regclass, INTERVAL ‘30 days’)
from timescaledb_information.continuous_aggregates
where view_name = ‘DailyCagg’;

Hi @pantonis, as you described, it should work.

Can you please fill out an issue on GitHub with a reproducible example?