Done
Details
Assignee
UnassignedUnassignedReporter
Iwo PanowiczIwo PanowiczPriority
LowComponents
Affects versions
Fix versions
Needs Review
YesStory Points
0Sprint
None
Details
Details
Assignee
Unassigned
UnassignedReporter
Iwo Panowicz
Iwo PanowiczPriority
Components
Affects versions
Fix versions
Needs Review
Yes
Story Points
0
Sprint
None
Smart Checklist
Smart Checklist
Smart Checklist
Created April 10, 2020 at 9:45 AM
Updated February 29, 2024 at 9:00 PM
Resolved April 16, 2020 at 7:15 PM
The maxium possible length of a constraint name is 64. When --alter-foreign-keys-method=rebuild_constraints used, pt-online-schema-change just adds `_`-character following the below logic:
if ($fk =~ /^__/) { ($new_fk = $fk) =~ s/^__//; } else { $new_fk = '_'.$fk; }