mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Split ignores_nulls_in_unique_constraints feature.
Oracle and SQL Server don't have exactly the same limitations. It's worth treating them differently.
This commit is contained in:
parent
c70a61eb49
commit
cff59bedc2
6 changed files with 12 additions and 6 deletions
|
@ -8,6 +8,7 @@ from .models import Tag, Celebrity, Fan, Staff, StaffTag
|
|||
|
||||
|
||||
@skipUnlessDBFeature('can_distinct_on_fields')
|
||||
@skipUnlessDBFeature('supports_nullable_unique_constraints')
|
||||
class DistinctOnTests(TestCase):
|
||||
def setUp(self):
|
||||
t1 = Tag.objects.create(name='t1')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue