diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-05-08 19:34:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 19:34:30 +0200 |
commit | 1586a09b7949bbb7b0d84cb74ce1cadc25cbb355 (patch) | |
tree | fdafc3d7dca2ac33acf08e5b311843809f960ac5 /django/db/backends/postgresql/features.py | |
parent | aaf8c76c567e8311f4a85cf74c82fc3d70cc6f12 (diff) | |
download | django-1586a09b7949bbb7b0d84cb74ce1cadc25cbb355.tar.gz |
Fixed #34544 -- Avoided DBMS_LOB.SUBSTR() wrapping with IS NULL condition on Oracle.
Regression in 09ffc5c1212d4ced58b708cbbf3dfbfb77b782ca.
Thanks Michael Smith for the report.
This also reverts commit 1e4da439556cdd69eb9f91e07f99cf77997e70d2.
Diffstat (limited to 'django/db/backends/postgresql/features.py')
-rw-r--r-- | django/db/backends/postgresql/features.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/django/db/backends/postgresql/features.py b/django/db/backends/postgresql/features.py index aa68465df9..732b30b0a4 100644 --- a/django/db/backends/postgresql/features.py +++ b/django/db/backends/postgresql/features.py @@ -82,6 +82,9 @@ class DatabaseFeatures(BaseDatabaseFeatures): "indexes.tests.SchemaIndexesNotPostgreSQLTests." "test_create_index_ignores_opclasses", }, + "PostgreSQL requires casting to text.": { + "lookup.tests.LookupTests.test_textfield_exact_null", + }, } @cached_property |