summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql/features.py
diff options
context:
space:
mode:
authorChinmoy <chinmoy12c@gmail.com>2021-10-28 21:26:29 +0530
committerGitHub <noreply@github.com>2021-10-28 17:56:29 +0200
commit073b7b5915fdfb89a144e81173176ee13ff92a25 (patch)
tree5140e28ec67ab99aac9db8e3822bd5ade95d5fbf /django/db/backends/postgresql/features.py
parent8e3b1cf098018b4632de63c359ef6d761e92ec04 (diff)
downloaddjango-073b7b5915fdfb89a144e81173176ee13ff92a25.tar.gz
Fixed #33228 -- Changed value of BaseDatabaseFeatures.has_case_insensitive_like to False.
Diffstat (limited to 'django/db/backends/postgresql/features.py')
-rw-r--r--django/db/backends/postgresql/features.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/features.py b/django/db/backends/postgresql/features.py
index 2917fc4f9a..097d41a45b 100644
--- a/django/db/backends/postgresql/features.py
+++ b/django/db/backends/postgresql/features.py
@@ -28,7 +28,6 @@ class DatabaseFeatures(BaseDatabaseFeatures):
supports_combined_alters = True
nulls_order_largest = True
closed_cursor_error_class = InterfaceError
- has_case_insensitive_like = False
greatest_least_ignores_nulls = True
can_clone_databases = True
supports_temporal_subtraction = True