Skip to content

Commit

Permalink
UNCOMMITTED
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmp85 committed Sep 25, 2024
1 parent bfc8998 commit 861630c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion doc/timeseries.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ This list is somewhat ordered by likelihood of near-term delivery, or maybe diff
- Assorted "analytic" functions frequently associated with time-series workloads
- Periodic `REFRESH MATERIALIZED VIEW` — set schedules for background refresh of materialized views (useful for dashboarding, etc.)
- Roll-off to `TABLESPACE` — as data ages, it will be moved into a specified table space
- Use of "tiered storage", i.e. moving older partitions to be stored in S3 rather than on-disk
- Automatic `CLUSTER BY`/repack for non-live partitions
- Migration tools — adapters for existing time-scale installations to ease migration and promote best practices in new table configuration
- "Approximate" functions — maintain statistics within known error bounds without rescanning all data
Expand Down
3 changes: 3 additions & 0 deletions sql/timeseries.sql
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,9 @@ DECLARE
old_client_msg text;
old_log_msg text;
BEGIN
-- check that target_view_id is actually a view
-- check that target_view_id mentions only one table

-- get the original SQL definition of the view to be upgraded
SELECT pg_get_viewdef(target_view_id) INTO orig_view_sql;

Expand Down
2 changes: 1 addition & 1 deletion timeseries.control
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
comment = 'Convenience API for Tembo time series stack'
default_version = '0.1.5'
module_pathname = '$libdir/timeseries'
requires = 'columnar, pg_cron, pg_ivm, pg_partman'
requires = 'pg_cron, pg_ivm, pg_partman'

0 comments on commit 861630c

Please sign in to comment.