Skip to content

Cascade auto_canceled_by_partition_id to canceled jobs

What does this MR do and why?

This value will be used to update the foreign key between ci_pipelines and p_ci_builds after ci_pipelines will be partitioned and its primary key will be composed:

 "fk_a2141b1522" FOREIGN KEY (auto_canceled_by_id) REFERENCES ci_pipelines(id) ON DELETE SET NULL

Will become:

 "fk_a2141b1522" FOREIGN KEY (auto_canceled_by_id, auto_canceled_by_partition_id) REFERENCES ci_pipelines(id, partition_id) ON DELETE SET NULL

Related to #427882 (closed)

Screenshots or screen recordings

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

Before After

How to set up and validate locally

Numbered steps to set up and validate the change are strongly suggested.

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Edited by Marius Bobin

Merge request reports