remove_continuous_aggregate_policy()
CommunityCommunity functions are available under Timescale Community Edition. Click to learn more.Remove the refresh policy from a continuous aggregate.
remove_continuous_aggregate_policy(continuous_aggregate REGCLASS,if_exists BOOL = NULL) RETURNS VOID
Note
To view the existing continuous aggregate policies, see the policies informational view.
Name | Type | Description |
---|---|---|
continuous_aggregate | REGCLASS | Name of the continuous aggregate the policy should be removed from |
Name | Type | Description |
---|---|---|
if_exists (formerly if_not_exists ) | BOOL | When true, prints a warning instead of erroring if the policy doesn't exist. Defaults to false. Renamed in TimescaleDB 2.8. |
Remove the refresh policy from the cpu_view
continuous aggregate:
SELECT remove_continuous_aggregate_policy('cpu_view');
Keywords
Found an issue on this page?Report an issue or Edit this page in GitHub.