8000 fix: only keep 1mil pg_cron job run details during pg_upgrade by pcnc · Pull Request #1174 · supabase/postgres · GitHub
[go: up one dir, main page]

Skip to content

fix: only keep 1mil pg_cron job run details during pg_upgrade #1174

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

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ EOF
RECREATE_PG_CRON_QUERY=$(cat <<EOF
begin;
create temporary table cron_job as select * from cron.job;
create temporary table cron_job_run_details as select * from cron.job_run_details;
create temporary table cron_job_run_details as select * from cron.job_run_details order by start_time desc limit 1000000;
drop extension pg_cron;
create extension pg_cron schema pg_catalog;
insert into cron.job select * from cron_job;
Expand Down
417B
Loading
0