فهرست منبع

Refs #26167 -- Added @skipUnlessDBFeature('supports_expression_indexes') to a test.

Failure observed on CockroachDB.
Tim Graham 4 سال پیش
والد
کامیت
76c0b32f82
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      tests/indexes/tests.py

+ 1 - 0
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'])