diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-04-12 15:34:26 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-04-13 11:56:24 +0200 |
| commit | fdfb3086fcba1b737ec09676ab4bb95105f3371e (patch) | |
| tree | 21b28259e197b328d7b43ca3d9d3022a2202b611 /tests | |
| parent | 1bdfde085763a0aae0fb07a904ca784e067b6703 (diff) | |
Fixed DatabaseFeatures.supports_index_column_ordering and related tests with MyISAM storage engine.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/indexes/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/indexes/tests.py b/tests/indexes/tests.py index 7bc305e596..b5cdef3545 100644 --- a/tests/indexes/tests.py +++ b/tests/indexes/tests.py @@ -93,6 +93,7 @@ class SchemaIndexesTests(TestCase): str(index.create_sql(Article, editor)), ) + @skipUnlessDBFeature("supports_index_column_ordering") def test_descending_columns_list_sql(self): index = Index(fields=["-headline"], name="whitespace_idx") editor = connection.schema_editor() |
