Opened 8 years ago

Closed 22 months ago

#27064 closed New feature (fixed)

Implement RenameIndex in a backwards compatible way

Reported by: Markus Holtermann Owned by: David Wobrock
Component: Migrations Version: dev
Severity: Normal Keywords:
Cc: Andrew Godwin, Akshesh Doshi, Adam Johnson, Ravi Teja P, David Wobrock Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In order to eventually deprecate index_together we need a way to deal with old projects that have unnamed indexes. This proves to be a non-trivial problem. Andrew and I came up with these things to consider.

  • RenameIndex(model, new_name, old_name=None, old_fields=None) where exactly one of old_name and old_field is given (old_name ^ old_fields)
  • If the old_name is given we use RENAME INDEX if available
  • Otherwise look at the state and drop existing indexes and create new the index with new name
  • On MySQL (or other DBs) that don't support RENAME INDEX, provide SQL query to look up index name from information_schema by field names and pass in to DROP INDEX.
  • If more than one index is found while identifying with field names, migrations must error out with an AmbiguityError
  • If the autodetector finds an old, unnamed index and a new, named one matching field signature, issue a RenameIndex operation
  • For backwards operations with unnamed old indexes, RenameIndex is a noop.

Change History (24)

comment:1 by Markus Holtermann, 8 years ago

Type: UncategorizedNew feature

comment:2 by Markus Holtermann, 8 years ago

Cc: Akshesh Doshi added

comment:3 by Markus Holtermann, 8 years ago

Cc: Andrew Godwin added; anr removed

comment:4 by Akshesh Doshi, 8 years ago

Is there a reason why we cannot just simply deprecate index_together.

My understanding is that the models file of the app will get modified from this

    class Meta:
        index_together = (('a', 'b'))

to this

    class Meta:
        indexes = [models.Index(fields=['a', 'b'])]

and everything should work fine (or not? Am I missing something?)

I need some help to see where RenameIndex comes into picture here.

comment:5 by Markus Holtermann, 7 years ago

I just noticed that I actually never commented here. So, the reason is explained here: https://code.djangoproject.com/ticket/27236#comment:9

comment:6 by Mariusz Felisiak, 4 years ago

On MySQL (or other DBs) that don't support RENAME INDEX, provide SQL query to look up index name from information_schema by field names and pass in to DROP INDEX.

RENAME INDEX is now supported on MySQL 5.7+ and MariaDB 10.5.2+.

comment:7 by Adam Johnson, 4 years ago

Cc: Adam Johnson added

comment:8 by Ravi Teja P, 4 years ago

Cc: Ravi Teja P added

comment:9 by David Wobrock, 23 months ago

Cc: David Wobrock added
Has patch: set
Needs documentation: unset
Needs tests: unset
Owner: changed from nobody to David Wobrock
Status: newassigned

Hi there,

I tried to tackle this change in this PR.

Feel free to review it!
And maybe we'll be able to deprecate index_together in a next major release, as we wanted to do here https://code.djangoproject.com/ticket/27236 a few years back :)

comment:10 by Mariusz Felisiak, 23 months ago

Patch needs improvement: set

comment:11 by David Wobrock, 23 months ago

Patch needs improvement: unset

Integrated the review comments and split the PR into 2 parts:

  1. Adding the RenameIndex operation https://github.com/django/django/pull/15677
  2. Using the RenameIndex in the autodetector https://github.com/django/django/pull/15651

comment:12 by Mariusz Felisiak, 23 months ago

Needs tests: set
Patch needs improvement: set

comment:13 by David Wobrock, 23 months ago

Needs tests: unset
Patch needs improvement: unset

Integrated review changes into the first PR implementing RenameIndex operation.

comment:14 by Mariusz Felisiak, 23 months ago

Triage Stage: AcceptedReady for checkin

comment:15 by Mariusz Felisiak <felisiak.mariusz@…>, 23 months ago

In eacd4977:

Refs #27064 -- Added RenameIndex migration operation.

comment:16 by Mariusz Felisiak, 23 months ago

Patch needs improvement: set
Triage Stage: Ready for checkinAccepted

comment:17 by David Wobrock, 23 months ago

Patch needs improvement: unset

Rebased PR, ready for some review again :)
Even if it (most probably) won't be included to the coming 4.1 release.

comment:18 by Mariusz Felisiak, 22 months ago

Patch needs improvement: set

It's blocked by #33710.

comment:19 by Mariusz Felisiak, 22 months ago

Patch needs improvement: unset

comment:20 by Mariusz Felisiak <felisiak.mariusz@…>, 22 months ago

In c6cec3c2:

Refs #27064 -- Made migrations generate RenameIndex operations when renaming Meta.indexes.

comment:21 by Mariusz Felisiak, 22 months ago

Triage Stage: AcceptedReady for checkin

comment:22 by Mariusz Felisiak <felisiak.mariusz@…>, 22 months ago

In a098cde9:

Refs #27064 -- Refactored out MigrationAutodetector.create_renamed_fields().

comment:23 by Mariusz Felisiak <felisiak.mariusz@…>, 22 months ago

In 97f124f:

Refs #27064 -- Made migrations generate RenameIndex operations when moving indexes from index_together to Meta.indexes.

comment:24 by Mariusz Felisiak, 22 months ago

Resolution: fixed
Status: assignedclosed
Triage Stage: Ready for checkinAccepted
Note: See TracTickets for help on using tickets.
Back to Top