We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
CREATE OR REPLACE PROCEDURE "refresh_all_continuous_aggregates"() LANGUAGE PLPGSQL AS $$ DECLARE "view_name_current" name; "view_name_list" name[]; BEGIN "view_name_list" := ARRAY( SELECT "view_name" FROM "timescaledb_information"."continuous_aggregates" ); FOREACH "view_name_current" IN ARRAY "view_name_list" LOOP RAISE info 'refresh_continuous_aggregate for %', "view_name_current"; CALL refresh_continuous_aggregate( format('"%s"', "view_name_current")::REGCLASS, window_start := '-infinity'::timestamptz, window_end := now() ); END LOOP; END;$$;
refresh all continuous aggregates
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What problem does the new feature solve?
What does the feature do?
refresh all continuous aggregates
The text was updated successfully, but these errors were encountered: