mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Refs #28876 -- Fixed incorrect class-based model index name generation for models with quoted db_table.
Thanks Simon Charette and Tim Graham for the review and Carlos E. C. Leite for the report.
This commit is contained in:
parent
f2ec896912
commit
f79d9a322c
4 changed files with 21 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
from django.conf import settings
|
||||
from django.db import connection, models
|
||||
from django.test import SimpleTestCase, skipUnlessDBFeature
|
||||
from django.test.utils import isolate_apps
|
||||
|
||||
from .models import Book, ChildModel1, ChildModel2
|
||||
|
||||
|
@ -70,6 +71,18 @@ class IndexesTests(SimpleTestCase):
|
|||
with self.assertRaisesMessage(AssertionError, msg):
|
||||
long_field_index.set_name_with_model(Book)
|
||||
|
||||
@isolate_apps('model_indexes')
|
||||
def test_name_auto_generation_with_quoted_db_table(self):
|
||||
class QuotedDbTable(models.Model):
|
||||
name = models.CharField(max_length=50)
|
||||
|
||||
class Meta:
|
||||
db_table = '"t_quoted"'
|
||||
|
||||
index = models.Index(fields=['name'])
|
||||
index.set_name_with_model(QuotedDbTable)
|
||||
self.assertEqual(index.name, 't_quoted_name_e4ed1b_idx')
|
||||
|
||||
def test_deconstruction(self):
|
||||
index = models.Index(fields=['title'], db_tablespace='idx_tbls')
|
||||
index.set_name_with_model(Book)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue