diff options
Diffstat (limited to 'tests/indexes/tests.py')
-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 ae68113c75..e114a90fba 100644 --- a/tests/indexes/tests.py +++ b/tests/indexes/tests.py @@ -555,6 +555,7 @@ class CoveringIndexTests(TransactionTestCase): cursor=cursor, table_name=Article._meta.db_table, )) + @skipUnlessDBFeature('supports_expression_indexes') def test_covering_func_index(self): index_name = 'covering_func_headline_idx' index = Index(Lower('headline'), name=index_name, include=['pub_date']) |