#32691: Django 3.2 boolean field SQL output is causing a performance regression 
in
MySQL.
-------------------------------------+-------------------------------------
     Reporter:  Todor Velichkov      |                    Owner:  nobody
         Type:                       |                   Status:  closed
  Cleanup/optimization               |
    Component:  Database layer       |                  Version:  3.2
  (models, ORM)                      |
     Severity:  Normal               |               Resolution:  invalid
     Keywords:  bool, booleanfield,  |             Triage Stage:
  orm, sql, mysql                    |  Unreviewed
    Has patch:  0                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  0                    |                    UI/UX:  0
-------------------------------------+-------------------------------------

Comment (by Todor Velichkov):

 Django is not storing values except `0` and `1` in `BOOL`, but MySQL
 `tinyint(1)` [https://www.mysqltutorial.org/mysql-boolean/ support it].

 So my question is, why is Django asking MySQL to search for values other
 than `0` and `1` in a `BOOL` column. Doesn't it make sense to only search
 for `0` and `1` when Django is only storing `0` and `1`?

 My second question is: Let's say Django is right about asking MySQL to
 search for values other than `0` and `1` in a `BOOL` column, then
 shouldn't it at least `myboofield__exact` act in a different way and ask
 MySQL to look for a specific value ? Django is literally leaving us w/o an
 option here and using a boolean field as index/ inside composite index is
 impossible.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/32691#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/072.99e4481d2fc1c74fe3e9b59a282a8ebf%40djangoproject.com.

Reply via email to