summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2021-03-08 14:12:26 -0500
committerGitHub <noreply@github.com>2021-03-08 20:12:26 +0100
commit76c0b32f826469320c59709d31e2f2126dd7c505 (patch)
tree6b6c7cf2b043f3a682a154962c6f5252ef7d591d
parent465fdffda0507fa407bf78f5823cd83730b5ffb7 (diff)
downloaddjango-master.tar.gz
Refs #26167 -- Added @skipUnlessDBFeature('supports_expression_indexes') to a test.master
Failure observed on CockroachDB.
-rw-r--r--tests/indexes/tests.py1
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'])