Skip to content

Commit

Permalink
Release fixes
Browse files Browse the repository at this point in the history
- Remove `time_bucket_ng`.  We do not include it in this release.
- Add `const` to avoid build error.
  • Loading branch information
mkindahl committed Jun 29, 2021
1 parent e3f9e35 commit 8f2e19c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion cmake/ScriptFiles.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ set(SOURCE_FILES
ddl_triggers.sql
bookend.sql
time_bucket.sql
time_bucket_ng.sql
version.sql
size_utils.sql
histogram.sql
Expand Down
2 changes: 1 addition & 1 deletion tsl/src/continuous_aggs/job.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
static Interval *
continuous_agg_job_get_default_schedule_interval(int32 raw_table_id, int64 bucket_width)
{
Dimension *dim;
const Dimension *dim;
Interval *default_schedule_interval = DEFAULT_SCHEDULE_INTERVAL;
Hypertable *ht = ts_hypertable_get_by_id(raw_table_id);
Oid partition_type;
Expand Down

0 comments on commit 8f2e19c

Please sign in to comment.