8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24e1af5 commit 552a9d3Copy full SHA for 552a9d3
ansible/files/admin_api_scripts/pg_upgrade_scripts/complete.sh
@@ -64,7 +64,7 @@ EOF
64
RECREATE_PG_CRON_QUERY=$(cat <<EOF
65
begin;
66
create temporary table cron_job as select * from cron.job;
67
- 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;
68
drop extension pg_cron;
69
create extension pg_cron schema pg_catalog;
70
insert into cron.job select * from cron_job;
0 commit comments