From 184a6eebb0ef56d5f1b1315a8e666830e37f3f81 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 30 Jul 2020 00:38:02 -0400 Subject: Refs #31829 -- Added DatabaseFeatures.json_key_contains_list_matching_requires_list. CockroachDB's behavior matches PostgreSQL. --- tests/model_fields/test_jsonfield.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/model_fields') diff --git a/tests/model_fields/test_jsonfield.py b/tests/model_fields/test_jsonfield.py index 11e82c5998..a7648711ac 100644 --- a/tests/model_fields/test_jsonfield.py +++ b/tests/model_fields/test_jsonfield.py @@ -714,8 +714,9 @@ class TestQuerying(TestCase): )), ), ] - # PostgreSQL requires a layer of nesting. - if connection.vendor != 'postgresql': + # For databases where {'f': 'g'} (without surrounding []) matches + # [{'f': 'g'}]. + if not connection.features.json_key_contains_list_matching_requires_list: tests.append(('value__d__contains', {'f': 'g'})) for lookup, value in tests: with self.subTest(lookup=lookup, value=value): -- cgit v1.3