Closed
Bug 410873
Opened 17 years ago
Closed 13 years ago
Dropping indexes sometimes needs to drop Foreign Keys
Categories
(Bugzilla :: Database, defect, P1)
Tracking
()
RESOLVED
FIXED
Bugzilla 4.2
People
(Reporter: altlist, Assigned: LpSolit)
References
(Blocks 1 open bug)
Details
(Whiteboard: [Fixed by blocker])
+++ This bug was initially created as a clone of Bug #328904 +++
Bug 328904, comment #44 highlights a problem with dropping an index. MySQL won't allow this until the foreign key is drop and it doesn't sound like MySQL supports this automatically. Some details can be found at the MySQL ticket system, http://bugs.mysql.com/bug.php?id=21395.
For example, if I want to delete profiles_activity_fieldid_idx, I have to do something like this.
$dbh->do('ALTER TABLE DROP FOREIGN KEY
fk_profiles_activity_fieldid_fielddefs_id');
$dbh->bz_drop_index('profiles_activity',
'profiles_activity_fieldid_idx');
So I think Bugzilla has to do this until MySQL does this automatically.
Comment 1•17 years ago
|
||
Bugzilla already supports dropping FKs, but this is a difficult circumstance, because we don't know what index the FKs are depending on.
In the case where an FK requires an index but Bugzilla itself no longer requires that index, we should drop the index, then drop and re-create the FK, so that it gets its default index name.
Summary: Bugzilla needs to support deleting foreign keys (aka constraints?) → Dropping indexes sometimes needs to drop Foreign Keys
Updated•17 years ago
|
Severity: enhancement → normal
Priority: -- → P1
Target Milestone: --- → Bugzilla 3.2
![]() |
Assignee | |
Comment 2•15 years ago
|
||
Bugzilla 3.2 is restricted to security bugs only. Moreover, this bug is either assigned to nobody or got no traction for several months now. Rather than retargetting it at each new release, I'm clearing the target milestone and the bug will be retargetted to some sensible release when someone starts fixing this bug for real (Bugzilla 3.8 more likely).
Target Milestone: Bugzilla 3.2 → ---
Updated•15 years ago
|
Assignee: database → mkanat
Target Milestone: --- → Bugzilla 3.8
![]() |
Assignee | |
Comment 3•13 years ago
|
||
Fixed in Bugzilla 4.2 by bug 451735.
Assignee: mkanat → LpSolit
Status: NEW → RESOLVED
Closed: 13 years ago
Depends on: 451735
Resolution: --- → FIXED
Whiteboard: [Fixed by blocker]
Target Milestone: Bugzilla 4.0 → Bugzilla 4.2
You need to log in
before you can comment on or make changes to this bug.
Description
•