Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused bucket_width argument #3309

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions tsl/src/continuous_aggs/materialize.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ void
continuous_agg_update_materialization(SchemaAndName partial_view,
SchemaAndName materialization_table, Name time_column_name,
InternalTimeRange new_materialization_range,
InternalTimeRange invalidation_range, int64 bucket_width,
int32 chunk_id)
InternalTimeRange invalidation_range, int32 chunk_id)
{
InternalTimeRange combined_materialization_range = new_materialization_range;
bool materialize_invalidations_separately = range_length(invalidation_range) > 0;
Expand Down
3 changes: 1 addition & 2 deletions tsl/src/continuous_aggs/materialize.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ void continuous_agg_update_materialization(SchemaAndName partial_view,
SchemaAndName materialization_table,
Name time_column_name,
InternalTimeRange new_materialization_range,
InternalTimeRange invalidation_range, int64 bucket_width,
int32 chunk_id);
InternalTimeRange invalidation_range, int32 chunk_id);

#endif /* TIMESCALEDB_TSL_CONTINUOUS_AGGS_MATERIALIZE_H */
1 change: 0 additions & 1 deletion tsl/src/continuous_aggs/refresh.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ continuous_agg_refresh_execute(const CaggRefreshState *refresh,
&time_dim->fd.column_name,
*bucketed_refresh_window,
unused_invalidation_range,
refresh->cagg.data.bucket_width,
chunk_id);
}

Expand Down