summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql
diff options
context:
space:
mode:
Diffstat (limited to 'django/db/backends/postgresql')
-rw-r--r--django/db/backends/postgresql/features.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/django/db/backends/postgresql/features.py b/django/db/backends/postgresql/features.py
index 83e6b5cf7f..419fad8686 100644
--- a/django/db/backends/postgresql/features.py
+++ b/django/db/backends/postgresql/features.py
@@ -123,6 +123,15 @@ class DatabaseFeatures(BaseDatabaseFeatures):
"test_group_by_nested_expression_with_params",
}
)
+ if not is_psycopg3:
+ expected_failures.update(
+ {
+ # operator does not exist: bigint[] = integer[]
+ "postgres_tests.test_array.TestQuerying.test_gt",
+ "postgres_tests.test_array.TestQuerying.test_in",
+ "postgres_tests.test_array.TestQuerying.test_lt",
+ }
+ )
return expected_failures
@cached_property