Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziomello committed Mar 5, 2025
1 parent 3e2be8b commit 81f49e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tsl/src/continuous_aggs/invalidation.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ extern InvalidationStore *
invalidation_process_cagg_log(const ContinuousAgg *cagg, const InternalTimeRange *refresh_window,
const CaggsInfo *all_caggs_info, const long max_materializations,
bool *do_merged_refresh, InternalTimeRange *ret_merged_refresh_window,
const CaggRefreshContext callctx, bool force);
const CaggRefreshContext context, bool force);

extern void invalidation_store_free(InvalidationStore *store);
2 changes: 1 addition & 1 deletion tsl/src/continuous_aggs/refresh.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ extern void continuous_agg_calculate_merged_refresh_window(
InternalTimeRange *merged_refresh_window, const CaggRefreshContext callctx);
extern void continuous_agg_refresh_internal(const ContinuousAgg *cagg,
const InternalTimeRange *refresh_window,
const CaggRefreshContext callctx,
const CaggRefreshContext context,
const bool start_isnull, const bool end_isnull,
bool force);
extern List *continuous_agg_split_refresh_window(ContinuousAgg *cagg,
Expand Down
4 changes: 2 additions & 2 deletions tsl/test/expected/cagg_refresh_policy_incremental.out
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ SELECT
t, d, 10
FROM
generate_series(
'2025-02-05 00:00:00-03',
'2025-03-05 00:00:00-03',
'2025-02-05 00:00:00-03',
'2025-03-05 00:00:00-03',
'1 hour'::interval) AS t,
generate_series(1,5) AS d;
CREATE MATERIALIZED VIEW conditions_by_day
Expand Down

0 comments on commit 81f49e3

Please sign in to comment.