#28023: Wrong method in SQL query log
-------------------------------------+-------------------------------------
               Reporter:  erkib      |          Owner:  nobody
                   Type:  Bug        |         Status:  new
              Component:  Database   |        Version:  1.11
  layer (models, ORM)                |
               Severity:  Normal     |       Keywords:
           Triage Stage:             |      Has patch:  0
  Unreviewed                         |
    Needs documentation:  0          |    Needs tests:  0
Patch needs improvement:  0          |  Easy pickings:  0
                  UI/UX:  0          |
-------------------------------------+-------------------------------------
 When SQL query logging is enabled and you run a following:


 {{{
 n = now() - timedelta(days=30)
 MyModel.objects.filter(my_date__lt=n).delete()
 }}}


 Query being logged is:

 2017-04-05 11:41:22,192  DEBUG    (0.019) QUERY = 'SELECT "MY_MODEL"."ID",
 "MY_MODEL"."MY_DATE" FROM "MY_MODEL" WHERE "MY_MODEL"."MY_DATE" < :arg0' -
 PARAMS = (Oracle_datetime(2017, 3, 6, 8, 41, 21, 913366),);
 args=(Oracle_datetime(2017, 3, 6, 8, 41, 21, 913366),)

 The same behaviour happens with 1.10.* version of Django as well.

--
Ticket URL: <https://code.djangoproject.com/ticket/28023>
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 django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/048.96aa15a046354f4baf7773ec395e1589%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to