Changes between Initial Version and Version 1 of Ticket #30224
- Timestamp:
- Feb 28, 2019, 7:48:53 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30224 – Description
initial v1 2 2 Datetimes 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. 3 3 4 **My Table** 5 > 4 My Table 6 5 > CREATE TABLE `myTable` ( 7 6 > `id` char(32) COLLATE utf8mb4_unicode_ci NOT NULL, … … 17 16 mysqlclient = "==1.4.2" 18 17 19 This issue only occurred for me when I execute this query. 20 18 This issue only occurred for me when I execute this query. I tried upgrading to 2.2 and the issue persisted. 21 19 22 20 {{{ … … 26 24 & Q(minExpiryDate__lte=(now + expiryInterval + timedelta(days=1)))) 27 25 }}} 28 29 30 I tried upgrading to 2.2 and the issue persisted.31 26 32 27