summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-05-08 19:34:30 +0200
committerGitHub <noreply@github.com>2023-05-08 19:34:30 +0200
commit1586a09b7949bbb7b0d84cb74ce1cadc25cbb355 (patch)
treefdafc3d7dca2ac33acf08e5b311843809f960ac5 /docs
parentaaf8c76c567e8311f4a85cf74c82fc3d70cc6f12 (diff)
downloaddjango-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 'docs')
-rw-r--r--docs/releases/4.2.2.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/4.2.2.txt b/docs/releases/4.2.2.txt
index 31f854b004..9d16e7ef6f 100644
--- a/docs/releases/4.2.2.txt
+++ b/docs/releases/4.2.2.txt
@@ -9,4 +9,6 @@ Django 4.2.2 fixes several bugs in 4.2.1.
Bugfixes
========
-* ...
+* Fixed a regression in Django 4.2 that caused an unnecessary
+ ``DBMS_LOB.SUBSTR()`` wrapping in the ``__isnull`` and ``__exact=None``
+ lookups for ``TextField()``/``BinaryField()`` on Oracle (:ticket:`34544`).