1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[4.1.x] Fixed #33905 -- Fixed CheckConstraint() validation on range fields.

Bug in 667105877e.

Backport of e0ae1363ec from main
This commit is contained in:
David Sanders
2022-08-09 16:16:23 +10:00
committed by Mariusz Felisiak
parent 6b0193146d
commit e215948f0d
3 changed files with 41 additions and 0 deletions

View File

@@ -32,3 +32,6 @@ Bugfixes
* Fixed a bug in Django 4.1 that caused a crash of model validation on
``UniqueConstraint()`` with field names in ``expressions`` (:ticket:`33902`).
* Fixed a bug in Django 4.1 that caused an incorrect validation of
``CheckConstraint()`` with range fields on PostgreSQL (:ticket:`33905`).