diff --git a/tsl/test/expected/bgw_db_scheduler_fixed.out b/tsl/test/expected/bgw_db_scheduler_fixed.out index 0c87ca0b9..67c452fe8 100644 --- a/tsl/test/expected/bgw_db_scheduler_fixed.out +++ b/tsl/test/expected/bgw_db_scheduler_fixed.out @@ -1626,7 +1626,7 @@ INSERT INTO test_table_scheduler values (now() - interval '4 years', 1, 1), (now() - interval '2 years', 1, 1), (now() - interval '1 years', 2, 2), -(now() - interval '4 months', 3, 3), +(now() - interval '6 months', 3, 3), (now() - interval '3 months', 4, 4); CREATE MATERIALIZED VIEW cagg_scheduler(time, avg_a) WITH (timescaledb.continuous) AS diff --git a/tsl/test/sql/bgw_db_scheduler_fixed.sql b/tsl/test/sql/bgw_db_scheduler_fixed.sql index a91857755..f320558f5 100644 --- a/tsl/test/sql/bgw_db_scheduler_fixed.sql +++ b/tsl/test/sql/bgw_db_scheduler_fixed.sql @@ -703,7 +703,7 @@ INSERT INTO test_table_scheduler values (now() - interval '4 years', 1, 1), (now() - interval '2 years', 1, 1), (now() - interval '1 years', 2, 2), -(now() - interval '4 months', 3, 3), +(now() - interval '6 months', 3, 3), (now() - interval '3 months', 4, 4); CREATE MATERIALIZED VIEW cagg_scheduler(time, avg_a)