Changes between Initial Version and Version 1 of Ticket #30224


Ignore:
Timestamp:
Feb 28, 2019, 7:48:53 AM (5 years ago)
Author:
Martin Kuhn
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30224 – Description

    initial v1  
    22Datetimes are sometimes returned as objects or strings. It depends on the value. E.g. '2019-03-01 00:00:00.000000' is returned as a string, while`2018-12-12 22:02:53.134000` is provided as a datetime object in the sql/compiler.py.
    33
    4 **My Table**
    5 >
     4My Table
    65> CREATE TABLE `myTable` (
    76>   `id` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
     
    1716mysqlclient = "==1.4.2"
    1817
    19 This issue only occurred for me when I execute this query.
    20 
     18This issue only occurred for me when I execute this query.  I tried upgrading to 2.2 and the issue persisted. 
    2119
    2220{{{
     
    2624                & Q(minExpiryDate__lte=(now + expiryInterval + timedelta(days=1))))
    2725}}}
    28 
    29 
    30 I tried upgrading to 2.2 and the issue persisted. 
    3126
    3227
Back to Top