#33996: Inconsistent behavior of CheckConstraints validation on None values.
-------------------------------------+-------------------------------------
     Reporter:  James Beith          |                    Owner:  nobody
         Type:  Bug                  |                   Status:  new
    Component:  Database layer       |                  Version:  4.1
  (models, ORM)                      |
     Severity:  Release blocker      |               Resolution:
     Keywords:                       |             Triage Stage:  Accepted
    Has patch:  0                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  0                    |                    UI/UX:  0
-------------------------------------+-------------------------------------
Changes (by Simon Charette):

 * cc: Simon Charette (added)


Comment:

 Thanks for the report and PR folks, this was definitely overlooked during
 this feature's development.

 I went through the comments on the PR that introduced the feature and
 [https://github.com/django/django/pull/14625#pullrequestreview-911482741
 it seems we could likely work around the Oracle limitation] by using
 `SELECT CASE WHEN` by having the wrapping happen directly in `Q.check`
 instead of trying to be clever about relocating the
 `select_format`/`supports_boolean_expr_in_select_clause` as originally
 attempted. Alternatively

 As for non-nullable fields I don't think that it should be the
 responsibility of `Constraint.validate` to account for that, we already
 got validation logic in place to make sure that `null=False` don't allow
 `NULL` and having all constraints associated with a non-nullable field
 that are validated against a `None` value for this field raise the same
 precondition failed `ValidationError` seems confusing.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/33996#comment:5>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/010701831f8a9763-a05322df-a8de-42f1-8291-c476a913c11b-000000%40eu-central-1.amazonses.com.

Reply via email to