From e12670016bbcebcc0d89c2ac4a0121951181fbae Mon Sep 17 00:00:00 2001 From: Scott <13770321+scott-8@users.noreply.github.com> Date: Sat, 16 Apr 2022 13:29:51 +0000 Subject: Fixed #33643 -- Fixed inspectdb crash on functional unique constraints on Oracle. --- tests/inspectdb/models.py | 14 ++++++++++++++ tests/inspectdb/tests.py | 7 +++++++ 2 files changed, 21 insertions(+) (limited to 'tests') diff --git a/tests/inspectdb/models.py b/tests/inspectdb/models.py index f2c23f0e0c..4227299b94 100644 --- a/tests/inspectdb/models.py +++ b/tests/inspectdb/models.py @@ -1,4 +1,5 @@ from django.db import connection, models +from django.db.models.functions import Lower class People(models.Model): @@ -117,3 +118,16 @@ class UniqueTogether(models.Model): ("from_field", "field1"), ("non_unique", "non_unique_0"), ] + + +class FuncUniqueConstraint(models.Model): + name = models.CharField(max_length=255) + rank = models.IntegerField() + + class Meta: + constraints = [ + models.UniqueConstraint( + Lower("name"), models.F("rank"), name="index_lower_name" + ) + ] + required_db_features = {"supports_expression_indexes"} diff --git a/tests/inspectdb/tests.py b/tests/inspectdb/tests.py index 53c7ce9013..39d5b6cbe5 100644 --- a/tests/inspectdb/tests.py +++ b/tests/inspectdb/tests.py @@ -330,6 +330,13 @@ class InspectDBTestCase(TestCase): output = out.getvalue() self.assertIn("class InspectdbSpecialTableName(models.Model):", output) + @skipUnlessDBFeature("supports_expression_indexes") + def test_table_with_func_unique_constraint(self): + out = StringIO() + call_command("inspectdb", "inspectdb_funcuniqueconstraint", stdout=out) + output = out.getvalue() + self.assertIn("class InspectdbFuncuniqueconstraint(models.Model):", output) + def test_managed_models(self): """ By default the command generates models with `Meta.managed = False`. -- cgit v1.2.1